Browse Source

fix:修改发票管理货物信息本次开票金额保留小数

lazy 2 weeks ago
parent
commit
16c7e32228
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/invoicesManagement/components/ApplyInvoicingContent.vue

+ 1 - 1
src/views/invoicesManagement/components/ApplyInvoicingContent.vue

@@ -440,7 +440,7 @@ export default {
     },
     calcMoney() {
       return (val) => {
-        return formatMoney(Number(val.openQuantity) * Number(val.salesPrice))
+        return formatMoney(Number(val.openQuantity) * Number(val.salesPrice), 4)
       }
     }
     // #region 贸理通4.0版本优化 发票管理