Merge pull request 'B2025-058 and B2025-061 Removed the Continuous Action Step indicator from the sub-step number when being referenced in a transition.' (#648) from B2025-058_061_Vogtle_TransitionFix into Development

Looks Good. Ready for QA!
This commit is contained in:
2025-11-04 16:05:13 -05:00

View File

@@ -1145,8 +1145,12 @@ namespace VEPROMS.CSLA.Library
{ {
//string thisTab = StepInfo.Get(pitem.ItemID).MyTab.CleanText; //string thisTab = StepInfo.Get(pitem.ItemID).MyTab.CleanText;
string thisTab = pitem.MyTab.CleanText;// StepInfo.Get(pitem.ItemID).MyTab.CleanText; string thisTab = pitem.MyTab.CleanText;// StepInfo.Get(pitem.ItemID).MyTab.CleanText;
//B2025-058 remove continuous action indicator
string medittag = pitem.FormatStepData.TabData.MacroEditTag;
if (medittag != null && thisTab.StartsWith(medittag))
thisTab = thisTab.Substring(medittag.Length);
// remove delimiters of '.' and ')' in tab. // remove delimiters of '.' and ')' in tab.
if (!hasDelim) if (!hasDelim)
{ {
// get list of delimiters to remove from the format: // get list of delimiters to remove from the format:
foreach (string rmvDelim in DelimList) thisTab = thisTab.Replace(rmvDelim, ""); foreach (string rmvDelim in DelimList) thisTab = thisTab.Replace(rmvDelim, "");