B2023-014: Braidwood – HLS with transitions to procedures with applicability do not have unit numbers resolved
This commit is contained in:
parent
b077332989
commit
408e60665a
@ -1868,7 +1868,13 @@ namespace VEPROMS.CSLA.Library
|
||||
string tmptxt = null;
|
||||
if (vte.Type != E_TextElementType.ReferencedObject)
|
||||
{
|
||||
tmptxt = FixTransition(vte.Link, vte.Text);
|
||||
// B2023-014: Braidwood - don't fixtransition text if uppercase flag. FixTransition does not resolve
|
||||
// unit numbers. When data is loaded for print, the transition text is refreshed - so this call is
|
||||
// not necessary. But only made change for Braidwood so as not to impact other plants
|
||||
if (_MyItemInfo.FormatStepData.UpperCase)
|
||||
tmptxt = vte.Text;
|
||||
else
|
||||
tmptxt = FixTransition(vte.Link, vte.Text);
|
||||
vte.Text = tmptxt;
|
||||
}
|
||||
//else
|
||||
|
Loading…
x
Reference in New Issue
Block a user