|
@@ -1832,12 +1832,12 @@ export default {
|
|
|
this.dataList1.weight =
|
|
|
Number(this.dataList1.weight) +
|
|
|
Number(
|
|
|
- supplygoods[i].estimateOutWarehouseWeight.toFixed(3)
|
|
|
+ Number(supplygoods[i].estimateOutWarehouseWeight).toFixed(3)
|
|
|
)
|
|
|
this.dataList.weight =
|
|
|
Number(this.dataList.weight) +
|
|
|
Number(
|
|
|
- supplygoods[i].estimateOutWarehouseWeight.toFixed(3)
|
|
|
+ Number(supplygoods[i].estimateOutWarehouseWeight).toFixed(3)
|
|
|
)
|
|
|
}
|
|
|
|
|
@@ -1857,10 +1857,10 @@ export default {
|
|
|
: '' + supplygoods[i].goodsName
|
|
|
this.dataList1.weight =
|
|
|
Number(this.dataList1.weight) +
|
|
|
- Number(supplygoods[i].estimateOutWarehouseWeight.toFixed(3))
|
|
|
+ Number(Number(supplygoods[i].estimateOutWarehouseWeight).toFixed(3))
|
|
|
this.dataList.weight =
|
|
|
Number(this.dataList.weight) +
|
|
|
- Number(supplygoods[i].estimateOutWarehouseWeight.toFixed(3))
|
|
|
+ Number(Number(supplygoods[i].estimateOutWarehouseWeight).toFixed(3))
|
|
|
}
|
|
|
}
|
|
|
}
|