This commit is contained in:
2008-10-03 11:22:46 +00:00
parent 4ea65e4bf6
commit 3635a5e403
9 changed files with 15 additions and 29 deletions

View File

@@ -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;
}