This commit is contained in:
高飞 2025-09-11 11:33:03 +08:00
parent 04a0762978
commit 17ee6e6b23
1 changed files with 9 additions and 1 deletions

View File

@ -677,11 +677,19 @@ namespace FineUIPro.Web.WeldMat.UsingPlan
{ {
if (q.QualifiedProjectCode.Split('-').Length == 3) //该种合格项目只能领盘状焊丝 if (q.QualifiedProjectCode.Split('-').Length == 3) //该种合格项目只能领盘状焊丝
{ {
if (weldTypeId == "23900d2f-f0e6-4d76-a44d-eb47eede3914") //盘状焊丝 if (q.QualifiedProjectCode.Contains("SAW")) //SAW可以领焊剂
{ {
isPass = true; isPass = true;
break; break;
} }
else
{
if (weldTypeId == "23900d2f-f0e6-4d76-a44d-eb47eede3914") //盘状焊丝
{
isPass = true;
break;
}
}
} }
else else
{ {