Browse Source

修改发货校验数量

hella_online_20241128
lijuncheng 4 months ago
parent
commit
3899feeb52
  1. 4
      src/pages/deliver/coms/comScanDeliverPack.vue

4
src/pages/deliver/coms/comScanDeliverPack.vue

@ -846,7 +846,7 @@
"]的父包装已经扫描")
} else {
let record = this.creatRecord(label, balance, packageInfo);
if (!this.checkHandleQty(batch, record)) {
if (!this.checkHandleQty(record)) {
return;
}
batch.Records.push(record);
@ -881,7 +881,7 @@
console.log("扫描的是父包装,是否移除子包装")
} else {
let record = this.creatRecord(label, balance, packageInfo);
if (!this.checkHandleQty(batch, record)) {
if (!this.checkHandleQty(record)) {
return;
}
batch.Records.push(record);

Loading…
Cancel
Save