From 3ffdb76baf74089912a23c1f8f8112d5c8c1063b Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期五, 20 三月 2026 14:56:24 +0800
Subject: [PATCH] fix: 生产详情接口联调90%

---
 src/views/procurementManagement/procurementLedger/index.vue |   34 +++++++++++++++++++++++++++++++++-
 1 files changed, 33 insertions(+), 1 deletions(-)

diff --git a/src/views/procurementManagement/procurementLedger/index.vue b/src/views/procurementManagement/procurementLedger/index.vue
index 20c6b1c..0ebff95 100644
--- a/src/views/procurementManagement/procurementLedger/index.vue
+++ b/src/views/procurementManagement/procurementLedger/index.vue
@@ -1474,6 +1474,22 @@
     if (type === "edit") {
       // 澶嶅埗琛屾暟鎹�
       productForm.value = { ...row };
+
+      // el-radio-group 鐨� value 鏄竷灏� true/false
+      // 鍚庣/琛ㄦ牸鏁版嵁鍙兘鏄� 0/1 鎴栧瓧绗︿覆锛岄渶鍋氫竴娆″綊涓�鍖栵紝閬垮厤涓嶅洖鏄�/鎻愪氦榛樿鈥滃惁鈥�
+      const normalizeIsChecked = (val) => {
+        if (val === true) return true;
+        if (val === false) return false;
+        if (val === 1 || val === "1") return true;
+        if (val === 0 || val === "0") return false;
+        if (typeof val === "string") {
+          const s = val.trim().toLowerCase();
+          if (["鏄�", "yes", "true", "y"].includes(s)) return true;
+          if (["鍚�", "no", "false", "n"].includes(s)) return false;
+        }
+        return !!val;
+      };
+      productForm.value.isChecked = normalizeIsChecked(row?.isChecked);
       
       // 濡傛灉鏄粠妯℃澘鍔犺浇鐨勬暟鎹紝鍙兘娌℃湁 productId 鍜� productModelId
       // 闇�瑕佹牴鎹� productCategory 鍜� specificationModel 鏉ユ煡鎵惧搴旂殑 ID
@@ -1532,10 +1548,26 @@
   };
   const getProductOptions = () => {
     return productTreeList().then(res => {
-      productOptions.value = convertIdToValue(res);
+      const tree = convertIdToValue(res);
+      productOptions.value = filterOutSemiFinished(tree);
       return res;
     });
   };
+
+  const filterOutSemiFinished = (nodes = []) => {
+    return (nodes || [])
+      .filter(node => {
+        const label = String(node?.label ?? "");
+        return !label.includes("鍗婃垚鍝�");
+      })
+      .map(node => {
+        const next = { ...node };
+        if (next.children && next.children.length > 0) {
+          next.children = filterOutSemiFinished(next.children);
+        }
+        return next;
+      });
+  };
   const getModels = value => {
     if (value) {
       productForm.value.productCategory =

--
Gitblit v1.9.3