feat(wms): 新增应收货物计划批量删除和清空功能,优化表格配置

1. 后端添加批量删除应收计划接口
2. 前端新增批量删除、清空按钮和多选功能
3. 优化表格高度和字段文案,调整分页查询大小
This commit is contained in:
2026-05-22 13:02:53 +08:00
parent 35e4e4bbb0
commit 903c354add
3 changed files with 80 additions and 6 deletions

View File

@@ -51,3 +51,14 @@ export function checkReceivePlan(data) {
data: data
})
}
/**
* 大批量删除应收货物计划明细
*/
export function delReceivePlanBatch(receiveIdList) {
return request({
url: '/wms/receivePlan/batchDelete',
method: 'delete',
data: receiveIdList || []
})
}