|
|
|
@ -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()
|
|
|
|
|