feat(wms): 新增报结果存储API及页面

refactor(aps): 修改导出接口为POST并调整表格高度
This commit is contained in:
砂糖
2026-03-27 13:00:58 +08:00
parent 19b48d711a
commit ab3914811a
4 changed files with 47 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ public class ApsPlanSheetController extends BaseController {
ExcelUtil.exportExcel(list, "排产单主", ApsPlanSheetVo.class, response);
}
@GetMapping("/exportAll")
@PostMapping("/exportAll")
public void export(@Validated ApsPlanSheetQueryReq req, javax.servlet.http.HttpServletResponse response) {
iApsPlanSheetService.exportExcel(req, response);
}