From e8b30f7b0156600f3e4703a9c4de793cdf7729c8 Mon Sep 17 00:00:00 2001
From: ZN <zhang_12370@163.com>
Date: 星期三, 01 四月 2026 14:06:12 +0800
Subject: [PATCH] fix: 修复采购发票台账、付款台账、不合格品管理和协同审批表单的问题

---
 src/views/productionManagement/productionReporting/components/formDia.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/views/productionManagement/productionReporting/components/formDia.vue b/src/views/productionManagement/productionReporting/components/formDia.vue
index 126c5b0..ee65546 100644
--- a/src/views/productionManagement/productionReporting/components/formDia.vue
+++ b/src/views/productionManagement/productionReporting/components/formDia.vue
@@ -141,7 +141,7 @@
 const calculateTotalPrice = () => {
 	const quantity = Number(form.value.finishedNum ?? 0);
 	const unitPrice = Number(form.value.unitPrice ?? 0);
-	
+
 	if (quantity > 0 && unitPrice > 0) {
 		form.value.totalPrice = (quantity * unitPrice).toFixed(2);
 	} else {
@@ -181,4 +181,4 @@
 
 <style scoped>
 
-</style>
\ No newline at end of file
+</style>

--
Gitblit v1.9.3