|
@@ -1092,8 +1092,8 @@ export default {
|
|
|
}
|
|
|
|
|
|
headData.totalBoxes =Number(totalBoxes).toFixed(0);
|
|
|
- headData.totalNetWeight = totalNetWeight;
|
|
|
- headData.totalGrossWeight = totalGrossWeight;
|
|
|
+ headData.totalNetWeight = Number(totalNetWeight).toFixed(2);
|
|
|
+ headData.totalGrossWeight = Number(totalGrossWeight).toFixed(2);
|
|
|
headData.totalVolume = totalVolume.toFixed(3);
|
|
|
headData.totalPrice = totalPrice.toFixed(2);
|
|
|
headData.total = total.toFixed(0)
|