|
|
|
@ -438,7 +438,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
queueStatus: null,
|
|
|
|
|
queueStatus: null, // 1:货位功能开启 0:货位功能关闭
|
|
|
|
|
busTypeList: [],
|
|
|
|
|
busQuery: {
|
|
|
|
|
busKey: '',
|
|
|
|
@ -1768,6 +1768,10 @@ export default {
|
|
|
|
|
if (this.queueStatus == "0" && this.orderFormData.workPlaceQueueCode) {
|
|
|
|
|
this.$message.warning('当前工位无需按货位上架')
|
|
|
|
|
return;
|
|
|
|
|
}else if (this.queueStatus == "1" && isBlank(this.orderFormData.workPlaceQueueCode)) {
|
|
|
|
|
this.scanCode = ''
|
|
|
|
|
this.$message.warning('当前工位需按货位上架')
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}else {
|
|
|
|
|
if (this.queueStatus == "0" && this.orderFormData.workPlaceQueueCode) {
|
|
|
|
@ -1955,10 +1959,14 @@ export default {
|
|
|
|
|
this.scanCode = ''
|
|
|
|
|
return this.$message.warning("上货未完成")
|
|
|
|
|
}
|
|
|
|
|
if (!isBlank(this.orderFormData.billNo)){
|
|
|
|
|
if (this.queueStatus == "0"){
|
|
|
|
|
this.scanCode = ''
|
|
|
|
|
return this.$message.warning("上货未完成")
|
|
|
|
|
return this.$message.warning('当前工位无需按货位上架')
|
|
|
|
|
}
|
|
|
|
|
// if (!isBlank(this.orderFormData.billNo)){
|
|
|
|
|
// this.scanCode = ''
|
|
|
|
|
// return this.$message.warning("请先扫描货位码")
|
|
|
|
|
// }
|
|
|
|
|
let query = {
|
|
|
|
|
code: this.scanCode
|
|
|
|
|
}
|
|
|
|
@ -2227,7 +2235,6 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
handleScanComplete(fullScanData) {
|
|
|
|
|
console.log('接收 recCodes event:', fullScanData.join(';'))
|
|
|
|
|
if (this.queueStatus == "1" && !this.orderFormData.workPlaceQueueCode) {
|
|
|
|
|
if (fullScanData != null && fullScanData[0].includes("DMQ")) {
|
|
|
|
|
this.getDMHotskeyValue(fullScanData[0])
|
|
|
|
|