From 5029ecd540a5fa38dd2f359c6c7a91444fd33d08 Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Fri, 1 Nov 2024 10:16:13 +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 | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/src/views/collect/IoCreateOrder.vue b/src/views/collect/IoCreateOrder.vue index 6201c280..49fcc276 100644 --- a/src/views/collect/IoCreateOrder.vue +++ b/src/views/collect/IoCreateOrder.vue @@ -1754,18 +1754,21 @@ export default { if (this.getDMHotskeyValue(this.scanCode)) { 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; - } else if (this.queueStatus == "1" && !this.orderFormData.workPlaceQueueCode) { - this.$message.warning('当前工位需按货位上架') - return; + + if (this.splitType =='out'){ + 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; + } else if (this.queueStatus == "1" && !this.orderFormData.workPlaceQueueCode) { + this.$message.warning('当前工位需按货位上架') + return; + } } }