feat: 便捷操作确认、取消、删除

20240912_adapter
chenhc 3 months ago
parent e60988f8b5
commit 465842381d

@ -792,25 +792,38 @@ export default {
}, },
enterKey() { enterKey() {
if (this.formData.billNo == null && this.formDataVisible.scanType != 1) {
this.enterBillNoKey()
return;
}
if (this.scanCode.includes("DMOENTER")) { if (this.scanCode.includes("DMOENTER")) {
this.confirmFinishOrder() if (this.orderData.billNo == null) {
this.$message.error('请先选择单据')
}else {
this.confirmFinishOrder()
}
this.scanCode = '' this.scanCode = ''
return return
}else if (this.scanCode.includes("DMOCANCEL")) { }else if (this.scanCode.includes("DMOCANCEL")) {
this.cancelOrder() if (this.orderData.billNo == null) {
this.$message.error('请先选择单据')
}else {
this.cancelOrder()
}
this.scanCode = '' this.scanCode = ''
return return
}else if (this.scanCode.includes("DMODEL")) { }else if (this.scanCode.includes("DMODEL")) {
this.deleteCode() if (this.orderData.billNo == null) {
this.$message.error('请先选择单据')
}else {
this.deleteCode()
}
this.scanCode = '' this.scanCode = ''
return return
} }
if (this.formData.billNo == null && this.formDataVisible.scanType != 1) {
this.enterBillNoKey()
return;
}
this.checkSuccess = true; this.checkSuccess = true;
this.filterQuery.code = this.scanCode.trim(); this.filterQuery.code = this.scanCode.trim();

@ -300,18 +300,21 @@ export default {
this.errResult = '' this.errResult = ''
// this.errVisible = false // this.errVisible = false
// this.successVisible = true // this.successVisible = true
//
if (this.orderData.billNo == null) {
this.enterBillNoKey()
return
}
if (this.scanCode.includes("DMOENTER")) { if (this.scanCode.includes("DMOENTER")) {
this.confirmCheckOrder() if (this.orderData.billNo == null) {
this.$message.error('请先选择单据')
}else {
this.confirmCheckOrder()
}
this.scanCode = '' this.scanCode = ''
return return
}else if (this.scanCode.includes("DMOCANCEL")) { }else if (this.scanCode.includes("DMOCANCEL")) {
this.cancelOrder() if (this.orderData.billNo == null) {
this.$message.error('请先选择单据')
}else {
this.cancelOrder()
}
this.scanCode = '' this.scanCode = ''
return return
}else if (this.scanCode.includes("DMODEL")) { }else if (this.scanCode.includes("DMODEL")) {
@ -321,6 +324,15 @@ export default {
} }
//
if (this.orderData.billNo == null) {
this.enterBillNoKey()
return
}
this.filterQuery.udiCode = this.scanCode.trim() this.filterQuery.udiCode = this.scanCode.trim()
if (this.filterQuery.udiCode.includes(';')) { if (this.filterQuery.udiCode.includes(';')) {

@ -251,17 +251,23 @@ export default {
methods: { methods: {
enterKey() { enterKey() {
this.errResult = '' this.errResult = ''
if (this.orderData.billNo == null) {
this.enterBillNoKey()
return
}
if (this.scanCode.includes("DMOENTER")) { if (this.scanCode.includes("DMOENTER")) {
this.confirmCheckOrder() if (this.orderData.billNo == null) {
this.$message.error('请先选择单据')
}else {
this.confirmCheckOrder()
}
this.scanCode = '' this.scanCode = ''
return return
}else if (this.scanCode.includes("DMOCANCEL")) { }else if (this.scanCode.includes("DMOCANCEL")) {
this.abandonOrder() if (this.orderData.billNo == null) {
this.$message.error('请先选择单据')
}else {
this.abandonOrder()
}
this.scanCode = '' this.scanCode = ''
return return
}else if (this.scanCode.includes("DMODEL")) { }else if (this.scanCode.includes("DMODEL")) {
@ -270,6 +276,13 @@ export default {
return return
} }
if (this.orderData.billNo == null) {
this.enterBillNoKey()
return
}
this.check() this.check()
}, },
check() { check() {

Loading…
Cancel
Save