diff --git a/PROMS/Formats/fmtall/WCN1all.xml b/PROMS/Formats/fmtall/WCN1all.xml index 3a4f91f2..c266e9a5 100644 Binary files a/PROMS/Formats/fmtall/WCN1all.xml and b/PROMS/Formats/fmtall/WCN1all.xml differ diff --git a/PROMS/VEPROMS User Interface/frmVEPROMS.cs b/PROMS/VEPROMS User Interface/frmVEPROMS.cs index 9338f061..61004513 100644 --- a/PROMS/VEPROMS User Interface/frmVEPROMS.cs +++ b/PROMS/VEPROMS User Interface/frmVEPROMS.cs @@ -2220,7 +2220,8 @@ namespace VEPROMS { if (args.MyEditItem.MyItemInfo.IsSection || args.MyEditItem.MyItemInfo.IsProcedure) { - infotabRO.Visible = infotabTransition.Visible = false; + infotabRO.Visible = false; + infotabTransition.Visible = args.MyEditItem.MyItemInfo.ActiveFormat.PlantFormat.FormatData.TransData.AllowTransitionFromSection; infotabTags.Visible = false; displayTags.Visible = false; } diff --git a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs index d8da3425..3b34ae94 100644 --- a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs +++ b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs @@ -5536,6 +5536,14 @@ namespace VEPROMS.CSLA.Library return LazyLoad(ref _DoSectionTransitions, "@DoSectionTransitions"); } } + private LazyLoad _AllowTransitionFromSection; + public bool AllowTransitionFromSection + { + get + { + return LazyLoad(ref _AllowTransitionFromSection, "@AllowTransitionFromSection"); + } + } private LazyLoad _HardSpTranProcNumb; public bool HardSpTranProcNumb {