From b96b577892949a82bf44998327dd4b359786293e Mon Sep 17 00:00:00 2001 From: Kathy Date: Mon, 7 Jan 2019 16:34:52 +0000 Subject: [PATCH] =?UTF-8?q?B2019-001:=20=E2=80=98Resolved=20Transition=20T?= =?UTF-8?q?ext=E2=80=99=20for=20transitions=20going=20to=20a=20section=20?= =?UTF-8?q?=E2=80=93=20print=20only?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PROMS/VEPROMS.CSLA.Library/Extension/TransitionExt.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/TransitionExt.cs b/PROMS/VEPROMS.CSLA.Library/Extension/TransitionExt.cs index 202815d2..d20a722b 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/TransitionExt.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/TransitionExt.cs @@ -1001,7 +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.IsStep) 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)