Переглянути джерело

change: 国际运费传参逻辑再次调整.

peter 4 місяців тому
батько
коміт
fe228e6f05
1 змінених файлів з 20 додано та 19 видалено
  1. 20 19
      src/pages/payment-record3/index.vue

+ 20 - 19
src/pages/payment-record3/index.vue

@@ -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