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; + } } }