B2022-023 added logic to process <U-Other > tokens that have a space after “Other”
This commit is contained in:
@@ -430,13 +430,14 @@ namespace VEPROMS.CSLA.Library
|
||||
else if (unitdes == "TEXT")
|
||||
fromunitdes = DocVersionConfig.Unit_Text;
|
||||
// B2021-145: For applicability, the tree view & pdf file name are not getting resolved when using any of the <20>OTHER<45> tokens
|
||||
else if (unitdes == "OTHERTEXT")
|
||||
// B2022-023 also check for other followed by a space
|
||||
else if (unitdes == "OTHERTEXT" || unitdes == "OTHER TEXT")
|
||||
fromunitdes = DocVersionConfig.Other_Unit_Text;
|
||||
else if (unitdes == "OTHERNUMBER")
|
||||
else if (unitdes == "OTHERNUMBER" || unitdes == "OTHER NUMBER")
|
||||
fromunitdes = DocVersionConfig.Other_Unit_Number;
|
||||
else if (unitdes == "OTHERNAME")
|
||||
else if (unitdes == "OTHERNAME" || unitdes == "OTHER NAME")
|
||||
fromunitdes = DocVersionConfig.Other_Unit_Name;
|
||||
else if (unitdes == "OTHERID")
|
||||
else if (unitdes == "OTHERID" || unitdes == "OTHER ID")
|
||||
fromunitdes = DocVersionConfig.Other_Unit_ID;
|
||||
else
|
||||
fromunitdes = DocVersionConfig.Unit_ID;
|
||||
|
Reference in New Issue
Block a user