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

change: 国际运费申请. 逻辑优化.

peter 4 місяців тому
батько
коміт
0ccb2c5515

+ 7 - 1
src/pages/payment-record3/components/upload.vue

@@ -179,7 +179,9 @@ import {
 import { UploadFilled } from '@element-plus/icons-vue'
 import * as XLSX from 'xlsx'
 import type { FormInstance, FormRules } from 'element-plus'
-import { ITrackingNumberItem, IOptionItem, } from '../inteface'
+import { ITrackingNumberItem, IOptionItem } from '../inteface'
+import mathjs from '@/utils/math'
+import { savePrecision } from '@/utils/math'
 
 const props = defineProps({
   visible: {
@@ -334,6 +336,10 @@ const next = (formEl: FormInstance | undefined) => {
             jsonData.forEach((i) => {
               tableData.value.push({
                 ...i,
+                CBM_Or_Chargable_Weight: savePrecision(
+                  mathjs.chain(i.CBM_Or_Chargable_Weight).done(),
+                ),
+                Reference: i.Reference || '',
                 Weight_Unit: form.value.weightUnit,
                 Currency: form.value.currency,
                 payment_type: form.value.paymentType,

+ 9 - 0
src/pages/payment-record3/index.vue

@@ -643,6 +643,15 @@ const splitPaymentRequestRecordForm = function () {
   }
   loading.value = true
   Promise.all(pool)
+    .then(() => {
+      tableData.value = []
+      trackingTable.value = []
+      finTable.value = []
+      statementID.value = ''
+    })
+    .finally(() => {
+      loading.value = false
+    })
 }
 
 const createPaymentRequestRecord = function (