|
|
|
@ -120,7 +120,7 @@ public class Crdn01Controller extends ApplicationController {
|
|
|
|
|
public ModelAndView getCivilComplaintReceiptDataList(CrdnQuery req) {
|
|
|
|
|
req.setGridType("receiptData");
|
|
|
|
|
setFetchSize(req);
|
|
|
|
|
return setCollectionInfo(new ModelAndView("jsonView"), crdnService.getCrackdownList(req),"");
|
|
|
|
|
return setCollectionInfo(new ModelAndView("jsonView"), crdnCvlcptService.getCrackdownList(req),"");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**민원접수 초기자료 상세조회 팝업 화면을 연다.<br />
|
|
|
|
@ -193,7 +193,7 @@ public class Crdn01Controller extends ApplicationController {
|
|
|
|
|
public ModelAndView selectCivilComplaintAnswerTargetDataList(CrdnQuery req) {
|
|
|
|
|
req.setGridType("answerTargetData");
|
|
|
|
|
setFetchSize(req);
|
|
|
|
|
return setCollectionInfo(new ModelAndView("jsonView"), crdnService.getCrackdownList(req), "");
|
|
|
|
|
return setCollectionInfo(new ModelAndView("jsonView"), crdnCvlcptService.getCrackdownList(req), "");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**민원자료 목록을 조회한다.<br />
|
|
|
|
@ -210,7 +210,7 @@ public class Crdn01Controller extends ApplicationController {
|
|
|
|
|
@RequestMapping(name="민원자료 목록", value="/040/list.do")
|
|
|
|
|
public ModelAndView getCivilComplaintList(CrdnQuery req) {
|
|
|
|
|
setFetchSize(req);
|
|
|
|
|
return setCollectionInfo(new ModelAndView("jsonView"),crdnService.getCrackdownList(req),"");
|
|
|
|
|
return setCollectionInfo(new ModelAndView("jsonView"),crdnCvlcptService.getCrackdownList(req),"");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**지정한 민원자료를 제거한다.
|
|
|
|
@ -230,7 +230,7 @@ public class Crdn01Controller extends ApplicationController {
|
|
|
|
|
.addObject("saved", saved);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**지정한 민원자료의 부과요청을 수용(저장)한다.
|
|
|
|
|
/**지정한 민원자료를 수정한다.
|
|
|
|
|
* @param crdnId 단속대장 아이디
|
|
|
|
|
* @return jsonView
|
|
|
|
|
* <pre><code> {
|
|
|
|
@ -238,8 +238,8 @@ public class Crdn01Controller extends ApplicationController {
|
|
|
|
|
* "saved": 저장되었으면 true, 그렇지 않으면 false
|
|
|
|
|
* }</code></pre>
|
|
|
|
|
*/
|
|
|
|
|
@RequestMapping(name="민원내용 수용", value="/020/save.do")
|
|
|
|
|
public ModelAndView acceptCivilComplaint(HttpServletRequest req, Crdn crdn, MultipartFile[] newFileList, MultipartFile[] modifyFileList) {
|
|
|
|
|
@RequestMapping(name="민원 정보 수정", value="/020/save.do")
|
|
|
|
|
public ModelAndView saveCivilComplaintProcess(HttpServletRequest req, Crdn crdn, MultipartFile[] newFileList, MultipartFile[] modifyFileList) {
|
|
|
|
|
|
|
|
|
|
boolean saved = false;
|
|
|
|
|
|
|
|
|
|