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