| | |
| | | public void exportExcel (@RequestBody PageWrap<QueryWorkorderRecordExtDTO> pageWrap, HttpServletResponse response) { |
| | | workorderRecordExtService.exportExcel(pageWrap,response); |
| | | } |
| | | @ApiOperation("导出员工绩效明细") |
| | | @PostMapping("/exportUserSalary") |
| | | public void exportUserSalary (@RequestBody PageWrap<QueryUserSalaryListDTO> pageWrap, HttpServletResponse response) { |
| | | workorderRecordExtService.exportUserSalary(pageWrap,response); |
| | | } |
| | | @ApiOperation("导出工资报表") |
| | | @PostMapping("/exportSalaryStatistics") |
| | | public void exportSalaryStatistics (@RequestBody PageWrap<QuerySalaryStatisticDTO> pageWrap, HttpServletResponse response) { |
| | | workorderRecordExtService.exportSalaryStatistics(pageWrap,response); |
| | | } |
| | | |
| | | @ApiOperation("根据ID查询") |
| | | @GetMapping("/{id}") |
| | |
| | | return ApiResponse.success(workorderRecordStandardService.choiceStockPageForWorkorder(pageWrap,getLoginUser())); |
| | | } |
| | | |
| | | |
| | | @ApiOperation("根据供需计划查询可用库存") |
| | | @PostMapping("/getStockByPlansForStandard") |
| | | public ApiResponse<PageData<WStockExtListVO>> getStockByPlansForStandard (@RequestBody PageWrap<QueryWStockDto> pageWrap) { |
| | | return ApiResponse.success(workorderRecordStandardService.choiceStockPageForPlans(pageWrap,getLoginUser())); |
| | | } |
| | | |
| | | } |