From 7a0790d8224db45a039bf33d0ef4e24ae879a243 Mon Sep 17 00:00:00 2001
From: zhangwencui <1064582902@qq.com>
Date: 星期二, 30 六月 2026 10:38:05 +0800
Subject: [PATCH] 采购退货重构,添加新增、删除功能;供应商管理新增修改删除功能

---
 src/pages/procurementManagement/procurementLedger/index.vue |   56 +++++++++++++++++++++++++++++++++++++++-----------------
 1 files changed, 39 insertions(+), 17 deletions(-)

diff --git a/src/pages/procurementManagement/procurementLedger/index.vue b/src/pages/procurementManagement/procurementLedger/index.vue
index b2784d6..028fb1c 100644
--- a/src/pages/procurementManagement/procurementLedger/index.vue
+++ b/src/pages/procurementManagement/procurementLedger/index.vue
@@ -45,10 +45,14 @@
           </view>
           <up-divider></up-divider>
           <view class="item-details">
-            <!-- <view class="detail-row">
-              <text class="detail-label">閿�鍞悎鍚屽彿</text>
-              <text class="detail-value">{{ item.salesContractNo }}</text>
-            </view> -->
+            <view class="detail-row">
+              <text class="detail-label">鍏ュ簱鐘舵��</text>
+              <view class="detail-value">
+                <u-tag :type="getStockInStatusType(item.stockInStatus)">
+                  {{ item.stockInStatus || '--' }}
+                </u-tag>
+              </view>
+            </view>
             <view class="detail-row">
               <text class="detail-label">渚涘簲鍟嗗悕绉�</text>
               <text class="detail-value">{{ item.supplierName }}</text>
@@ -77,17 +81,13 @@
               </view>
             </view>
             <!-- 浠呴潪鈥滃鎵归�氳繃鈥濈殑鍙拌处灞曠ず鍒犻櫎鎸夐挳 -->
-            <view
-              class="detail-row"
-              v-if="item.approvalStatus !== 3"
-              style="justify-content: flex-end; margin-top: 8px;"
-            >
-              <up-button
-                type="error"
-                size="small"
-                plain
-                @click.stop="handleDelete(item)"
-              >
+            <view class="detail-row"
+                  v-if="item.approvalStatus !== 3 && item.stockInStatus !== '瀹屽叏鍏ュ簱'"
+                  style="justify-content: flex-end; margin-top: 8px;">
+              <up-button type="error"
+                         size="small"
+                         plain
+                         @click.stop="handleDelete(item)">
                 鍒犻櫎
               </up-button>
             </view>
@@ -114,7 +114,10 @@
   import { onShow } from "@dcloudio/uni-app";
   import useUserStore from "@/store/modules/user";
   import PageHeader from "@/components/PageHeader.vue";
-  import { purchaseListPage, delPurchase } from "@/api/procurementManagement/procurementLedger";
+  import {
+    purchaseListPage,
+    delPurchase,
+  } from "@/api/procurementManagement/procurementLedger";
   const userStore = useUserStore();
   const approvalStatusText = {
     1: "寰呭鏍�",
@@ -131,6 +134,14 @@
       4: "error", // 瀹℃壒澶辫触 - 绾㈣壊
     };
     return typeMap[status] || "";
+  };
+  const getStockInStatusType = status => {
+    const typeMap = {
+      寰呭叆搴�: "info",
+      鍏ュ簱涓�: "warning",
+      瀹屽叏鍏ュ簱: "success",
+    };
+    return typeMap[status] || "info";
   };
   // 鎼滅储鍏抽敭璇�
   const purchaseContractNumber = ref("");
@@ -180,6 +191,7 @@
     try {
       // 璁剧疆鎿嶄綔绫诲瀷
       uni.setStorageSync("operationType", type);
+      uni.removeStorageSync("editData");
 
       // 濡傛灉鏄煡鐪嬫垨缂栬緫鎿嶄綔
       if (type !== "add") {
@@ -195,6 +207,13 @@
         // 妫�鏌ユ潈闄愶細鍙湁褰曞叆浜烘墠鑳界紪杈�
         if (row.recorderName != userStore.nickName) {
           // 闈炲綍鍏ヤ汉璺宠浆鍒板彧璇昏鎯呴〉闈�
+          uni.setStorageSync("editData", JSON.stringify(row));
+          uni.navigateTo({
+            url: "/pages/procurementManagement/procurementLedger/view",
+          });
+          return;
+        }
+        if (row.stockInStatus === "瀹屽叏鍏ュ簱") {
           uni.setStorageSync("editData", JSON.stringify(row));
           uni.navigateTo({
             url: "/pages/procurementManagement/procurementLedger/view",
@@ -265,7 +284,10 @@
               // 鍙湁鍦ㄧ湡姝e紓甯告椂锛屾墠鍦ㄨ繖閲屽厹搴曟彁绀�
               const msg =
                 (error && error.msg) ||
-                (error && error.response && error.response.data && error.response.data.msg) ||
+                (error &&
+                  error.response &&
+                  error.response.data &&
+                  error.response.data.msg) ||
                 (error && error.message) ||
                 "鍒犻櫎澶辫触";
               uni.showToast({

--
Gitblit v1.9.3