Compare commits
No commits in common. "ce8497e61f69d57a92cf3d4ba367a98c6ea82716" and "6e37911462d75b868370e45937117fac87fc2598" have entirely different histories.
ce8497e61f
...
6e37911462
Binary file not shown.
Binary file not shown.
@ -4452,10 +4452,9 @@ namespace VEPROMS.CSLA.Library
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// F2024-037 reset the seq sub-step numbering if the parent is an un-numbered high level step
|
// F2024-037 reset the seq sub-step numbering if the parent is an un-numbered high level step
|
||||||
// F2024-049 changed to specify the level via the format file (Generic EOP and Vogtle 3&4)
|
else if (sd.StepSectionLayoutData.ResetSeqNumberingAfterUnnumberedHLS && IsSequential && MyParent != null && MyParent.IsHigh && MyParent.MyTab.Text.Length == 0)
|
||||||
else if (sd.StepSectionLayoutData.ResetSeqNumberingAfterUnnumberedHLS != null && IsSequential && MyParent != null && MyParent.IsHigh && MyParent.MyTab.Text.Length == 0)
|
|
||||||
{
|
{
|
||||||
localPrintLevel = (int)sd.StepSectionLayoutData.ResetSeqNumberingAfterUnnumberedHLS;
|
localPrintLevel--; // since parent is a high level step we only need to go back one level
|
||||||
itmp = (localPrintLevel + PrintBias + OffsetTab) % seqtabs.MaxIndex;
|
itmp = (localPrintLevel + PrintBias + OffsetTab) % seqtabs.MaxIndex;
|
||||||
}
|
}
|
||||||
if (!tbformat.Contains(@"{!C"))
|
if (!tbformat.Contains(@"{!C"))
|
||||||
|
@ -4508,9 +4508,8 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return LazyLoad(ref _AllowNoteCautionAdd, "@AllowNoteCautionAdd");
|
return LazyLoad(ref _AllowNoteCautionAdd, "@AllowNoteCautionAdd");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// F2024-049 changed to specify the sub-step level via the format file (Generic EOP and Vogtle 3&4)
|
private LazyLoad<bool> _ResetSeqNumberingAfterUnnumberedHLS;
|
||||||
private LazyLoad<int?> _ResetSeqNumberingAfterUnnumberedHLS;
|
public bool ResetSeqNumberingAfterUnnumberedHLS
|
||||||
public int? ResetSeqNumberingAfterUnnumberedHLS
|
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user