refactor:조정신청 Step.3 미리보기 버튼 추가
This commit is contained in:
parent
87382b3cd6
commit
92a6da1734
@ -1551,11 +1551,10 @@ public class AdjstReqWebController {
|
||||
public String adjstReqReport(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model, RedirectAttributes redirectAttributes, HttpServletRequest req) throws Exception {
|
||||
|
||||
//로그인 권한정보 불러오기
|
||||
LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null;
|
||||
String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getUniqId());
|
||||
//System.out.println("adjstReqVO.getAdrSeq()");
|
||||
//System.out.println(adjstReqVO.getAdrSeq());
|
||||
//String userId = "123";
|
||||
// 체험하기 조정신청 3Step의 미리보기를 위함 login 체크 제거
|
||||
//
|
||||
// LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null;
|
||||
// String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getUniqId());
|
||||
|
||||
AdjstReqVO adjstMsrMasterVO = new AdjstReqVO();
|
||||
//adjstMsrMasterVO.setAdrSeq("ADR_0000000000000381");
|
||||
@ -1565,8 +1564,9 @@ public class AdjstReqWebController {
|
||||
JSONObject jsReqInfo = new JSONObject();
|
||||
JSONArray jsRespInfo = new JSONArray();
|
||||
JSONArray jsAtchFileInfo = new JSONArray();
|
||||
|
||||
if(!userId.equals("")) {
|
||||
|
||||
// 체험하기 조정신청 3Step의 미리보기를 위함 login 체크 제거
|
||||
// if(!userId.equals("")) {
|
||||
|
||||
//임시 저장중인 데이터가 있는지 확인
|
||||
//조정사건 번호 조회하기
|
||||
@ -1646,7 +1646,7 @@ public class AdjstReqWebController {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
// }
|
||||
|
||||
|
||||
JSONObject jsObjData = new JSONObject();
|
||||
|
||||
@ -104,6 +104,9 @@ function fncGoList(status) {
|
||||
linkForm.action = "<c:url value='/web/kccadr/adjstExp/adjstIncidentList.do'/>";
|
||||
linkForm.submit();
|
||||
}
|
||||
function fn_adjstReq_preview() {
|
||||
window.open("/web/kccadr/adjst/report/adjstReqReportAjax.do?adrSeq=ADR_0000000000003430");
|
||||
}
|
||||
|
||||
|
||||
</script>
|
||||
@ -239,6 +242,7 @@ function fncGoList(status) {
|
||||
<div class="btn_wrap btn_layout03">
|
||||
<div class="btn_left"><button type="button" class="btnType04 btn_move" onclick="AdjstReq.fncGoPrev();">2단계이동</button></div>
|
||||
<div class="btn_right">
|
||||
<button type="button" class="btnType06 btn_preview" onclick="fn_adjstReq_preview(); return false;" title="새창열림">미리보기</button>
|
||||
<button type="button" class="btnType01 insert temporaryBtn">임시저장</button>
|
||||
<button type="button" class="btnType02 btn_save" onClick="fncGoList(''); return false;">조정신청서 제출</button>
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user