|
@@ -348,23 +348,24 @@ 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) => {
|
|
|
+ const a = savePrecision(
|
|
|
+ mathjs
|
|
|
+ .chain(i.Total)
|
|
|
+ .multiply(Number(j.CBM_or_Chargable_Weight))
|
|
|
+ .divide(sum)
|
|
|
+ .done(),
|
|
|
+ 3,
|
|
|
+ )
|
|
|
result.push({
|
|
|
...j,
|
|
|
- Total: Number(i.Total),
|
|
|
- // Total: savePrecision(
|
|
|
- // mathjs
|
|
|
- // .chain(i.Total)
|
|
|
- // .multiply(Number(j.CBM_or_Chargable_Weight))
|
|
|
- // .divide(sum)
|
|
|
- // .done(),
|
|
|
- // 3,
|
|
|
- // ),
|
|
|
+ Total_Accounts_Payable: Number(i.Total),
|
|
|
+ Total: a,
|
|
|
Description: i.Description,
|
|
|
})
|
|
|
})
|
|
@@ -373,7 +374,6 @@ const generateFinTable = function () {
|
|
|
return {
|
|
|
...i,
|
|
|
Fee_Type: i.Reference ? 'Order' : 'Sample',
|
|
|
- Total_Accounts_Payable: i.Total,
|
|
|
}
|
|
|
})
|
|
|
}
|
|
@@ -534,11 +534,11 @@ const createInternationalPackage = function () {
|
|
|
return
|
|
|
}
|
|
|
ElNotification({
|
|
|
- duration: 0,
|
|
|
- title: '创建国际运费记录成功',
|
|
|
- type: 'success',
|
|
|
- message: '创建国际运费记录成功',
|
|
|
- })
|
|
|
+ duration: 0,
|
|
|
+ title: '创建国际运费记录成功',
|
|
|
+ type: 'success',
|
|
|
+ message: '创建国际运费记录成功',
|
|
|
+ })
|
|
|
})
|
|
|
.catch((e) => {
|
|
|
console.log(e, 'createInternationalPackage error')
|
|
@@ -634,6 +634,7 @@ const splitPaymentRequestRecordForm = function () {
|
|
|
},
|
|
|
Payment_Status: 'Pending Verify',
|
|
|
Batch_number: new Date().getTime().toString(),
|
|
|
+ SO_id: i.Reference || '',
|
|
|
}
|
|
|
t.push(temp)
|
|
|
return t
|