From 344450808def2c89629d389e36ae710493e46422 Mon Sep 17 00:00:00 2001 From: yewj Date: Thu, 31 Oct 2024 20:47:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E8=B4=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/collect/IoCreateOrder.vue | 41 ++++++++++++++++++++++------- 1 file changed, 31 insertions(+), 10 deletions(-) diff --git a/src/views/collect/IoCreateOrder.vue b/src/views/collect/IoCreateOrder.vue index 565cdaaa..2c0ae492 100644 --- a/src/views/collect/IoCreateOrder.vue +++ b/src/views/collect/IoCreateOrder.vue @@ -438,7 +438,7 @@ export default { }, data() { return { - queueStatus:null, + queueStatus: null, busTypeList: [], busQuery: { busKey: '', @@ -1075,7 +1075,6 @@ export default { } getUserBindWork(query).then((res) => { this.allWorkPlaces = res.data.list || []; - { let item = this.allWorkPlaces.find(item => item.workplaceId == this.orderFormData.workPlaceCode) this.queueStatus = item.queueStatus @@ -1755,19 +1754,16 @@ export default { if (this.getDMHotskeyValue(this.scanCode)) { return } - - if (!this.scanCode.includes("DMQ")){ - if (this.queueStatus == "0" && this.orderFormData.workPlaceQueueCode){ + if (!this.scanCode.includes("DMQ")) { + if (this.queueStatus == "0" && this.orderFormData.workPlaceQueueCode) { this.$message.warning('当前工位无需按货位上架') return; - }else if (this.queueStatus == "1" && !this.orderFormData.workPlaceQueueCode){ + } else if (this.queueStatus == "1" && !this.orderFormData.workPlaceQueueCode) { this.$message.warning('当前工位需按货位上架') return; } } - this.codeFormData.code = this.scanCode.trim() - if (this.codeFormData.code.includes(';')) { const codeArray = this.codeFormData.code.split(';') let params = { @@ -1788,7 +1784,6 @@ export default { codeList: codeArray } //剔除码 - this.removeCodesTemp(query) } else { enterCodeWeb(tQuery).then((response) => { @@ -1939,9 +1934,13 @@ export default { console.log('字符串不是有效的 JSON 格式') } } else if (str.includes("DMQ")) { + let query = { code: this.scanCode } + if (str != null) { + query.code = str + } getByCode(query).then((response) => { this.loading = false; if (response.code == 20000) { @@ -1954,7 +1953,6 @@ export default { }) return true } - return false }, printCodeResult(data, isSuccess) { @@ -2202,6 +2200,29 @@ 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]) + return; + } + } else if (this.queueStatus == "1" && this.orderFormData.workPlaceQueueCode != null) { + if (fullScanData != null && fullScanData[0].includes("DMQ")) { + this.$message.warning('当前上货已绑定货位,请勿重复绑定!'); + return; + } + } + // if (!fullScanData.includes("DMQ")) { + // if (this.queueStatus == "0" && this.orderFormData.workPlaceQueueCode) { + // this.$message.warning('当前工位无需按货位上架') + // return; + // } else if (this.queueStatus == "1" && !this.orderFormData.workPlaceQueueCode) { + // this.$message.warning('当前工位需按货位上架') + // return; + // } + // } else if (this.queueStatus == "1") { + // this.getDMHotskeyValue(fullScanData[0]); + // } + if (this.scanStatus == 1) { let query = { orderId: this.orderFormData.billNo,