From 6f1acfd2086a1f8c2cb80afd3db4e534e44d545e Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期五, 14 八月 2026 10:33:51 +0800
Subject: [PATCH] fix: 报工明细创建日期格式化
---
src/views/productionPlan/productionPlan/index.vue | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/views/productionPlan/productionPlan/index.vue b/src/views/productionPlan/productionPlan/index.vue
index fd56e89..07cf781 100644
--- a/src/views/productionPlan/productionPlan/index.vue
+++ b/src/views/productionPlan/productionPlan/index.vue
@@ -530,8 +530,7 @@
});
};
const onBlur = value => {
- // 闄愬埗鍥涗綅灏忔暟
- mergeForm.totalAssignedQuantity = Number(value.toFixed(4));
+ mergeForm.totalAssignedQuantity = Number(Number(value).toFixed(10));
};
const fetchProductOptions = () => {
@@ -656,9 +655,9 @@
};
}
summary[category].totalAssignedQuantity += Number(
- (Number(row.qtyRequired || 0) - Number(row.quantityIssued || 0)).toFixed(
- 4
- )
+ (
+ Number(row.qtyRequired || 0) - Number(row.quantityIssued || 0)
+ ).toFixed(10)
);
});
@@ -739,13 +738,14 @@
// 璁$畻鎬诲埗閫犳暟閲� (榛樿qtyRequired鐨勫拰)
const totalAssignedQuantity = selectedRows.value.reduce((sum, row) => {
return sum + Number(row.qtyRequired || 0) - Number(row.quantityIssued || 0);
- }, 0);
- sumAssignedQuantity.value = totalAssignedQuantity;
- console.log(totalAssignedQuantity);
+ }, 0); // 閬垮厤娴偣鏁扮簿搴﹂棶棰橈紙濡� 37.800000000000004锛�
+ const fixedTotal = Number(totalAssignedQuantity.toFixed(10));
+ sumAssignedQuantity.value = fixedTotal;
+ console.log(fixedTotal);
// 璁剧疆琛ㄥ崟鏁版嵁
mergeForm.productName = productName;
mergeForm.model = firstRow.model || "";
- mergeForm.totalAssignedQuantity = totalAssignedQuantity;
+ mergeForm.totalAssignedQuantity = fixedTotal;
mergeForm.planCompleteTime = firstRow.requiredDate || "";
mergeForm.productId = firstRow.productId || "";
mergeForm.ids = selectedRows.value.map(row => row.id);
--
Gitblit v1.9.3