2022-12-23

This commit is contained in:
李鹏飞 2022-12-23 09:03:32 +08:00
parent aca0c3192b
commit b059a344d1
2 changed files with 12 additions and 2 deletions

Binary file not shown.

View File

@ -1029,7 +1029,12 @@ namespace FineUIPro.Web.HJGL.WeldingManage
pipeline.WeldJointCode = col19;
}
string col20 = pds[i].U.ToString();
string col20 = "";
if (pds[i].U!=null)
{
col20 = pds[i].U.ToString();
}
if (!string.IsNullOrEmpty(col20))
{
var material = getMaterial.FirstOrDefault(x => x.MaterialCode == col20);
@ -1049,7 +1054,12 @@ namespace FineUIPro.Web.HJGL.WeldingManage
result.Add("第" + (i + 1).ToString() + "行," + "材质1" + "," + "此项为必填项!" + "|");
}
string col21 = pds[i].V.ToString();
string col21 = "";
if (pds[i].V!=null)
{
col21 = pds[i].V.ToString();
}
if (!string.IsNullOrEmpty(col21))
{
var material = getMaterial.FirstOrDefault(x => x.MaterialCode == col21);