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(';')