From feaeb3e3ac6d9e7606fce5e3ae80de3cca9c846f Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期三, 20 五月 2026 09:30:54 +0800
Subject: [PATCH] feat:1.库存成品展示电压,工序类别 2.销售页面调整
---
src/views/inventoryManagement/stockManagement/Record.vue | 11 +++++++++--
1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/src/views/inventoryManagement/stockManagement/Record.vue b/src/views/inventoryManagement/stockManagement/Record.vue
index 5b0a5f1..2168107 100644
--- a/src/views/inventoryManagement/stockManagement/Record.vue
+++ b/src/views/inventoryManagement/stockManagement/Record.vue
@@ -27,8 +27,10 @@
<el-table-column label="瑙勬牸鍨嬪彿" prop="model" show-overflow-tooltip />
<el-table-column label="鍗曚綅" prop="unit" show-overflow-tooltip />
<el-table-column label="鏂欏彿" prop="materialCode" show-overflow-tooltip />
- <el-table-column label="鍚堟牸鎵瑰彿" prop="qualifiedBatchNo" show-overflow-tooltip />
- <el-table-column label="涓嶅悎鏍兼壒鍙�" prop="unQualifiedBatchNo" show-overflow-tooltip />
+<!-- <el-table-column label="鍚堟牸鎵瑰彿" prop="qualifiedBatchNo" show-overflow-tooltip />-->
+<!-- <el-table-column label="涓嶅悎鏍兼壒鍙�" prop="unQualifiedBatchNo" show-overflow-tooltip />-->
+ <el-table-column v-if="props.isFinishedProduct" label="宸ュ簭绫诲埆" prop="processCategory" show-overflow-tooltip />
+ <el-table-column v-if="props.isFinishedProduct" label="鐢靛帇" prop="voltage" show-overflow-tooltip />
<el-table-column label="鍚堟牸搴撳瓨鏁伴噺" prop="qualifiedQuantity" show-overflow-tooltip />
<el-table-column label="涓嶅悎鏍煎簱瀛樻暟閲�" prop="unQualifiedQuantity" show-overflow-tooltip />
<el-table-column label="鍚堟牸鍐荤粨鏁伴噺" prop="qualifiedLockedQuantity" show-overflow-tooltip />
@@ -50,6 +52,7 @@
<new-stock-inventory v-if="isShowNewModal"
v-model:visible="isShowNewModal"
:top-product-parent-id="props.productId"
+ :is-finished-product="props.isFinishedProduct"
@completed="handleQuery" />
<subtract-stock-inventory v-if="isShowSubtractModal"
@@ -83,6 +86,10 @@
type: Number,
required: true,
default: 0
+ },
+ isFinishedProduct: {
+ type: Boolean,
+ default: false
}
});
--
Gitblit v1.9.3