This commit is contained in:
2008-04-10 13:48:03 +00:00
parent 73830ed0e1
commit 8489c847b3
2 changed files with 7 additions and 139 deletions

View File

@@ -62,14 +62,9 @@ namespace DataLoader
DataRow dr = dt.Rows[instance];
string ROID = dr["ROID"].ToString();
RoUsage ro = RoUsage.MakeRoUsage(content, ROID, null, DateTime.Now, "Migration");
rotxt.Append("\x15\\v RO\\v0 ");
string val = rofst.GetRoValue(ROID.Substring(0, 12).ToUpper());
rotxt.Append(val);
rotxt.Append("\\v #");
rotxt.Append(ro.ROUsageID.ToString());
rotxt.Append(" ");
rotxt.Append(ROID);
rotxt.Append("\\v0 ");
string results = string.Format(@"{0}{1}\v #Link:ReferencedObject:{2} {3}\v0",
'\x15', rofst.GetRoValue(ROID.Substring(0, 12).ToUpper()), ro.ROUsageID, ROID);
rotxt.Append(results);
instance++;
}
else