From 7386ae7c3912e3ca48b0f23cbb01ce62306734f5 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 11 Aug 2022 18:10:41 +0000 Subject: [PATCH] =?UTF-8?q?F2022-024=20=E2=80=93=20Time=20Critical=20Actio?= =?UTF-8?q?n=20info=20in=20step=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../VEPROMS.CSLA.Library/Config/StepConfig.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/PROMS/VEPROMS.CSLA.Library/Config/StepConfig.cs b/PROMS/VEPROMS.CSLA.Library/Config/StepConfig.cs index 63ec5619..07b2e878 100644 --- a/PROMS/VEPROMS.CSLA.Library/Config/StepConfig.cs +++ b/PROMS/VEPROMS.CSLA.Library/Config/StepConfig.cs @@ -178,6 +178,24 @@ namespace VEPROMS.CSLA.Library OnPropertyChanged("Step_CAS"); } } + // F2022-024 Time Critical Action Step + public string Step_TCAS // Time Critical Action Summary + { + get + { + string s = _Xp["Step", "TimeCriticalActionSum"]; + //If there is no value in the config, then return null. This will tell us to check the step type and format flag (ExcludeFromTimeCriticalActSum). + if (s == string.Empty) return null; + return s; + } + set + { + string s = _Xp["Step", "TimeCriticalActionSum"]; + if (value == s) return; + _Xp["Step", "TimeCriticalActionSum"] = value; + OnPropertyChanged("Step_TCAS"); + } + } //// Alternate text to use on the Continuous Action Summary //public string Step_AlternateContActSumText //{