Browse Source

YT-375pda隔离收货任务,扫描打印的标签,提示不在任务中

intex_online20241111
zhang_li 1 month ago
parent
commit
5993e8358a
  1. 5
      src/pages/productReceipt/job/scrapReceiptDetail.vue

5
src/pages/productReceipt/job/scrapReceiptDetail.vue

@ -227,13 +227,12 @@
this.showErrorMessage("物料号【" + itemCode + "】不在列表中")
} else {
var itemDetail = detail.subList.find(r =>
r.packingNumber == packingNumber &&
r.batch == batch);
if (itemDetail == undefined) {
this.showErrorMessage("箱码[" + packingNumber + "]" + "批次[" + batch + "]不在任务列表中")
this.showErrorMessage("批次[" + batch + "]不在任务列表中")
} else {
if (itemDetail.scaned) {
this.showErrorMessage("箱码[" + packingNumber + "]" + "批次[" + batch + "]已经扫描")
this.showErrorMessage( "批次[" + batch + "]已经扫描")
} else {
itemDetail.scaned = true;
itemDetail.handleQty = Number(result.label.qty);

Loading…
Cancel
Save