From eba5f69fac189394316b234d9dbac31ab077a4e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Tue, 9 Dec 2025 15:35:10 +0800 Subject: [PATCH] =?UTF-8?q?feat(wms):=20=E6=96=B0=E5=A2=9E=E5=BA=93?= =?UTF-8?q?=E5=AD=98=E7=BB=9F=E8=AE=A1=E6=A8=A1=E5=9D=97=E5=B9=B6=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E9=92=A2=E5=8D=B7=E9=80=89=E6=8B=A9=E5=99=A8=E9=80=BB?= =?UTF-8?q?=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 新增库存统计相关组件,包括物料汇总、仓库统计和树形统计视图,提供可视化数据展示和钻取功能。优化钢卷选择器显示逻辑,移除审核状态判断。调整钻取表格组件,支持实际仓库ID参数传递。 - 新增itemSummary.vue、warehouseBox.vue和warehouseTree.vue组件 - 移除钢卷选择器的审核状态条件判断 - 扩展钻取表格组件支持实际仓库ID参数 - 添加数据汇总展示和图表可视化功能 --- .../views/wms/coil/Inventory/itemSummary.vue | 431 +++++++++++++ .../views/wms/coil/Inventory/warehouseBox.vue | 585 ++++++++++++++++++ .../wms/coil/Inventory/warehouseTree.vue | 585 ++++++++++++++++++ .../views/wms/coil/panels/DrillDownTable.vue | 8 +- klp-ui/src/views/wms/delivery/plan/index.vue | 2 +- 5 files changed, 1607 insertions(+), 4 deletions(-) create mode 100644 klp-ui/src/views/wms/coil/Inventory/itemSummary.vue create mode 100644 klp-ui/src/views/wms/coil/Inventory/warehouseBox.vue create mode 100644 klp-ui/src/views/wms/coil/Inventory/warehouseTree.vue diff --git a/klp-ui/src/views/wms/coil/Inventory/itemSummary.vue b/klp-ui/src/views/wms/coil/Inventory/itemSummary.vue new file mode 100644 index 00000000..885326ff --- /dev/null +++ b/klp-ui/src/views/wms/coil/Inventory/itemSummary.vue @@ -0,0 +1,431 @@ + + + + + diff --git a/klp-ui/src/views/wms/coil/Inventory/warehouseBox.vue b/klp-ui/src/views/wms/coil/Inventory/warehouseBox.vue new file mode 100644 index 00000000..aa08fd5d --- /dev/null +++ b/klp-ui/src/views/wms/coil/Inventory/warehouseBox.vue @@ -0,0 +1,585 @@ + + + + + \ No newline at end of file diff --git a/klp-ui/src/views/wms/coil/Inventory/warehouseTree.vue b/klp-ui/src/views/wms/coil/Inventory/warehouseTree.vue new file mode 100644 index 00000000..89d9caa3 --- /dev/null +++ b/klp-ui/src/views/wms/coil/Inventory/warehouseTree.vue @@ -0,0 +1,585 @@ + + + + + \ No newline at end of file diff --git a/klp-ui/src/views/wms/coil/panels/DrillDownTable.vue b/klp-ui/src/views/wms/coil/panels/DrillDownTable.vue index 21473b62..b02a77c4 100644 --- a/klp-ui/src/views/wms/coil/panels/DrillDownTable.vue +++ b/klp-ui/src/views/wms/coil/panels/DrillDownTable.vue @@ -1,7 +1,7 @@