계정과목 반영영
This commit is contained in:
@@ -86,6 +86,44 @@ public class ApprovalController {
|
||||
return "/ajax/ajaxResult";
|
||||
}
|
||||
|
||||
/**
|
||||
* Amaranth10 결재 상신 팝업 페이지
|
||||
* 결재라인 설정 및 문서 상신 화면
|
||||
* @param request
|
||||
* @param paramMap targetType, targetObjId, approvalTitle 등
|
||||
* @return 상신 팝업 JSP
|
||||
*/
|
||||
@RequestMapping("/approval/amaranthApprovalSubmit.do")
|
||||
public String amaranthApprovalSubmit(HttpServletRequest request, @RequestParam Map<String, Object> paramMap)throws Exception{
|
||||
return "/approval/amaranthApprovalSubmit";
|
||||
}
|
||||
|
||||
/**
|
||||
* Amaranth10 결재 문서 상신 처리 (AJAX)
|
||||
* @param request
|
||||
* @param paramMap 상신 데이터
|
||||
* @return JSON 결과
|
||||
*/
|
||||
@RequestMapping("/approval/submitAmaranthApproval.do")
|
||||
public String submitAmaranthApproval(HttpServletRequest request, @RequestParam Map<String, Object> paramMap)throws Exception{
|
||||
String jsonResult = approvalService.submitAmaranthApprovalDoc(request, paramMap);
|
||||
request.setAttribute("RESULT", jsonResult);
|
||||
return "/ajax/ajaxResult";
|
||||
}
|
||||
|
||||
/**
|
||||
* Amaranth10 사원 검색 (결재라인 사용자 검색용 AJAX)
|
||||
* @param request
|
||||
* @param paramMap
|
||||
* @return JSON 결과
|
||||
*/
|
||||
@RequestMapping("/approval/searchAmaranthEmployees.do")
|
||||
public String searchAmaranthEmployees(HttpServletRequest request, @RequestParam Map<String, Object> paramMap)throws Exception{
|
||||
String jsonResult = approvalService.searchAmaranthEmployees(request, paramMap);
|
||||
request.setAttribute("RESULT", jsonResult);
|
||||
return "/ajax/ajaxResult";
|
||||
}
|
||||
|
||||
/**
|
||||
* 결재 상신 Form
|
||||
* @param request
|
||||
|
||||
Reference in New Issue
Block a user