| | |
| | | return this.setSuccessMessage(resJsonData); |
| | | } |
| | | |
| | | // 워크플로우에 속해있는 부서 목록 조회 |
| | | @RequestMapping(value = "/department/findWorkflowDepartment", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) |
| | | public |
| | | @ResponseBody |
| | | Map<String, Object> findWorkflowDepartment(@RequestBody Map<String, Map<String, Object>> params) { |
| | | Map<String, Object> resJsonData = new HashMap<>(); |
| | | |
| | | this.departmentService.findWorkflowDepartment(resJsonData, DepartmentCondition.make(params.get(Constants.REQ_KEY_CONTENT))); |
| | | |
| | | return this.setSuccessMessage(resJsonData); |
| | | } |
| | | |
| | | // 부서 엑셀 다운로드 |
| | | @RequestMapping(value = "/department/downloadExcel", method = RequestMethod.POST) |