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 @@