From 903c354addb6e8f00de55564c577cbbf69044ad9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= <2178503051@qq.com> Date: Fri, 22 May 2026 13:02:53 +0800 Subject: [PATCH] =?UTF-8?q?feat(wms):=20=E6=96=B0=E5=A2=9E=E5=BA=94?= =?UTF-8?q?=E6=94=B6=E8=B4=A7=E7=89=A9=E8=AE=A1=E5=88=92=E6=89=B9=E9=87=8F?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=92=8C=E6=B8=85=E7=A9=BA=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=EF=BC=8C=E4=BC=98=E5=8C=96=E8=A1=A8=E6=A0=BC=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. 后端添加批量删除应收计划接口 2. 前端新增批量删除、清空按钮和多选功能 3. 优化表格高度和字段文案,调整分页查询大小 --- klp-ui/src/api/wms/receivePlan.js | 11 ++++ klp-ui/src/views/wms/receive/plan/index.vue | 65 +++++++++++++++++-- .../controller/WmsReceivePlanController.java | 10 +++ 3 files changed, 80 insertions(+), 6 deletions(-) diff --git a/klp-ui/src/api/wms/receivePlan.js b/klp-ui/src/api/wms/receivePlan.js index 48ca3419..6670214f 100644 --- a/klp-ui/src/api/wms/receivePlan.js +++ b/klp-ui/src/api/wms/receivePlan.js @@ -51,3 +51,14 @@ export function checkReceivePlan(data) { data: data }) } + +/** + * 大批量删除应收货物计划明细 + */ +export function delReceivePlanBatch(receiveIdList) { + return request({ + url: '/wms/receivePlan/batchDelete', + method: 'delete', + data: receiveIdList || [] + }) +} diff --git a/klp-ui/src/views/wms/receive/plan/index.vue b/klp-ui/src/views/wms/receive/plan/index.vue index 74da08af..e6125d10 100644 --- a/klp-ui/src/views/wms/receive/plan/index.vue +++ b/klp-ui/src/views/wms/receive/plan/index.vue @@ -101,8 +101,20 @@ 新增 + + 批量删除 + + + 清空 + + + 刷新 + - + @@ -145,7 +157,7 @@ :limit.sync="detailQueryParams.pageSize" @pagination="getDetailList" /> - + @@ -153,7 +165,7 @@ - + @@ -389,7 +401,7 @@