This commit is contained in:
高飞 2025-09-16 14:31:44 +08:00
parent a0cdfc5f6f
commit ba63672e6c
2 changed files with 2 additions and 2 deletions

View File

@ -648,7 +648,7 @@ namespace FineUIPro.Web.HJGL.DataIn
if (!string.IsNullOrEmpty(wmeCode)) //焊接方法
{
if (wmeCode.Contains(welderQualify.WeldingMethodId))
if (welderQualify.WeldingMethodId.Contains(wmeCode))
{
okNum++;
}

View File

@ -237,7 +237,7 @@ namespace WebAPI.Controllers
if (!string.IsNullOrEmpty(wmeCode)) //焊接方法
{
if (wmeCode.Contains(welderQualify.WeldingMethodId))
if (welderQualify.WeldingMethodId.Contains(wmeCode))
{
okNum++;
}