feat(wms): 新增应收货物计划批量删除和清空功能,优化表格配置
1. 后端添加批量删除应收计划接口 2. 前端新增批量删除、清空按钮和多选功能 3. 优化表格高度和字段文案,调整分页查询大小
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package com.klp.controller;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Arrays;
|
||||
|
||||
@@ -87,6 +88,15 @@ public class WmsReceivePlanController extends BaseController {
|
||||
return toAjax(iWmsReceivePlanService.updateByBo(bo));
|
||||
}
|
||||
|
||||
/**
|
||||
* 大批量删除应收货物计划
|
||||
*/
|
||||
@Log(title = "应收货物计划", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/batchDelete")
|
||||
public R<Void> remove(@RequestBody ArrayList<Long> receiveIds) {
|
||||
return toAjax(iWmsReceivePlanService.deleteWithValidByIds(receiveIds, true));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除应收货物计划
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user