fixed various issues during initial delivery prep

Treat ‘#’ as symbol in tabs, so that ‘#’ isn’t included in resolved transition text & top/bottom continue messages (for AEP)
Created a format variable ‘RNOWidthAltAll’ to be used to adjust all RNO parts, not just those off HLS. (for AEP)
This commit is contained in:
Kathy Ruffing 2015-04-10 13:53:34 +00:00
parent f00403b876
commit 32acf4ac5a
3 changed files with 9 additions and 1 deletions

Binary file not shown.

View File

@ -4433,7 +4433,7 @@ namespace VEPROMS.CSLA.Library
get
{
// this trims off any symbols at the start of the tab
return _ReplaceSymbols.Replace(CleanText, "");
return _ReplaceSymbols.Replace(CleanText, "").Replace("#","");
}
}

View File

@ -2842,6 +2842,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _RNOWidthAlt, "@RNOWidthAlt");
}
}
private LazyLoad<int?> _RNOWidthAltAll;
public int? RNOWidthAltAll
{
get
{
return LazyLoad(ref _RNOWidthAltAll, "@RNOWidthAltAll");
}
}
private LazyLoad<string> _RNOWidthAdj;
public string RNOWidthAdj
{