Improved concatenate substep with parent tab in RNO (based on format flag conditions).

This commit is contained in:
Kathy Ruffing 2013-08-20 11:16:03 +00:00
parent 702980a0e4
commit 65c8eecd0d

View File

@ -2551,7 +2551,7 @@ namespace VEPROMS.CSLA.Library
myparent = myparent.ActiveParent as ItemInfo;
}
}
else if (myparent.IsSection || myparent.IsHigh || myparent.IsSequential)
else if (myparent.IsSection || myparent.IsHigh || myparent.IsSequential || (myparent.IsRNOPart && myparent.FormatStepData.NumberHighLevel && tbformat.ToUpper().Contains("WPAR")))
{
parentTab = myparent.MyTab.CleanText.Trim();
tbformat = parentTab + (parentTab.EndsWith(".") ? "" : ".") + tbformat.TrimStart();