|
|
|
@ -159,15 +159,15 @@ public class Rent01Controller extends ApplicationController {
|
|
|
|
|
boolean json = jsonResponse();
|
|
|
|
|
ModelAndView mav = new ModelAndView(json ? "jsonView" : "fims/rent/rent01020-info");
|
|
|
|
|
|
|
|
|
|
// View(jsp)에서 사용할 공통코드를 조회
|
|
|
|
|
Map<String, List<CommonCode>> commonCodes = getCodesOf("FIM088");
|
|
|
|
|
|
|
|
|
|
// 상세 정보 조회
|
|
|
|
|
DataObject info = getUserRentEnterpriseMapping(req);
|
|
|
|
|
mav.addObject("Info", json ? info : toJson(info));
|
|
|
|
|
|
|
|
|
|
if (!json) {
|
|
|
|
|
// View(jsp)에서 사용할 공통코드를 조회
|
|
|
|
|
Map<String, List<CommonCode>> commonCodes = getCodesOf("FIM088");
|
|
|
|
|
|
|
|
|
|
mav.addObject("callPurpose", req.getCallPurpose()) // 호출 용도
|
|
|
|
|
return mav
|
|
|
|
|
.addObject("callPurpose", req.getCallPurpose()) // 호출 용도
|
|
|
|
|
.addObject("pageName", "rent01020") // jsp pageName
|
|
|
|
|
.addObject("prefixUrl", CLASS_URL) // prefixUrl
|
|
|
|
|
.addObject("FIM088List", commonCodes.get("FIM088")) // 기업 구분 코드(ENT_SE_CD)
|
|
|
|
@ -175,9 +175,6 @@ public class Rent01Controller extends ApplicationController {
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return mav;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Task("CMN")
|
|
|
|
|
@RequestMapping(name = "사용자 임대 기업 매핑 상세 정보 조회", value=METHOD_URL.getUserRentEnterpriseMapping)
|
|
|
|
|
public DataObject getUserRentEnterpriseMapping(RentQuery req) {
|
|
|
|
@ -335,26 +332,23 @@ public class Rent01Controller extends ApplicationController {
|
|
|
|
|
boolean json = jsonResponse();
|
|
|
|
|
ModelAndView mav = new ModelAndView(json ? "jsonView" : "fims/rent/rent01040-info");
|
|
|
|
|
|
|
|
|
|
// View(jsp)에서 사용할 공통코드를 조회
|
|
|
|
|
Map<String, List<CommonCode>> commonCodes = getCodesOf("FIM088");
|
|
|
|
|
|
|
|
|
|
// 수정(update)으로 호출
|
|
|
|
|
if (req.getEntId() != null) {
|
|
|
|
|
DataObject info = getRentEnterprise(req); // 상세 정보 조회
|
|
|
|
|
mav.addObject("Info", json ? info : toJson(info));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!json) {
|
|
|
|
|
// View(jsp)에서 사용할 공통코드를 조회
|
|
|
|
|
Map<String, List<CommonCode>> commonCodes = getCodesOf("FIM088");
|
|
|
|
|
|
|
|
|
|
mav.addObject("callPurpose", req.getCallPurpose()) // 호출 용도
|
|
|
|
|
return mav
|
|
|
|
|
.addObject("callPurpose", req.getCallPurpose()) // 호출 용도
|
|
|
|
|
.addObject("pageName", "rent01040") // jsp pageName
|
|
|
|
|
.addObject("prefixUrl", CLASS_URL) // prefixUrl
|
|
|
|
|
.addObject("FIM088List", commonCodes.get("FIM088")) // 기업 구분 코드(ENT_SE_CD)
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return mav;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Task("CMN")
|
|
|
|
|
@RequestMapping(name = "임대기업 대장 상세 정보 조회", value=METHOD_URL.getRentEnterprise)
|
|
|
|
|
public DataObject getRentEnterprise(RentQuery req) {
|
|
|
|
|