feat: 盘点补丁

dev2.5_scan
chenhc 4 months ago
parent 5e4131abc5
commit c82afbbf7a

@ -713,7 +713,19 @@ export default {
this.startCountVisible = true
let invProductList = res.data.list;
for (let product of invProductList) {
this.countProductList.push(product);
let product2 = {
orderIdFk: this.formData.orderId,
productId: product.relIdFk,
nameCode: product.nameCode,
batchNo: product.batchNo,
produceDate: product.productionDate,
expireDate: product.expireDate,
invCode: this.formData.invStorageCode,
invSpaceCode: this.formData.invSpaceCode,
invNum: product.reCount,
supId: product.supId
}
this.countProductList.push(product2);
}
this.saveOrder(1);
}

Loading…
Cancel
Save