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