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;