|
@@ -436,10 +436,16 @@ export default {
|
|
|
let receiptInvoiceWeight = item.invoiceWeight / item.cntrLiang;
|
|
|
let receiptActualQuantity = item.invoiceWeight / item.cntrLiang;
|
|
|
let receiptGrossWeight = item.invoiceWeight / item.cntrLiang;
|
|
|
+ let receiptBillWeight = item.billWeight / item.cntrLiang;
|
|
|
+ let receiptPrice = item.price / item.cntrLiang;
|
|
|
+ let receiptContractAmount = item.contractAmount / item.cntrLiang;
|
|
|
for (let i = 0; i < item.cntrLiang; i++) {
|
|
|
item.invoiceWeight = receiptInvoiceWeight;
|
|
|
item.actualQuantity = receiptActualQuantity;
|
|
|
item.grossWeight = receiptGrossWeight;
|
|
|
+ item.billWeight = receiptBillWeight
|
|
|
+ item.price = receiptPrice
|
|
|
+ item.contractAmount = receiptContractAmount
|
|
|
this.$refs.crudContact.rowCellAdd(item);
|
|
|
}
|
|
|
} else {
|