From 3ff87b01ae6b2976ae7565286e7f24557ef1ed3d Mon Sep 17 00:00:00 2001
From: zhang_li
Date: Wed, 30 Apr 2025 12:38:12 +0800
Subject: [PATCH] =?UTF-8?q?=E5=90=88=E8=AE=A1=E5=8D=95=E4=BB=B7=E4=BD=8D?=
=?UTF-8?q?=E6=95=B0=E6=94=B9=E6=88=9011?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../CustomerSaleInvoiceBasicForm.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/views/wms/deliversettlementManage/customerSaleInvoiceRequestMain/CustomerSaleInvoiceBasicForm.vue b/src/views/wms/deliversettlementManage/customerSaleInvoiceRequestMain/CustomerSaleInvoiceBasicForm.vue
index 1bb231c8f..4566d3e61 100644
--- a/src/views/wms/deliversettlementManage/customerSaleInvoiceRequestMain/CustomerSaleInvoiceBasicForm.vue
+++ b/src/views/wms/deliversettlementManage/customerSaleInvoiceRequestMain/CustomerSaleInvoiceBasicForm.vue
@@ -332,7 +332,7 @@ const searchTableSuccess = (formField, searchField, val, formRef, type, row ) =>
// 初始化计算子表
const initTableDataPrice = ()=>{
tableData.value.forEach(item=>{
- item['sumPrice'] = (item['price'] + item['allocationPrice']).toFixed(5)
+ item['sumPrice'] = (item['price'] + item['allocationPrice']).toFixed(11)
// 未税金额 默认等于数量*合计单价,可修改,必填,最多可输入2位小数
item['beforeTaxAmount'] = Number(new Decimal(Number(item['sumPrice'])).mul(new Decimal(item['qty'])).toNumber().toFixed(2))