|
|
@ -112,16 +112,11 @@ public class Levy02Controller extends ApplicationController {
|
|
|
|
if (req.getCallPurpose().equals("create") && !rductInfo.string("RDUCT_ID").equals("")) {
|
|
|
|
if (req.getCallPurpose().equals("create") && !rductInfo.string("RDUCT_ID").equals("")) {
|
|
|
|
ModelAndView mav = new ModelAndView("jsonView");
|
|
|
|
ModelAndView mav = new ModelAndView("jsonView");
|
|
|
|
|
|
|
|
|
|
|
|
return mav
|
|
|
|
return mav.addObject("rtnMsg", "이미 등록된 과태료 감경 정보가 있습니다.");
|
|
|
|
.addObject("rtnScs", false)
|
|
|
|
|
|
|
|
.addObject("rtnMsg", "이미 등록된 과태료 감경 정보가 있습니다.")
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
} else if (req.getCallPurpose().equals("create") && rductInfo.string("RTPYR_ID").equals("")) {
|
|
|
|
} else if (req.getCallPurpose().equals("create") && rductInfo.string("RTPYR_ID").equals("")) {
|
|
|
|
ModelAndView mav = new ModelAndView("jsonView");
|
|
|
|
ModelAndView mav = new ModelAndView("jsonView");
|
|
|
|
|
|
|
|
|
|
|
|
return mav
|
|
|
|
return mav.addObject("rtnMsg", "납부자 정보가 없습니다.");
|
|
|
|
.addObject("rtnScs", false)
|
|
|
|
|
|
|
|
.addObject("rtnMsg", "납부자 정보가 없습니다.");
|
|
|
|
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
boolean json = jsonResponse();
|
|
|
|
boolean json = jsonResponse();
|
|
|
|
|
|
|
|
|
|
|
@ -131,7 +126,6 @@ public class Levy02Controller extends ApplicationController {
|
|
|
|
Map<String, List<CommonCode>> commonCodes = getCodesOf("FIM019");
|
|
|
|
Map<String, List<CommonCode>> commonCodes = getCodesOf("FIM019");
|
|
|
|
|
|
|
|
|
|
|
|
return mav
|
|
|
|
return mav
|
|
|
|
.addObject("rtnScs", true)
|
|
|
|
|
|
|
|
.addObject("pageName", "levy02020")
|
|
|
|
.addObject("pageName", "levy02020")
|
|
|
|
.addObject("FIM019List", commonCodes.get("FIM019")) // 감경 사유 구분 코드(RDUCT_RSN_CD)
|
|
|
|
.addObject("FIM019List", commonCodes.get("FIM019")) // 감경 사유 구분 코드(RDUCT_RSN_CD)
|
|
|
|
.addObject("rductInfo", json ? rductInfo : toJson(rductInfo))
|
|
|
|
.addObject("rductInfo", json ? rductInfo : toJson(rductInfo))
|
|
|
|