|
|
|
@ -65,7 +65,6 @@ public class Epst02Controller extends ApplicationController {
|
|
|
|
|
, getEpostReceiptRegistrationDetailList = "/040/list.do" // 전자우편 발송 상세 정보 조회
|
|
|
|
|
, epostReceiptResultMain = "/050/main.do" // 전자우편 접수 결과 메인
|
|
|
|
|
, getEpostReceiptResultList = "/050/list.do" // 전자우편 접수 결과 목록 조회
|
|
|
|
|
, getEpostReceiptResultSumAmount = "/050/sumAmt.do" // 전자우편 접수 결과 합계 금액 조회
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -505,7 +504,6 @@ public class Epst02Controller extends ApplicationController {
|
|
|
|
|
.addObject("conOrg", deptInfo.string("EGP_CON_ORG")) // E그린 외부기관구분코드
|
|
|
|
|
.addObject("EGP002List", commonCodes.get("EGP002")) // 취급 구분(DIV_KB)
|
|
|
|
|
.addObject("FIM082List", commonCodes.get("FIM082")) // 작업 코드 3(JOB_CD)
|
|
|
|
|
.addObject("pageDataName2", "SumAmt") // dataset3 합계 정보
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -525,7 +523,13 @@ public class Epst02Controller extends ApplicationController {
|
|
|
|
|
public ModelAndView getEpostReceiptResultList(EpostQuery req) {
|
|
|
|
|
if (!"xls".equals(req.getDownload())) {
|
|
|
|
|
List<?> result = epostRcptRsltService.getEpostRcptRsltList(setFetchSize(req));
|
|
|
|
|
return setPagingInfo(new ModelAndView("jsonView"), result, "");
|
|
|
|
|
ModelAndView mav = setPagingInfo(new ModelAndView("jsonView"), result, "");
|
|
|
|
|
|
|
|
|
|
// 합계 금액 정보
|
|
|
|
|
List<DataObject> sumAmt = epostRcptRsltService.getEpostRcptRsltSum(req);
|
|
|
|
|
mav.addObject("sumAmt", sumAmt);
|
|
|
|
|
|
|
|
|
|
return mav;
|
|
|
|
|
} else {
|
|
|
|
|
// 현재 날짜 구하기
|
|
|
|
|
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMddHHmmss");
|
|
|
|
@ -567,21 +571,4 @@ public class Epst02Controller extends ApplicationController {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**전자우편 접수 결과의 합계 건수, 금액을 조회하여 반환한다.
|
|
|
|
|
* @param req 전자우편 접수 결과 조회 조건
|
|
|
|
|
* @return 합계 건수, 금액 정보
|
|
|
|
|
* <pre><code> {
|
|
|
|
|
* "crdnPayer": {...}
|
|
|
|
|
* }</code></pre>
|
|
|
|
|
*/
|
|
|
|
|
@Task
|
|
|
|
|
@RequestMapping(name="전자우편 접수 결과 합계 금액 조회", value=METHOD_URL.getEpostReceiptResultSumAmount)
|
|
|
|
|
public ModelAndView getEpostReceiptResultSumAmount(EpostQuery req) {
|
|
|
|
|
List<DataObject> sumAmt = epostRcptRsltService.getEpostRcptRsltSum(req);
|
|
|
|
|
|
|
|
|
|
return new ModelAndView("jsonView")
|
|
|
|
|
.addObject("sumAmt", sumAmt) // 합계 정보
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|