From bdfab89d8afbc60faeb89715a461f77e877d7f5d Mon Sep 17 00:00:00 2001
From: yuan <123@>
Date: 星期一, 03 八月 2026 00:02:37 +0800
Subject: [PATCH] feat: 新增徐州什克金属制品有限公司配置文件

---
 src/views/inventoryManagement/receiptManagement/Record.vue |   21 ++++++++++++++-------
 1 files changed, 14 insertions(+), 7 deletions(-)

diff --git a/src/views/inventoryManagement/receiptManagement/Record.vue b/src/views/inventoryManagement/receiptManagement/Record.vue
index 3fce379..2fe86a2 100644
--- a/src/views/inventoryManagement/receiptManagement/Record.vue
+++ b/src/views/inventoryManagement/receiptManagement/Record.vue
@@ -71,11 +71,11 @@
       </el-form>
     </div>
     <div class="actions">
-      <el-button type="primary"
+      <!-- <el-button type="primary"
                  :disabled="!canBatchApprove"
                  @click="handleBatchApprove">瀹℃壒</el-button>
       <el-button :disabled="!canReverseApprove"
-                 @click="handleReverseApprove">鍙嶅</el-button>
+                 @click="handleReverseApprove">鍙嶅</el-button> -->
       <el-button @click="handleOut">瀵煎嚭</el-button>
       <el-button type="danger"
                  plain
@@ -102,11 +102,16 @@
                          width="60"/>
         <el-table-column label="鍏ュ簱鎵规"
                          prop="inboundBatches"
-                         width="200"
+                         width="150"
                          show-overflow-tooltip/>
         <el-table-column label="鍏ュ簱鏃堕棿"
                          prop="createTime"
-                         show-overflow-tooltip/>
+                         width="120"
+                         show-overflow-tooltip>
+          <template #default="scope">
+            <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
+          </template>
+        </el-table-column>
         <el-table-column label="浜у搧澶х被"
                          prop="productName"
                          show-overflow-tooltip/>
@@ -115,6 +120,7 @@
                          show-overflow-tooltip/>
         <el-table-column label="鎵瑰彿"
                          prop="batchNo"
+                         width="180"
                          show-overflow-tooltip/>
         <el-table-column label="鍗曚綅"
                          prop="unit"
@@ -142,7 +148,7 @@
             {{ formatSourceOrderNo(scope.row?.sourceOrderNo) }}
           </template>
         </el-table-column>
-        <el-table-column label="瀹℃壒鐘舵��"
+        <!-- <el-table-column label="瀹℃壒鐘舵��"
                          prop="approvalStatus"
                          show-overflow-tooltip>
           <template #default="scope">
@@ -150,7 +156,7 @@
               {{ getApprovalStatusLabel(scope.row.approvalStatus) }}
             </el-tag>
           </template>
-        </el-table-column>
+        </el-table-column> -->
       </el-table>
       <pagination v-show="total > 0"
                   :total="total"
@@ -183,6 +189,7 @@
   findAllQualifiedStockInRecordTypeOptions, 
   // findAllUnQualifiedStockInRecordTypeOptions,
 } from "@/api/basicData/enum.js";
+import { parseTime } from "@/utils/ruoyi";
 
 const {proxy} = getCurrentInstance();
 
@@ -283,7 +290,7 @@
 const canDelete = computed(() => canBatchApprove.value);
 const showSourceOrderNoColumn = computed(() => {
   const topParentProductId = Number(props.topParentProductId);
-  return topParentProductId === 276 || topParentProductId === 278;
+  return topParentProductId === 1 || topParentProductId === 3;
 });
 
 const formatSourceOrderNo = (value) => {

--
Gitblit v1.9.3