|
|
|
|
@ -43,7 +43,7 @@ public class InputAfterController {
|
|
|
|
|
@RequestMapping(value="/cfs/input/findAfterPay.do", method=RequestMethod.POST)
|
|
|
|
|
public @ResponseBody Map<String, Object> findAfterPay(@RequestBody ParamBean<InputAfterVO> param, HttpServletRequest request) {
|
|
|
|
|
InputAfterVO InputAfterVO = param.getParam();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Result result = new Result();
|
|
|
|
|
List<InputAfterVO> statList = null;
|
|
|
|
|
try {
|
|
|
|
|
@ -336,7 +336,7 @@ public class InputAfterController {
|
|
|
|
|
*
|
|
|
|
|
* 입력관리>사전등록 처리 내역
|
|
|
|
|
* @author CFS02
|
|
|
|
|
* @task [IP024M01] 조회
|
|
|
|
|
* @task [IP024M01] 조회
|
|
|
|
|
* @param param
|
|
|
|
|
* @return
|
|
|
|
|
* 수정내역
|
|
|
|
|
@ -363,7 +363,7 @@ public class InputAfterController {
|
|
|
|
|
*
|
|
|
|
|
* 입력관리>사전등록 처리 내역
|
|
|
|
|
* @author CFS02
|
|
|
|
|
* @task [IP024M01] 수정
|
|
|
|
|
* @task [IP024M01] 미납처리
|
|
|
|
|
* @param param
|
|
|
|
|
* @return
|
|
|
|
|
* 수정내역
|
|
|
|
|
@ -371,8 +371,10 @@ public class InputAfterController {
|
|
|
|
|
@RequestMapping(value="/cfs/input/updatePrpKbnRepay.do", method=RequestMethod.POST)
|
|
|
|
|
public @ResponseBody Map<String, Object> updatePrpKbnRepay(@RequestBody ParamBean<InputAfterVO> param, HttpServletRequest request) {
|
|
|
|
|
InputAfterVO InputAfterVO = param.getParam();
|
|
|
|
|
|
|
|
|
|
Result result = new Result();
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
|
|
//정산 데이터 조회
|
|
|
|
|
List<InputAfterVO> statList = inputAfterService.findPrpAdjustRepay(InputAfterVO);
|
|
|
|
|
|
|
|
|
|
@ -408,6 +410,7 @@ public class InputAfterController {
|
|
|
|
|
//미납 데이터(default_fare_read_info_damo) 추가
|
|
|
|
|
inputAfterService.insertDefaultRepay(InputAfterVO);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
result.setMsg(Result.STATUS_SUCESS, "수정되었습니다.");
|
|
|
|
|
}catch(RuntimeException e) {
|
|
|
|
|
logger.info("문제", e);
|
|
|
|
|
|