From 5950118c86b8748c1245c106378c5926de0f61f5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= <2178503051@qq.com>
Date: Wed, 6 May 2026 16:21:32 +0800
Subject: [PATCH] =?UTF-8?q?feat(wms):=20=E6=B7=BB=E5=8A=A0excludeBound?=
=?UTF-8?q?=E5=8F=82=E6=95=B0=E5=B9=B6=E8=B0=83=E6=95=B4=E8=A1=A8=E6=A0=BC?=
=?UTF-8?q?=E5=88=97=E9=A1=BA=E5=BA=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- 在delivery/canuse页面添加excludeBound参数
- 修复coil/panels/do页面颜色渐变语法错误
- 在report/receive页面透视表配置中添加规格字段
- 调整coil/panels/base页面表格列顺序
---
klp-ui/src/views/wms/coil/panels/base.vue | 20 ++++++++++---------
klp-ui/src/views/wms/coil/panels/do.vue | 2 +-
.../src/views/wms/delivery/canuse/index.vue | 3 ++-
klp-ui/src/views/wms/report/receive.vue | 4 ++--
4 files changed, 16 insertions(+), 13 deletions(-)
diff --git a/klp-ui/src/views/wms/coil/panels/base.vue b/klp-ui/src/views/wms/coil/panels/base.vue
index 62b647b4..1b5a436e 100644
--- a/klp-ui/src/views/wms/coil/panels/base.vue
+++ b/klp-ui/src/views/wms/coil/panels/base.vue
@@ -213,6 +213,16 @@
+
+
+
+
+
+
+
+
+
+
@@ -323,15 +333,7 @@
{{ formatDuration(scope.row.productionDuration * 60 * 1000) }}
-
-
-
-
-
-
-
-
-
+
diff --git a/klp-ui/src/views/wms/coil/panels/do.vue b/klp-ui/src/views/wms/coil/panels/do.vue
index 90d70926..39d28ba4 100644
--- a/klp-ui/src/views/wms/coil/panels/do.vue
+++ b/klp-ui/src/views/wms/coil/panels/do.vue
@@ -525,7 +525,7 @@ export default {
// 双机架修复工序
else if (this.acidRollingActionType == 524) {
return {
- background: 'linear-gradient(45deg, #orange 0% 90%, #FFAACC 90% 100%)',
+ background: 'linear-gradient(45deg, orange 0% 90%, #FFAACC 90% 100%)',
color: '#fff'
}
}
diff --git a/klp-ui/src/views/wms/delivery/canuse/index.vue b/klp-ui/src/views/wms/delivery/canuse/index.vue
index 617cc2f6..85fad0e0 100644
--- a/klp-ui/src/views/wms/delivery/canuse/index.vue
+++ b/klp-ui/src/views/wms/delivery/canuse/index.vue
@@ -26,7 +26,8 @@ export default {
materialType: '成品',
itemType: 'product',
status: 0,
- orderBy: true
+ orderBy: true,
+ excludeBound: true,
},
labelType: '3',
showStatus: true,
diff --git a/klp-ui/src/views/wms/report/receive.vue b/klp-ui/src/views/wms/report/receive.vue
index 6ed9c016..eb7b3006 100644
--- a/klp-ui/src/views/wms/report/receive.vue
+++ b/klp-ui/src/views/wms/report/receive.vue
@@ -163,8 +163,8 @@ export default {
// 厂家材质透视表配置
hierarchicalPivotConfig: {
- groupFields: ['manufacturer', 'material'],
- groupLabels: ['厂家', '材质'],
+ groupFields: ['manufacturer', 'material', 'specification'],
+ groupLabels: ['厂家', '材质', '规格'],
summaryFields: [
{ prop: 'count', label: '求和项:件数', field: '', align: 'center' },
{ prop: 'weight', label: '求和项:重量', field: 'netWeight', align: 'center' }