Kaynağa Gözat

change: payment record 部分数值增加精度处理逻辑.

peter 1 yıl önce
ebeveyn
işleme
8a361996ac

+ 10 - 1
src/pages/payment-record/components/upload.vue

@@ -158,7 +158,8 @@ import { UploadFilled } from '@element-plus/icons-vue'
 import * as XLSX from 'xlsx'
 import type { FormInstance, FormRules } from 'element-plus'
 import { IPoItem, IOptionItem } from '../inteface'
-import request from '@/utils/axios'
+// import request from '@/utils/axios'
+import utils from '@/utils/index'
 
 const props = defineProps({
   visible: {
@@ -280,6 +281,14 @@ const processExcel = (event: any) => {
           data.Sheets[data.SheetNames[0]],
         ) as IPoItem[]
         jsonData.forEach((i) => {
+          i.unit_price = utils.toFixed(Number(i.unit_price || 0), 1000)
+          i.quantity = utils.toFixed(Number(i.quantity || 0), 1000)
+          i.sample_fee = utils.toFixed(Number(i.sample_fee || 0), 1000)
+          i.setup_service_fee = utils.toFixed(
+            Number(i.setup_service_fee || 0),
+            1000,
+          )
+          i.total = utils.toFixed(Number(i.total || 0), 1000)
           tableData.value.push(i)
         })
         // tableData.value = tableData.value.concat(jsonData)

+ 2 - 2
src/pages/payment-record/index.vue

@@ -281,10 +281,10 @@ const downloadSample = function () {
 
 const tableData = ref([] as IPoItem[])
 const computedSum = computed(() => {
-  return tableData.value.reduce((total, current) => {
+  return utils.toFixed(tableData.value.reduce((total, current) => {
     total = total + Number(current.total)
     return total
-  }, 0)
+  }, 0), 1000)
 })
 const updateTableData = (p: { data: IPoItem[]; mode: string }) => {
   if (p.mode === 'Append') {