From 6f678ec425b5cbed9069c43ea473c3e0be3101ec Mon Sep 17 00:00:00 2001 From: zhang_li <2235006734@qqq.com> Date: Sat, 30 Nov 2024 12:41:08 +0800 Subject: [PATCH] =?UTF-8?q?YT-1428=E7=9B=B4=E6=8E=A5=E5=8F=91=E8=B4=A7?= =?UTF-8?q?=EF=BC=8C=E6=89=AB=E6=8F=8F=E6=A0=87=E7=AD=BE=E6=95=B0=E6=98=AF?= =?UTF-8?q?1=EF=BC=8C=E7=8E=B0=E5=B8=A6=E5=87=BA=E6=89=80=E6=9C=89?= =?UTF-8?q?=E5=BA=93=E5=AD=98=E6=95=B0=EF=BC=8C=E5=BA=94=E6=89=AB=E6=8F=8F?= =?UTF-8?q?=E5=A4=9A=E6=9C=89=E5=B8=A6=E5=87=BA=E5=A4=9A=E5=B0=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mycomponents/record/recordComDetailCard.vue | 2 +- src/pages/deliver/record/deliverRecord.vue | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/mycomponents/record/recordComDetailCard.vue b/src/mycomponents/record/recordComDetailCard.vue index a60c3648..f71f5c2d 100644 --- a/src/mycomponents/record/recordComDetailCard.vue +++ b/src/mycomponents/record/recordComDetailCard.vue @@ -7,7 +7,7 @@ diff --git a/src/pages/deliver/record/deliverRecord.vue b/src/pages/deliver/record/deliverRecord.vue index 1cf8f54e..7d6191c0 100644 --- a/src/pages/deliver/record/deliverRecord.vue +++ b/src/pages/deliver/record/deliverRecord.vue @@ -228,6 +228,7 @@ if (item == undefined) { var itemp = createItemInfo(balance, pack); let newDetail = createDetailInfo(balance, pack); // + newDetail.handleQty = parseFloat(result.label.qty) itemp.subList.push(newDetail); this.detailSource.push(itemp) } else { @@ -240,6 +241,7 @@ }) if (detail == undefined) { let newDetail = createDetailInfo(balance, pack); + newDetail.handleQty = parseFloat(result.label.qty) item.subList.push(newDetail); } else { detail.handleQty =calc.add(detail.handleQty, result.label.qty) @@ -257,6 +259,7 @@ }, calcHandleQty() { calcHandleQty(this.detailSource); + console.log(this.detailSource) this.$forceUpdate(); }, @@ -436,6 +439,7 @@ }) this.dataContent.subList = subList; this.dataContent.creator = creator; + this.dataContent.businessType = this.businessType.code this.dataContent.customerCode = this.customerCode; this.dataContent.fromWarehouseCode = this.detailSource[0].subList[0].warehouseCode; this.dataContent.toWarehouseCode = this.toWarehouseCode;