From c23da62b1483b74c69ed99069c1157787045c1c2 Mon Sep 17 00:00:00 2001 From: lijuncheng Date: Tue, 3 Dec 2024 16:50:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E6=96=99=E4=BB=BB=E5=8A=A1=E7=A7=BB?= =?UTF-8?q?=E9=99=A4=E5=8C=85=E8=A3=85=E6=A0=A1=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/issue/coms/comScanIssuePack.vue | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/pages/issue/coms/comScanIssuePack.vue b/src/pages/issue/coms/comScanIssuePack.vue index 362fa484..d01aa9aa 100644 --- a/src/pages/issue/coms/comScanIssuePack.vue +++ b/src/pages/issue/coms/comScanIssuePack.vue @@ -416,16 +416,18 @@ this.showErrorMessage('扫描物料代码不属于该任务'); return } - if (result.package.packUnit !== item.packUnit) { - this.$refs.comMessage.showQuestionMessage( - `扫描物料包装【${result.package.packUnit}】与任务推荐包装规格【${item.packUnit}】不一致.是否要继续发料?`, res => { - if (res) { - this.getToLocationBalance(result) - } - }); - } else { - this.getToLocationBalance(result) - } + this.getToLocationBalance(result) + //校验包装规格 + // if (result.package.packUnit !== item.packUnit) { + // this.$refs.comMessage.showQuestionMessage( + // `扫描物料包装【${result.package.packUnit}】与任务推荐包装规格【${item.packUnit}】不一致.是否要继续发料?`, res => { + // if (res) { + // this.getToLocationBalance(result) + // } + // }); + // } else { + // this.getToLocationBalance(result) + // } } },