Compare commits

..

No commits in common. "28634ed93b02642cc559c12af0155456df8aba82" and "4c9957d0863381b074ad917e9f634697f55d0e0f" have entirely different histories.

3 changed files with 2 additions and 21 deletions

View File

@ -605,12 +605,9 @@ namespace FineUIPro.Web.HJGL.DataIn
{
result += "第" + (i + 2).ToString() + "行," + "该焊口的焊工资质不符合" + "\n";
}
else
else //D类口暂时不提示
{
if (floorWelderQualifys.Count() == 0 && cellWelderQualifys.Count() == 0) //D类口强制提交时应至少有焊工证否则也不可强制提交
{
result += "第" + (i + 2).ToString() + "行," + "该焊口的焊工资质不符合" + "\n";
}
}
}
}

View File

@ -465,13 +465,6 @@ namespace FineUIPro.Web.HJGL.WeldingManage
{
isAllD = false;
}
else
{
if (floorWelderQualifys.Count() == 0 && cellWelderQualifys.Count() == 0) //D类口强制提交时应至少有焊工证否则也不可强制提交
{
isAllD = false;
}
}
}
}
if (eventArg != string.Empty)

View File

@ -214,15 +214,6 @@ namespace WebAPI.Controllers
responeData.message = "该焊口的焊工资质不符合!";
return responeData;
}
else
{
if (floorWelderQualifys.Count() == 0 && cellWelderQualifys.Count() == 0) //D类口强制提交时应至少有焊工证否则也不可强制提交
{
responeData.code = 0;
responeData.message = "该焊口的焊工资质不符合!";
return responeData;
}
}
}
}
BLL.APIJointInfoService.SaveJointInfoForWeldReport(addItem);