From ce3701d6d181a3db73b505a495309328e35b5639 Mon Sep 17 00:00:00 2001
From: JR <3573153686@qq.com>
Date: Fri, 22 Aug 2025 17:22:59 +0800
Subject: [PATCH] =?UTF-8?q?feat(wms):=20=E4=BC=98=E5=8C=96=E5=BA=93?=
=?UTF-8?q?=E5=AD=98=E7=AE=A1=E7=90=86=E9=A1=B5=E9=9D=A2=E5=B1=95=E7=A4=BA?=
=?UTF-8?q?=E6=95=88=E6=9E=9C?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- 修改物品ID列为物品信息列,根据物品类型显示不同信息
- 添加原材料和产品信息的组件引用
- 优化表格列的显示逻辑- 调整部分UI样式,提高可读性
---
.../src/views/wms/stockIo/panels/detail.vue | 36 +++++++++++--------
1 file changed, 21 insertions(+), 15 deletions(-)
diff --git a/klp-ui/src/views/wms/stockIo/panels/detail.vue b/klp-ui/src/views/wms/stockIo/panels/detail.vue
index 62911052..246f00c3 100644
--- a/klp-ui/src/views/wms/stockIo/panels/detail.vue
+++ b/klp-ui/src/views/wms/stockIo/panels/detail.vue
@@ -29,7 +29,13 @@
-
+
+
+
+
+ {{ scope.row.itemId }}
+
+
@@ -100,11 +106,11 @@
-
@@ -147,7 +153,7 @@
-
+
{{ getStatusButtonText() }}
-
+
{{ getAuditButtonText() }}
-
+
-
@@ -341,7 +347,7 @@ export default {
this.$modal.msgError('请先添加明细数据');
return;
}
-
+
// 确认审核
this.$modal.confirm('确认要审核此出入库单吗?审核后将影响库存数据。').then(() => {
this.auditLoading = true;
@@ -410,7 +416,7 @@ export default {
} else {
this.$delete(this.rules, 'fromWarehouseId');
}
-
+
this.$refs["form"].validate(valid => {
if (valid) {
this.buttonLoading = true;
@@ -505,7 +511,7 @@ export default {
this.$modal.msgError('请先添加明细数据');
return;
}
-
+
this.$modal.confirm('确认要提交此出入库单吗?提交后将无法修改明细。').then(() => {
this.statusLoading = true;
updateStockIoStatus(this.stockIo.stockIoId, 1).then(response => {