fix:业务按货位上架结合

20240912_adapter
chenhc 5 months ago
parent 344450808d
commit daca5a6db4

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

Loading…
Cancel
Save