F2022-024 – Time Critical Action info in step config
This commit is contained in:
parent
80581d7e4d
commit
7386ae7c39
@ -178,6 +178,24 @@ namespace VEPROMS.CSLA.Library
|
|||||||
OnPropertyChanged("Step_CAS");
|
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
|
//// Alternate text to use on the Continuous Action Summary
|
||||||
//public string Step_AlternateContActSumText
|
//public string Step_AlternateContActSumText
|
||||||
//{
|
//{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user