|
@@ -348,22 +348,23 @@ const generateFinTable = function () {
|
|
|
(j) => j.Tracking_Number == i.Tracking_Number,
|
|
|
)
|
|
|
|
|
|
- const sum = temp.reduce((total, current) => {
|
|
|
- total += Number(current.CBM_or_Chargable_Weight)
|
|
|
- return total
|
|
|
- }, 0)
|
|
|
+ // const sum = temp.reduce((total, current) => {
|
|
|
+ // total += Number(current.CBM_or_Chargable_Weight)
|
|
|
+ // return total
|
|
|
+ // }, 0)
|
|
|
|
|
|
temp.forEach((j) => {
|
|
|
result.push({
|
|
|
...j,
|
|
|
- Total: savePrecision(
|
|
|
- mathjs
|
|
|
- .chain(i.Total)
|
|
|
- .multiply(Number(j.CBM_or_Chargable_Weight))
|
|
|
- .divide(sum)
|
|
|
- .done(),
|
|
|
- 3,
|
|
|
- ),
|
|
|
+ Total: Number(i.Total),
|
|
|
+ // Total: savePrecision(
|
|
|
+ // mathjs
|
|
|
+ // .chain(i.Total)
|
|
|
+ // .multiply(Number(j.CBM_or_Chargable_Weight))
|
|
|
+ // .divide(sum)
|
|
|
+ // .done(),
|
|
|
+ // 3,
|
|
|
+ // ),
|
|
|
Description: i.Description,
|
|
|
})
|
|
|
})
|