This commit is contained in:
@@ -186,9 +186,9 @@ namespace DataLoader
|
||||
{
|
||||
if (_DocVersions == null)
|
||||
_DocVersions = DocVersionInfoList.Get();
|
||||
DocVersionInfo dvi = ExactMatch(path); //TODO: Look for an exact match of the paths.
|
||||
if (dvi == null) dvi = PartialMatch(path);//TODO: If none is found, look for a partial match.
|
||||
if (dvi != null) return FindItem(dvi, procnum);//TODO: Look for the Procedure number in the procedure list and return item that matches
|
||||
DocVersionInfo dvi = ExactMatch(path);
|
||||
if (dvi == null) dvi = PartialMatch(path);
|
||||
if (dvi != null) return FindItem(dvi, procnum);
|
||||
return null;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user