From 26ec28bc8764a48b029a301effa4c7f7345b1d6b Mon Sep 17 00:00:00 2001
From: zhang_12370 <z2864490065@outlook.com>
Date: 星期六, 12 七月 2025 14:32:02 +0800
Subject: [PATCH] 1、删除无用模块并配置个性化新增方案 2、完善领用记录的查看功能等功能

---
 src/views/procureMent/components/ProductionDialog.vue |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/views/procureMent/components/ProductionDialog.vue b/src/views/procureMent/components/ProductionDialog.vue
index 0c720bf..e92ddac 100644
--- a/src/views/procureMent/components/ProductionDialog.vue
+++ b/src/views/procureMent/components/ProductionDialog.vue
@@ -203,7 +203,7 @@
   // 1. 鏍规嵁鍚◣鍗曚环鍜岀◣鐜囪绠椾笉鍚◣鍗曚环
   // 涓嶅惈绋庡崟浠� = 鍚◣鍗曚环 / (1 + 绋庣巼/100)
   const priceExcludingTax = priceIncludingTax && taxRate 
-    ? toFixed(priceIncludingTax / (1 + taxRate / 100), 2)
+    ? parseFloat((priceIncludingTax / (1 + taxRate / 100)).toFixed(2))
     : 0;
 
   // 2. 璁$畻涓嶅惈绋庢�讳环 = 涓嶅惈绋庡崟浠� 脳 鏁伴噺
@@ -216,8 +216,8 @@
     ? toFixed(priceIncludingTax * quantity, 2)
     : 0;
 
-  // 鏇存柊琛ㄥ崟鏁版嵁
-  form.value.priceExcludingTax = priceExcludingTax;
+  // 淇濊瘉鏄剧ず涓轰袱浣嶅皬鏁帮紙濡�88.5鏄剧ず涓�88.50锛�
+  form.value.priceExcludingTax = priceExcludingTax.toFixed(2);
   form.value.totalPriceExcludingTax = totalPriceExcludingTax;
   form.value.totalPriceIncludingTax = totalPriceIncludingTax;
 };

--
Gitblit v1.9.3