|
|
@ -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; |
|
|
|