This commit is contained in:
Kathy Ruffing 2008-08-12 11:16:46 +00:00
parent 2963bb5f00
commit 3aedee5967

View File

@ -126,13 +126,13 @@ namespace DataLoader
format = part1 + part2;
// get the parent format's id (for example, AEP for AEP00).
parent = Format.GetExistingByParentID_Name(baseparent.FormatID, part1);
parent = Format.GetByParentID_Name(baseparent.FormatID, part1);
}
else
parent = baseparent;
// see if the format has been added, if not go get it.
rec = Format.GetExistingByParentID_Name(parent.FormatID, format);
rec = Format.GetByParentID_Name(parent.FormatID, format);
}
catch (Exception ex)
{