From 65984a7747de628340a1b4c415d7803be3fca2a5 Mon Sep 17 00:00:00 2001 From: lijuncheng Date: Mon, 3 Jun 2024 11:00:31 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=9B=B4=E6=8E=A5=E9=87=87?= =?UTF-8?q?=E8=B4=AD=E4=B8=8A=E6=9E=B6=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/putaway/record/putawayRecord.vue | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/pages/putaway/record/putawayRecord.vue b/src/pages/putaway/record/putawayRecord.vue index 290d759b..3dd6ffc2 100644 --- a/src/pages/putaway/record/putawayRecord.vue +++ b/src/pages/putaway/record/putawayRecord.vue @@ -152,6 +152,9 @@ let balance = result.balance; let label = result.label; let pack = result.package; + let poLine =label.poLine; + let poNumber =label.poNumber; + let supplierCode=label.supplierCode; var item = this.detailSource.find(res => { if (res.itemCode == balance.itemCode) { return res @@ -167,6 +170,10 @@ let newDetail = createDetailInfo(balance, pack); // newDetail.toLocationCode = toLocation.locationCode; newDetail.toWarehouseCode = toLocation.toWarehouseCode; + newDetail.poLine=poLine; + newDetail.poNumber=poNumber; + newDetail.supplierCode=supplierCode; + itemp.subList.push(newDetail); this.detailSource.push(itemp) calcHandleQty(this.detailSource); @@ -186,6 +193,9 @@ let newDetail = createDetailInfo(balance, pack); newDetail.toLocationCode = toLocation.locationCode; newDetail.toWarehouseCode = toLocation.toWarehouseCode; + newDetail.poLine=poLine; + newDetail.poNumber=poNumber; + newDetail.supplierCode=supplierCode; item.subList.push(newDetail); calcHandleQty(this.detailSource); });