From eb5d2e32f490a069307ecdd964669f3d1575dedc Mon Sep 17 00:00:00 2001
From: 张诺 <zhang_12370@163.com>
Date: 星期三, 29 四月 2026 10:19:45 +0800
Subject: [PATCH] feat(productionManagement): 添加工单管理页面功能 修改生产排产只允许排产没有历史 排产记录修改为历史的排产记录

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

diff --git a/src/views/productionManagement/productionReporting/components/formDia.vue b/src/views/productionManagement/productionReporting/components/formDia.vue
index 15958e6..774777e 100644
--- a/src/views/productionManagement/productionReporting/components/formDia.vue
+++ b/src/views/productionManagement/productionReporting/components/formDia.vue
@@ -144,7 +144,7 @@
 	const unitPrice = Number(form.value.unitPrice ?? 0);
 	
 	if (quantity > 0 && unitPrice > 0) {
-		form.value.totalPrice = (quantity * unitPrice).toFixed(2);
+		form.value.totalPrice = (quantity * unitPrice).toFixed(3);
 	} else {
 		form.value.totalPrice = '0.00';
 	}

--
Gitblit v1.9.3