Browse Source

盘点扫描时去掉负库存提示

wms3.0_pda
niexiting 9 months ago
parent
commit
218870c178
  1. 17
      mycomponents/scan/winScanPackAndLocation.vue

17
mycomponents/scan/winScanPackAndLocation.vue

@ -264,14 +264,17 @@
})
} else if (datas.length == 1) {
let balance = datas[0];
if (balance.qty > 0) {
this.packCallBack(balance);
} else {
this.showErrorMessage(this.getQueryCondition() + '<br>查找到库存记录数量为[' + balance.qty + "],<br>不可以进行操作",
res => {
this.packGetFocus();
})
}
// 20231228
// if (balance.qty > 0) {
// this.packCallBack(balance);
// } else {
// this.showErrorMessage(this.getQueryCondition() + '<br>[' + balance.qty + "],<br>",
// res => {
// this.packGetFocus();
// })
// }
} else {
this.showBalanceSelect(datas);
}

Loading…
Cancel
Save