From 9aced09ef31ab77663e6ee052785d87ca3c671ba Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期二, 31 三月 2026 10:44:00 +0800
Subject: [PATCH] Merge branch 'dev_长治_健齿齿科器材' of http://114.132.189.42:9002/r/product-inventory-management into dev_长治_健齿齿科器材

---
 src/views/inventoryManagement/stockReport/index.vue |   39 +++++++++++++++++++++++++++++++--------
 1 files changed, 31 insertions(+), 8 deletions(-)

diff --git a/src/views/inventoryManagement/stockReport/index.vue b/src/views/inventoryManagement/stockReport/index.vue
index 9d3fc80..86252a6 100644
--- a/src/views/inventoryManagement/stockReport/index.vue
+++ b/src/views/inventoryManagement/stockReport/index.vue
@@ -168,13 +168,27 @@
              show-overflow-tooltip
              v-if="searchForm.reportType !== 'inout'"
            />
-           <el-table-column
-             label="鍏ュ簱鎵规"
-             prop="inboundBatches"
-             width="240"
-             show-overflow-tooltip
-             v-if="searchForm.reportType !== 'inout'"
-           />
+          <el-table-column
+            label="鎵瑰彿"
+            width="240"
+            show-overflow-tooltip
+            v-if="searchForm.reportType !== 'inout'"
+          >
+            <template #default="scope">
+              {{ scope.row.batchNo || scope.row.inboundBatches || "" }}
+            </template>
+          </el-table-column>
+          <el-table-column
+            label="渚涘簲鍟�"
+            prop="supplierName"
+            min-width="200"
+            show-overflow-tooltip
+            v-if="searchForm.reportType !== 'inout'"
+          >
+            <template #default="scope">
+              {{ scope.row.supplierName || scope.row.customer || "" }}
+            </template>
+          </el-table-column>
            <el-table-column
              label="浜у搧澶х被"
              prop="productName"
@@ -184,6 +198,11 @@
              label="瑙勬牸鍨嬪彿"
              prop="model"
              show-overflow-tooltip
+           />
+           <el-table-column
+               label="UID鐮�"
+               prop="uidNo"
+               show-overflow-tooltip
            />
            <el-table-column
              label="鍗曚綅"
@@ -252,7 +271,7 @@
   getStockInventoryReportList
 } from "@/api/inventoryManagement/stockInventory.js";
 import {
-  findAllQualifiedStockInRecordTypeOptions,
+  findAllQualifiedStockInRecordTypeOptions,findAllUnQualifiedStockInRecordTypeOptions,
 } from "@/api/basicData/enum.js";
 
 
@@ -293,6 +312,10 @@
   findAllQualifiedStockInRecordTypeOptions()
       .then(res => {
         stockRecordTypeOptions.value = res.data;
+        findAllUnQualifiedStockInRecordTypeOptions()
+          .then(res => {
+          stockRecordTypeOptions.value = [...stockRecordTypeOptions.value,...res.data];
+      })
       })
 }
 

--
Gitblit v1.9.3