This commit is contained in:
@@ -310,34 +310,6 @@ namespace VEPROMS.CSLA.Library
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
nextIDX = aplString.IndexOf(",UnitIdx", offsetIdx);
|
||||
if (nextIDX == -1) nextIDX = aplString.IndexOf(" /APL>");
|
||||
sb.Append(aplString.Substring(offsetIdx, nextIDX - offsetIdx));
|
||||
|
||||
lastIndex = m.Index + m.Length;
|
||||
}
|
||||
|
||||
// B2022-018 append any remaining text
|
||||
if (lastIndex < roval.Length)
|
||||
{
|
||||
sb.Append(roval.Substring(lastIndex));
|
||||
}
|
||||
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
public List<string> GetROReturnValue(string roval)
|
||||
{
|
||||
_lstRoValues = new List<string>();
|
||||
_multiRoValues = new List<string>();
|
||||
_dicRoVars = new Dictionary<string, string>();
|
||||
|
||||
string tmp = ProcessRO(_myDocVersionInfo == null ? roval : _myDocVersionInfo.ProcessDocVersionSpecificInfo(roval), false);
|
||||
|
||||
if (!string.IsNullOrEmpty(tmp) && _lstRoValues.Count == 0) // was not a multiple return value
|
||||
{
|
||||
_lstRoValues.Add(tmp);
|
||||
}
|
||||
|
||||
return rc;
|
||||
@@ -568,7 +540,7 @@ namespace VEPROMS.CSLA.Library
|
||||
rc = GetRoChild12(parentROID);
|
||||
if (rc.ID > 0) sb.Insert(0, rc.title + " - ");
|
||||
|
||||
} while (rc.ID > 0);?
|
||||
} while (rc.ID > 0);
|
||||
|
||||
return sb.ToString();
|
||||
}
|
||||
|
Reference in New Issue
Block a user