From 463053ae0fbb3133507254ba61c5f816091e100f Mon Sep 17 00:00:00 2001 From: "zangch@mesnac.com" Date: Thu, 15 Jan 2026 17:07:24 +0800 Subject: [PATCH] =?UTF-8?q?fix(wms):=20=E4=BF=AE=E6=AD=A3=E8=B4=A8?= =?UTF-8?q?=E6=A3=80=E9=A1=B5=E9=9D=A2=E7=89=A9=E6=96=99=E6=95=B0=E9=87=8F?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E6=98=A0=E5=B0=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将apportionQty字段更改为materialQty以正确映射质检数量 - 添加注释说明质检数量(每包数量)的业务含义 - 确保后端验证所需的质检要求和质检状态字段正确传递 --- src/views/wms/instockPrint/qc.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/wms/instockPrint/qc.vue b/src/views/wms/instockPrint/qc.vue index 1c03118..fc3e2a3 100644 --- a/src/views/wms/instockPrint/qc.vue +++ b/src/views/wms/instockPrint/qc.vue @@ -513,7 +513,7 @@ const handleCreateInspection = async () => { batchCode: item.batchCode, materialCode: item.materialCode, materialName: item.materialName, - apportionQty: item.apportionQty, + materialQty: item.materialQty, // 质检数量(每包数量) inspectionRequest: item.inspectionRequest, // 质检要求(后端验证需要) inspectionType: item.inspectionType, // 质检状态(后端验证需要) inspectionTypeParam: routeInspectionTypeParam // 传递路由参数中的检验类型