This commit is contained in:
Kathy Ruffing 2011-04-06 14:21:34 +00:00
parent 4e94953f18
commit 0acf7cb14a

View File

@ -136,7 +136,9 @@ namespace DataLoader
else else
{ {
nm = sLine.Substring(0, indx); nm = sLine.Substring(0, indx);
vl = sLine.Substring(indx + 1, sLine.Length - indx - 1); string tmpPsi = sLine.Substring(indx + 1, sLine.Length - indx - 1);
if (tmpPsi.Length > 0) tmpPsi=TextConvert.ConvertText(tmpPsi);
vl = tmpPsi;
} }
ci.AddItem("PSI", nm, vl == null ? null : vl); ci.AddItem("PSI", nm, vl == null ? null : vl);
} }