Fixed issue of Import Procedure has same RO Path but a different ROdbid number
Fixed issue where the top box of the dialog was not displaying the “&” character used in the RO Path
This commit is contained in:
@@ -220,6 +220,15 @@ namespace VEPROMS
|
||||
MyRODb = RODb.GetJustRoDb(rodbid);
|
||||
oldRODbID = newRODbID = rodbid;
|
||||
break;
|
||||
}
|
||||
// B2016-175 have the correct (matching) RO Path but the rodbid is different (procedure came from a different SQL database)
|
||||
// We can use the RO Path but we need to change the rodbid in the RO links of the procedure we are importing
|
||||
else if (dbi.FolderPath == rofolderpath && dbi.RODbID != rodbid)
|
||||
{
|
||||
MyRODb = RODb.GetByFolderPath(rofolderpath);
|
||||
newRODbID = MyRODb.RODbID;
|
||||
oldRODbID = rodbid;
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user