From f7ed815e3be3a269cfb4cf94ffdc9c2014aacb38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Fri, 12 Dec 2025 14:12:48 +0800 Subject: [PATCH] =?UTF-8?q?feat(wms):=20=E6=B7=BB=E5=8A=A0=E6=94=B6?= =?UTF-8?q?=E8=B4=A7=E6=8A=A5=E8=A1=A8=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 | 11 + klp-ui/src/views/wms/receive/report/index.vue | 220 ++++++++++++++++++ 2 files changed, 231 insertions(+) create mode 100644 klp-ui/src/views/wms/receive/report/index.vue diff --git a/klp-ui/src/api/wms/deliveryPlan.js b/klp-ui/src/api/wms/deliveryPlan.js index 0851b121..c020cc0b 100644 --- a/klp-ui/src/api/wms/deliveryPlan.js +++ b/klp-ui/src/api/wms/deliveryPlan.js @@ -70,3 +70,14 @@ export function listSelectableCoils(planId) { } }) } + +/** + * 获取收货报表 + */ +export function getReceiptReport(query) { + return request({ + url: '/wms/deliveryPlan/receivingReport', + method: 'get', + params: query + }) +} diff --git a/klp-ui/src/views/wms/receive/report/index.vue b/klp-ui/src/views/wms/receive/report/index.vue new file mode 100644 index 00000000..9c785086 --- /dev/null +++ b/klp-ui/src/views/wms/receive/report/index.vue @@ -0,0 +1,220 @@ + + + + + \ No newline at end of file