Compare commits

...

5 Commits

Author SHA1 Message Date
Chris Glavan
d9092f4f18 Fixed merge conflict 2023-07-19 14:34:15 -04:00
Chris Glavan
71a4350259 Fixing merge conflict 2023-07-19 14:27:46 -04:00
Chris Glavan
16876375df Merge pull request 'F2023-083' (#24) from F2023-083 into Development
Merging into Development (no code review needed)
2023-07-19 13:01:32 -04:00
Chris Glavan
deeb7ff3fa Merge pull request 'F2023-098: Vogtle 3/4 Alarm - add proc applicability. Code change also' (#23) from F2023-098 into Development
Merging changes into Development after successful code review
2023-07-19 12:51:05 -04:00
Kathy Ruffing
411445901e F2023-098: Vogtle 3/4 Alarm - add proc applicability. Code change also 2023-07-19 10:24:27 -04:00
2 changed files with 4 additions and 2 deletions

Binary file not shown.

View File

@@ -528,9 +528,11 @@ namespace VEPROMS.CSLA.Library
string mstr = (MyConfig as DocVersionConfig).Unit_ProcedureNumber;
string[] units = mstr.Split(",".ToCharArray());
string[] fromdata = fromunitdes.Split(",".ToCharArray());
// SelectedSlave is > 0 if a unit has been selected, for example from print or approve. It represents that index into the list of units.
if (DocVersionConfig.SelectedSlave > 0)
// F2023-098: depending on where this is called from & how data is set, the DocVersionConfig.SelectedSlave may be 0, but the
// procInfoSelectedChildToPrint will always have the correct value, i.e. 0 if not printing & the selected slave from the print selection.
// Check for procInfoSelectedChildToPrint > 0 also:
if (DocVersionConfig.SelectedSlave > 0 || procInfoSelectedChildToPrint > 0)
{
prefix = units[0].Replace("#", "");
if (str.ToUpper().IndexOf(@"<U-") > -1) return prefix + Regex.Replace(str, @"\<[uU]-[a-zA-Z]+\>", fromunitdes);