From 39d5f9abeb107dffe3afc88ad871a86d2d422b0e Mon Sep 17 00:00:00 2001 From: yewj Date: Fri, 17 Jan 2025 09:03:24 +0800 Subject: [PATCH] DMOENTER --- src/views/collect/DealOrder.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/collect/DealOrder.vue b/src/views/collect/DealOrder.vue index 0b6059c1..40d035ed 100644 --- a/src/views/collect/DealOrder.vue +++ b/src/views/collect/DealOrder.vue @@ -794,7 +794,7 @@ export default { enterKey() { if (this.scanCode.includes("DMOENTER")) { - if (this.orderData.billNo == null) { + if (this.formData.billNo == null) { this.$message.error('请先选择单据') }else { this.confirmFinishOrder() @@ -802,7 +802,7 @@ export default { this.scanCode = '' return }else if (this.scanCode.includes("DMOCANCEL")) { - if (this.orderData.billNo == null) { + if (this.formData.billNo == null) { this.$message.error('请先选择单据') }else { this.cancelOrder() @@ -810,7 +810,7 @@ export default { this.scanCode = '' return }else if (this.scanCode.includes("DMODEL")) { - if (this.orderData.billNo == null) { + if (this.formData.billNo == null) { this.$message.error('请先选择单据') }else { this.deleteCode()