From c6325aae348b74a33d901d09a258f267d4dbf610 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Thu, 27 Nov 2025 11:02:20 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=8F=91=E8=B4=A7=E6=8A=A5=E8=A1=A8):=20?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8F=91=E8=B4=A7=E6=8A=A5=E8=A1=A8=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加发货报表页面,包含日期范围筛选、汇总信息展示和详细数据表格 新增API接口获取发货报表数据 实现数据计算和格式化显示功能 --- klp-ui/src/api/wms/deliveryPlan.js | 15 ++ klp-ui/src/views/wms/coil/panels/do.vue | 1 - .../src/views/wms/delivery/report/index.vue | 250 ++++++++++++++++++ 3 files changed, 265 insertions(+), 1 deletion(-) create mode 100644 klp-ui/src/views/wms/delivery/report/index.vue diff --git a/klp-ui/src/api/wms/deliveryPlan.js b/klp-ui/src/api/wms/deliveryPlan.js index 5198f81a..2d07b347 100644 --- a/klp-ui/src/api/wms/deliveryPlan.js +++ b/klp-ui/src/api/wms/deliveryPlan.js @@ -42,3 +42,18 @@ export function delDeliveryPlan(planId) { method: 'delete' }) } + +// 获取发货报表统计信息 +/** + * + * @param {*} query.startTime 开始时间 + * @param {*} query.endTime 结束时间 + * @returns + */ +export function getDeliveryReport(query) { + return request({ + url: '/wms/deliveryPlan/report', + method: 'get', + params: query + }) +} \ No newline at end of file diff --git a/klp-ui/src/views/wms/coil/panels/do.vue b/klp-ui/src/views/wms/coil/panels/do.vue index a391d570..55bf34e7 100644 --- a/klp-ui/src/views/wms/coil/panels/do.vue +++ b/klp-ui/src/views/wms/coil/panels/do.vue @@ -355,7 +355,6 @@ export default { }) return acidAction ? parseInt(acidAction.value) : null }, - }, watch: { // 监听字典数据加载,当acidRollingActionType有值时自动加载待操作列表 diff --git a/klp-ui/src/views/wms/delivery/report/index.vue b/klp-ui/src/views/wms/delivery/report/index.vue new file mode 100644 index 00000000..fa6a527c --- /dev/null +++ b/klp-ui/src/views/wms/delivery/report/index.vue @@ -0,0 +1,250 @@ + + + + + \ No newline at end of file