From daca5a6db4f492cbe9489b41282e619f02b42fae Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Fri, 1 Nov 2024 10:04:00 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E4=B8=9A=E5=8A=A1=E6=8C=89?= =?UTF-8?q?=E8=B4=A7=E4=BD=8D=E4=B8=8A=E6=9E=B6=E7=BB=93=E5=90=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/collect/IoCreateOrder.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/views/collect/IoCreateOrder.vue b/src/views/collect/IoCreateOrder.vue index 2c0ae492..6201c280 100644 --- a/src/views/collect/IoCreateOrder.vue +++ b/src/views/collect/IoCreateOrder.vue @@ -1755,6 +1755,11 @@ export default { return } if (!this.scanCode.includes("DMQ")) { + if (this.queueStatus == "0" && this.orderFormData.workPlaceQueueCode) { + this.$message.warning('当前工位无需按货位上架') + return; + } + }else { if (this.queueStatus == "0" && this.orderFormData.workPlaceQueueCode) { this.$message.warning('当前工位无需按货位上架') return; @@ -1763,6 +1768,7 @@ export default { return; } } + this.codeFormData.code = this.scanCode.trim() if (this.codeFormData.code.includes(';')) { const codeArray = this.codeFormData.code.split(';')