F2018-022 added an AppendDotZero step type flag to append “.0” to a high level step number

This commit is contained in:
2018-03-21 17:12:43 +00:00
parent a99e5f1fef
commit b0269d4f56
3 changed files with 19 additions and 2 deletions

View File

@@ -1001,6 +1001,7 @@ namespace VEPROMS.CSLA.Library
// if this section has the DSS_AddDotZeroStdHLS, then we need to account for this when
// concatenating text onto the tabs.
bool hasDotZero = !item.IsProcedure && (item.MyDocStyle.StructureStyle.Style & E_DocStructStyle.DSS_AddDotZeroStdHLS) == E_DocStructStyle.DSS_AddDotZeroStdHLS;
hasDotZero |= item.MyHLS.FormatStepData.AppendDotZero; // F2018-022 Added step type flag to append a ".0" to the end of the high level step - put in for Westinghouse single column format (wst1)
if (item == null) return "";
string sret = "";
switch (item.MyContent.Type / 10000)