B2022-018 Fixes issue where the RO return value was truncated after the unit number for RO return values in the Equipment - Unit Specific RO database
This commit is contained in:
parent
1e217c71ec
commit
31dd017354
@ -347,6 +347,8 @@ namespace VEPROMS.CSLA.Library
|
||||
sb.Append(aplString.Substring(offsetIdx, nextIDX - offsetIdx));
|
||||
lastIndex += m.Index + m.Length;
|
||||
}
|
||||
if (lastIndex < roval.Length)
|
||||
sb.Append(roval.Substring(lastIndex)); // B2022-018 append any remaining text
|
||||
return sb.ToString();
|
||||
//int startCVIdx = roval.IndexOf("<APL DefaultVal=");
|
||||
//// Get default value from DefaultVal= to UnitIdx= or /APL>;
|
||||
|
Loading…
x
Reference in New Issue
Block a user