diff --git a/src/main/java/kcc/kccadr/adjstExp/web/AdjstExpController.java b/src/main/java/kcc/kccadr/adjstExp/web/AdjstExpController.java index 9ef42a4f..c3e70fe7 100644 --- a/src/main/java/kcc/kccadr/adjstExp/web/AdjstExpController.java +++ b/src/main/java/kcc/kccadr/adjstExp/web/AdjstExpController.java @@ -1,5 +1,6 @@ package kcc.kccadr.adjstExp.web; +import java.time.LocalDateTime; import java.util.ArrayList; import java.util.List; @@ -11,6 +12,8 @@ import org.apache.commons.collections.CollectionUtils; import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; import org.springframework.web.bind.annotation.ModelAttribute; @@ -21,18 +24,14 @@ import org.springframework.web.multipart.MultipartHttpServletRequest; import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.mvc.support.RedirectAttributes; -import egovframework.rte.fdl.security.userdetails.util.EgovUserDetailsHelper; -import kcc.com.cmm.LoginVO; import kcc.com.cmm.service.EgovFileMngService; -import kcc.com.cmm.service.FileVO; -import kcc.com.cmm.util.StringUtil; -import kcc.com.utl.fcc.service.EgovStringUtil; +import kcc.kccadr.accdnt.ai.service.AdjstIncidentVO; import kcc.kccadr.accdnt.crtfc.service.CrtfcService; +import kcc.kccadr.adjst.service.AdjstReqService; import kcc.kccadr.adjst.service.AdjstReqVO; import kcc.kccadr.adjstExp.service.AdjstExpService; import kcc.kccadr.cmm.KccadrConstants; -import kcc.let.uat.uia.service.SsoLoginVO; -import kcc.let.uss.umt.service.MberManageVO; +import kcc.kccadr.cmm.RestResponse; import kcc.let.utl.fcc.service.EgovCryptoUtil; /** @@ -74,9 +73,22 @@ public class AdjstExpController { @Resource(name = "EgovFileMngService") private EgovFileMngService fileService; + // 조정신청 서비스단 + @Resource(name = "AdjstReqService") + private AdjstReqService adjstReqService; + private static final Logger LOGGER = LoggerFactory.getLogger(AdjstExpController.class); + /** + * 체험하기 메인페이지 + */ + @RequestMapping("/web/kccadr/adjstExp/adjstExpMainPage.do") + public String adjstExpMainPage(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model) throws Exception { + + + return "/web/kccadr/adjstExp/mainExpPage"; + } /** * 조정신청 구분선택 - 안내화면 */ @@ -86,6 +98,7 @@ public class AdjstExpController { adjstReqVO.setStep(KccadrConstants.STEP6); +<<<<<<< HEAD // 오라클 연동 테스트 > 여현준 // sMSOracleService.selectOracleTest(); // AdjReqMgrVO adjReqMgrVO = new AdjReqMgrVO(); @@ -99,6 +112,11 @@ public class AdjstExpController { model.addAttribute("crtfcSn", "N"); +======= + String crtfcSn = "N"; + + model.addAttribute("crtfcSn", crtfcSn); +>>>>>>> refs/heads/anjooyoung return "/web/kccadr/adjstExp/adjstReqRegistInformation"; } @@ -110,18 +128,9 @@ public class AdjstExpController { @RequestMapping("/web/kccadr/adjstExp/adjstReqRegistStep1.do") public String adjstReqRegistStep1(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model, RedirectAttributes redirectAttributes, HttpSession session) throws Exception { - //로그인 권한정보 불러오기 - LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; - String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getUniqId()); - - SsoLoginVO ssoLoginVO = (SsoLoginVO)session.getAttribute("SSOLoginVO"); - model.addAttribute("ssoLoginVO", ssoLoginVO); // 작성단계 셋팅 adjstReqVO.setStep(KccadrConstants.STEP7); - adjstReqVO.setFrstRegisterId(userId); // 최초등록자 - adjstReqVO.setLastUpdusrId(userId); // 마지막 수정자 - adjstReqVO.setEsntlId(userId); // 사용자 키 // 신청인 , 대리인 목록 초기화 List list = null; @@ -174,19 +183,12 @@ public class AdjstExpController { ModelAndView modelAndView = new ModelAndView(); modelAndView.setViewName("jsonView"); - //로그인 권한정보 불러오기 - LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; - String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getUniqId()); - - adjstReqVO.setFrstRegisterId(userId); - adjstReqVO.setLastUpdusrId(userId); - - int rs = adjstExpService.insertAdjsReqStep1Save(adjstReqVO); + //int rs = adjstExpService.insertAdjsReqStep1Save(adjstReqVO); LOGGER.info("adjstReqVO.getAdrSeq() : [{}]", adjstReqVO.getAdrSeq()); modelAndView.addObject("result", KccadrConstants.SUCCESS); // 성공메세지 modelAndView.addObject("rsVO", adjstReqVO); // 성공데이터 - modelAndView.addObject("rs", rs); // 삽입 개수 + //modelAndView.addObject("rs", rs); // 삽입 개수 return modelAndView; } @@ -195,18 +197,11 @@ public class AdjstExpController { ModelAndView modelAndView = new ModelAndView(); modelAndView.setViewName("jsonView"); - //로그인 권한정보 불러오기 - LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; - String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getUniqId()); - - adjstReqVO.setFrstRegisterId(userId); - adjstReqVO.setLastUpdusrId(userId); - - int rs = adjstExpService.updatedjsReqStep1Save(adjstReqVO); + //int rs = adjstExpService.updatedjsReqStep1Save(adjstReqVO); modelAndView.addObject("result", KccadrConstants.SUCCESS); // 성공메세지 modelAndView.addObject("rsVO", adjstReqVO); // 성공데이터 - modelAndView.addObject("rs", rs); // 삽입 개수 + //modelAndView.addObject("rs", rs); // 삽입 개수 return modelAndView; } @@ -215,22 +210,10 @@ public class AdjstExpController { * */ @RequestMapping("/web/kccadr/adjstExp/adjstReqRegistStep2.do") public String adjstReqRegistStep2(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model) throws Exception { - LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; - String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getUniqId()); - - if (loginVO == null) { - - model.addAttribute("msg", "로그인 해주세요."); - return "redirect:/web/user/login/ssoLogin.do"; - } - LOGGER.info("adjstReqRegistStep2 getAdrSeq() : [{}]", adjstReqVO.getAdrSeq()); // 작성단계 셋팅 adjstReqVO.setStep(KccadrConstants.STEP8); - adjstReqVO.setFrstRegisterId(userId); // 최초등록자 - adjstReqVO.setLastUpdusrId(userId); // 마지막 수정자 - adjstReqVO.setEsntlId(userId); // 사용자 키 - + /* AdjstReqVO adjMsrMaster = adjstExpService.selectAdjsMgrMasterByUniqId(adjstReqVO); // 피신청인 목록조회.. String rpplTyArr[] = {KccadrConstants.ADR_RPPL_TY_RES}; @@ -242,6 +225,8 @@ public class AdjstExpController { model.addAttribute("editInfo", adjstExpService.checkAdjsReqEditStatus(adjstReqVO)); model.addAttribute("master", adjMsrMaster); model.addAttribute("list", list); + + */ return "/web/kccadr/adjstExp/adjstReqRegistStep2"; } @@ -250,14 +235,7 @@ public class AdjstExpController { ModelAndView modelAndView = new ModelAndView(); modelAndView.setViewName("jsonView"); - //로그인 권한정보 불러오기 - LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; - String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getUniqId()); - - adjstReqVO.setFrstRegisterId(userId); - adjstReqVO.setLastUpdusrId(userId); - - int rs = adjstExpService.insertAdjsReqStep2Save(adjstReqVO); + //int rs = adjstExpService.insertAdjsReqStep2Save(adjstReqVO); modelAndView.addObject("result", KccadrConstants.SUCCESS); // 성공메세지 modelAndView.addObject("rsVO", adjstReqVO); // 성공데이터 @@ -271,23 +249,9 @@ public class AdjstExpController { * */ @RequestMapping("/web/kccadr/adjstExp/adjstReqRegistStep3.do") public String adjstReqRegistStep3(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model, RedirectAttributes redirectAttributes) throws Exception { - LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; - String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getUniqId()); // 작성단계 셋팅 adjstReqVO.setStep(KccadrConstants.STEP9); - adjstReqVO.setFrstRegisterId(userId); // 최초등록자 - adjstReqVO.setLastUpdusrId(userId); // 마지막 수정자 - adjstReqVO.setEsntlId(userId); // 사용자 키 - AdjstReqVO adjMsrMaster = adjstExpService.selectAdjsMgrMasterByUniqId(adjstReqVO); - if(StringUtils.isNotBlank(adjMsrMaster.getAtchFileId())){ - FileVO fileVO = new FileVO(); - fileVO.setAtchFileId(adjMsrMaster.getAtchFileId()); - List fileList = fileService.selectFileInfs(fileVO); - model.addAttribute("fileList", fileList); - } - model.addAttribute("editInfo", adjstExpService.checkAdjsReqEditStatus(adjstReqVO)); - model.addAttribute("master", adjMsrMaster); return "/web/kccadr/adjstExp/adjstReqRegistStep3"; } @@ -299,48 +263,59 @@ public class AdjstExpController { ModelAndView modelAndView = new ModelAndView(); modelAndView.setViewName("jsonView"); - //로그인 권한정보 불러오기 - LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; - String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getUniqId()); - adjstReqVO.setFrstRegisterId(userId); - adjstReqVO.setLastUpdusrId(userId); + /* int rs = adjstExpService.updateMasterInfo(adjstReqVO , multiRequest , "" ); + */ modelAndView.addObject("result", KccadrConstants.SUCCESS); // 성공메세지 modelAndView.addObject("rsVO", adjstReqVO); // 성공메세지 return modelAndView; } - - - - - - - - - - - - - - - - - - - - - - - - - + /** + * 조정신청 구분선택 - 안내화면 + */ + @RequestMapping(value= {"/web/kccadr/adjstExp/popup/adjstReqOpenExamplePop.do"}) + public String adjstReqOpenExamplePop(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model, HttpServletRequest request) throws Exception { + model.addAttribute("ccTy", adjstReqVO.getCcTy()); + model.addAttribute("exmpCd", adjstReqVO.getExmpCd()); + + return "/web/kccadr/adjstExp/popup/adjstReqOpenExamplePop"; + } + /** + * 체험하기 조정사건 목록 + */ + @RequestMapping("/web/kccadr/adjstExp/adjstIncidentList.do") + public String adjstExpList(@ModelAttribute("adjstIncidentVO") AdjstIncidentVO adjstIncidentVO, ModelMap model) throws Exception { + + return "/web/kccadr/adjstExp/adjstIncidentList"; + } + /*** + * 예문 팝업 + * + * @param adjstReqVO + * @return + * @throws Exception + */ + @RequestMapping("/web/kccadr/adjstExp/popup/adjstReqOpenExamplePopCn.do") + public ResponseEntity adjstReqOpenExamplePopCn(@RequestBody AdjstReqVO adjstReqVO) throws Exception { + System.out.println("adjstReqVO.getExmpCd() :: "+ adjstReqVO.getExmpCd()); + System.out.println("adjstReqVO.getExmpCcTy() :: "+ adjstReqVO.getExmpCcTy()); + AdjstReqVO expm = adjstReqService.selectAdjstReqOpenExamplePopCn(adjstReqVO); + +// if (expm != null && StringUtils.isNotBlank(expm.getAtchFileId())) { +// FileVO fileVO = new FileVO(); +// fileVO.setAtchFileId(expm.getAtchFileId()); +// List fileList = fileService.selectFileInfs(fileVO); +// model.addAttribute("fileList", fileList); +// } + return ResponseEntity.ok().body(new RestResponse(HttpStatus.OK, expm.getExmpCn(), LocalDateTime.now())); + } diff --git a/src/main/java/kcc/kccadr/adjstExp/web/AdjstExpDetailController.java b/src/main/java/kcc/kccadr/adjstExp/web/AdjstExpDetailController.java index 8f2dab17..ea7ff1db 100644 --- a/src/main/java/kcc/kccadr/adjstExp/web/AdjstExpDetailController.java +++ b/src/main/java/kcc/kccadr/adjstExp/web/AdjstExpDetailController.java @@ -1,13 +1,9 @@ package kcc.kccadr.adjstExp.web; -import java.util.ArrayList; import java.util.List; -import java.util.Optional; -import java.util.stream.Collectors; import javax.annotation.Resource; import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpSession; import org.apache.commons.collections.CollectionUtils; import org.apache.commons.lang3.StringUtils; @@ -16,31 +12,17 @@ import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; import org.springframework.web.bind.annotation.ModelAttribute; -import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.multipart.MultipartHttpServletRequest; -import org.springframework.web.servlet.ModelAndView; -import org.springframework.web.servlet.mvc.support.RedirectAttributes; -import egovframework.rte.fdl.security.userdetails.util.EgovUserDetailsHelper; -import kcc.com.cmm.LoginVO; import kcc.com.cmm.service.EgovFileMngService; -import kcc.com.cmm.service.FileVO; import kcc.com.cmm.util.StringUtil; -import kcc.com.utl.fcc.service.EgovStringUtil; import kcc.kccadr.accdnt.acd.service.AdjstChangeDateVO; import kcc.kccadr.accdnt.adr.service.AdjstDeputyReqVO; import kcc.kccadr.accdnt.ai.service.AdjstIncidentVO; import kcc.kccadr.accdnt.ars.service.AdjstReqStatusVO; import kcc.kccadr.accdnt.crtfc.service.CrtfcService; import kcc.kccadr.adjclsmgr.service.AdjClsMgrVO; -import kcc.kccadr.adjst.service.AdjstReqService; -import kcc.kccadr.adjst.service.AdjstReqVO; import kcc.kccadr.adjstExp.service.AdjstExpService; -import kcc.kccadr.cmm.KccadrConstants; -import kcc.let.uat.uia.service.SsoLoginVO; -import kcc.let.uss.umt.service.MberManageVO; import kcc.let.utl.fcc.service.EgovCryptoUtil; /** @@ -90,7 +72,15 @@ public class AdjstExpDetailController { * 조정진행 상세 화면 */ @RequestMapping("/web/kccadr/adjstExpDetail/adjstReqStatusDetail.do") - public String adjstReqStatusDetail(@ModelAttribute("adjstReqStatusVO") AdjstReqStatusVO adjstReqStatusVO, ModelMap model) throws Exception { + public String adjstReqStatusDetail(@ModelAttribute("adjstReqStatusVO") AdjstReqStatusVO adjstReqStatusVO, + ModelMap model, + HttpServletRequest request) throws Exception { + + + String step = request.getParameter("step"); + + model.addAttribute("step", step ); + return "/web/kccadr/adjstExpDetail/adjstReqStatusDetail"; } @@ -101,10 +91,13 @@ public class AdjstExpDetailController { public String adjstReqStatusTabDetail( @ModelAttribute("adjstReqStatusVO") AdjstReqStatusVO adjstReqStatusVO , @ModelAttribute("adjstIncidentVO") AdjstIncidentVO adjstIncidentVO - , ModelMap model) throws Exception { + , ModelMap model + , HttpServletRequest request) throws Exception { + /* + // 조정신청 관련인 조회 List list = adjstExpService.selectAdjstReqRpplInfo(adjstReqStatusVO); @@ -136,10 +129,14 @@ public class AdjstExpDetailController { decryptInfomation(resInfo, null); model.addAttribute("master" , adjstExpService.selectAdjstIncidentMaster(adjstIncidentVO)); - model.addAttribute("pageExpIndex" , StringUtils.isEmpty(adjstReqStatusVO.getPageExpIndex()) ? "2" : adjstReqStatusVO.getPageExpIndex()); model.addAttribute("reqInfo" , reqPeson); model.addAttribute("agenInfo" , agenPerson); model.addAttribute("resInfo" , resInfo); + model.addAttribute("step" , StringUtils.isEmpty(adjstReqStatusVO.getPageExpIndex()) ? "2" : adjstReqStatusVO.getPageExpIndex()); + + */ + String step = request.getParameter("step"); + return "/web/kccadr/adjstExpDetail/adjstReqStatusTabDetail"; } /** @@ -190,15 +187,15 @@ public class AdjstExpDetailController { switch (expCode) { case "01": returnUrl += "expAnsSubmit"; break; - case "02": returnUrl += "expAdjstDeputyReqCreate"; + case "02": returnUrl += "expAdjstDeputyReqCreate";//조정대리신청 break; case "03": returnUrl += "expAdjstChangeDateCreate"; model.addAttribute("adjstChangeDateVO" , new AdjstChangeDateVO()); break; - case "04": returnUrl += "expAdjstWithDrawCreate"; + case "04": returnUrl += "expAdjstWithDrawCreate";//조정취하신청 break; case "05": returnUrl += "expCorReqCreate"; // 경정신청 - model.addAttribute("list", adjstExpService.selectRpplList(adjDeputyReqVO)); // 피신청인 리스트 + //model.addAttribute("list", adjstExpService.selectRpplList(adjDeputyReqVO)); // 피신청인 리스트 break; case "06": returnUrl += "expOadDetail"; // 직권조정결정서 상세 break; diff --git a/src/main/webapp/WEB-INF/jsp/web/com/webLayout.jsp b/src/main/webapp/WEB-INF/jsp/web/com/webLayout.jsp index 4e27057b..64348d0a 100644 --- a/src/main/webapp/WEB-INF/jsp/web/com/webLayout.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/com/webLayout.jsp @@ -96,7 +96,7 @@ $(document).ready(function (){ - + diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstIncidentList.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstIncidentList.jsp new file mode 100644 index 00000000..45e13a58 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstIncidentList.jsp @@ -0,0 +1,295 @@ +<%@ page contentType="text/html; charset=utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> +<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%> +<%@ taglib prefix="un" uri="http://jakarta.apache.org/taglibs/unstandard-1.0" %> +<% + response.setHeader("Cache-Control","no-store"); + response.setHeader("Pragma","no-cache"); + response.setDateHeader("Expires",0); + if (request.getProtocol().equals("HTTP/1.1")) response.setHeader("Cache-Control", "no-cache"); +%> + + + + +조정사건 목록 + + + + + + + + + + + + + + + +" /> +" /> +" /> + + + + + +
+
+
+

[체험] 조정사건 목록

+
+ + +
+ +
+ + + + +
+
+ <%-- + + +
+
+ + +
+ ~ +
+ + +
+ +
+
+ + +
+
+ + +
+ + + --%> +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
조정사건 목록 : 번호, 접수일자, 신청인, 피신청인, 신청내용, 조정부, 기일, 조정차수, + 조정상태등의 정보제공
번호접수일자신청인피신청인신청내용조정부기일조정차수조정상태
+ 2 + + 접수일자 +

2021-11-21

+
+ 신청인 + 홍길동 + + 피신청인 + 김길동 외1명 + + 신청내용 + 미술저작물 + + 조정부 +

합의1부

+
+ 기일 +

-

+
+ 조정차수 +

1차

+
+ 조정상태 +

조정진행중

+
+ 1 + + 접수일자 +

2021-12-06

+
+ 신청인 + 박영희 + + 피신청인 + 김철수 + + 신청내용 + 어문저작물 + + 조정부 +

조정1부

+
+ 기일 +

-

+
+ 조정차수 +

1차

+
+ 조정상태 +

조정진행중

+
+
+ + + +
+ +
+ + +
+ +
+ + diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistInformation.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistInformation.jsp index 58ab9683..7f8f1dc1 100644 --- a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistInformation.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistInformation.jsp @@ -44,7 +44,7 @@ $( document ).ready(function(){ // 현재 작성단계 셋 AdjstReq.STEP = '${adjstReqVO.step}'; - alert('현재 페이지를 나가면 신청내용이 초기화 됩니다.'); + //alert('현재 페이지를 나가면 신청내용이 초기화 됩니다.'); }); //조정신청 등록화면2 // function fn_adjstReq2_regist() { diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistStep1.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistStep1.jsp index 27f78c53..7547efc6 100644 --- a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistStep1.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistStep1.jsp @@ -90,11 +90,11 @@ $( document ).ready(function(){

대리인 정보

<%--* 필수입력 항목--%> - + <%--
-
+
--%>
@@ -114,10 +114,10 @@ $( document ).ready(function(){ <%-- 등록화면 SSO정보 연동 처리 --%> - + - + @@ -143,7 +143,7 @@ $( document ).ready(function(){ @@ -152,7 +152,7 @@ $( document ).ready(function(){ @@ -162,14 +162,14 @@ $( document ).ready(function(){ @@ -223,13 +223,13 @@ $( document ).ready(function(){ <%----%> + size="15" cssClass="input_phone" placeholder="연락처 입력" maxlength="3" value="010"/> - + size="15" cssClass="input_phone" placeholder="연락처 입력" maxlength="4" value="1111"/> - + size="15" cssClass="input_phone" placeholder="연락처 입력" maxlength="4" value="2222"/> @@ -239,13 +239,13 @@ $( document ).ready(function(){ @@ -297,10 +297,10 @@ $( document ).ready(function(){ <%-- 등록화면 SSO정보 연동 처리 --%> - + - + @@ -319,10 +319,10 @@ $( document ).ready(function(){ <%-- 등록화면 SSO정보 연동 처리 --%> - + - + @@ -346,10 +346,10 @@ $( document ).ready(function(){ <%-- 등록화면 SSO정보 연동 처리 --%> - + - + @@ -367,10 +367,10 @@ $( document ).ready(function(){ <%-- 등록화면 SSO정보 연동 처리 --%> - + - + @@ -388,10 +388,10 @@ $( document ).ready(function(){ <%-- 등록화면 SSO정보 연동 처리 --%> - + - + @@ -408,10 +408,10 @@ $( document ).ready(function(){ <%-- 등록화면 SSO정보 연동 처리 --%> - + - + @@ -422,13 +422,13 @@ $( document ).ready(function(){ @@ -526,13 +526,13 @@ $( document ).ready(function(){ diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistStep2.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistStep2.jsp index c03e0eaf..9f96ffef 100644 --- a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistStep2.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistStep2.jsp @@ -77,7 +77,7 @@
- +
@@ -114,7 +114,7 @@
@@ -127,7 +127,7 @@ @@ -138,7 +138,7 @@ @@ -147,7 +147,7 @@ @@ -159,7 +159,7 @@ @@ -170,7 +170,7 @@ @@ -180,13 +180,13 @@ @@ -254,13 +254,13 @@ @@ -314,7 +314,7 @@ @@ -338,7 +338,7 @@ @@ -347,7 +347,7 @@ @@ -371,7 +371,7 @@ @@ -481,13 +481,15 @@
-
+
+
- +
+
diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistStep3.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistStep3.jsp index 60216049..cd41d533 100644 --- a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistStep3.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/adjstReqRegistStep3.jsp @@ -73,24 +73,12 @@ $( document ).ready(function(){ } } }); + $(".btn_no_add_file").on("click", function(){ + alert("체험하기 기능 입니다."); + }); }); -//미리보기 팝업 -function fn_adjstReq_preview() { - - - // AdjstReq.step3Save(처리구분, 미리보기화면 여부,) - AdjstReq.step3Save("", 'Y', ""); - - - // AdjstReq.step3Save(처리구분, 미리보기화면 여부) - AdjstReq.step3Save("", 'Y', ""); - - - - location.reload(); -} @@ -133,7 +121,7 @@ function fn_adjstReq_preview() {
@@ -234,7 +205,7 @@ function fn_adjstReq_preview() {
- +
diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/mainExpPage.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/mainExpPage.jsp new file mode 100644 index 00000000..4ca0761b --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/mainExpPage.jsp @@ -0,0 +1,391 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + + ${popupListData.nttCn} + + + + + ${popupListData.nttCn} + + + +
+
+ + + + +
+ +
+ +
+
+
+
+
+ + +
+ +
+
+
    + +
  • '); background-repeat: no-repeat; background-position: center;">
  • +
    +
+
+ + + + +
+
+
+
+

분쟁을 신속하고 공정하게 해결해주는

+ 저작권 전자조정시스템 +
+
+
+ + + + + + +
+
+ +
+
+

조정신청 안내

+
+ +
+ + + +
+
+

조정사례

+
+ +
+
+ +
+ +
+
+ + + + +
+
+

알림판

+
+ + + +
+
+
+
1}">swiper-container pz_wrap"> + +
+
+
+ +
+
+
+ +
+ + + +
+ + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/popup/adjstReqOpenExamplePop.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/popup/adjstReqOpenExamplePop.jsp new file mode 100644 index 00000000..67e3fd97 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExp/popup/adjstReqOpenExamplePop.jsp @@ -0,0 +1,127 @@ +<%@ page contentType="text/html; charset=utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> +<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> +<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%> +<%pageContext.setAttribute("crlf", "\r\n"); %> + + + +조정신청 예문보기 + + + + + +
대리인 정보 : 대리인 이름, 본인과의 관계, 소속, 직책, 주소, 이메일, 연락처, 우편물수령지등 정보입력
- +
- +
- +
- + - +
@@ -192,9 +192,9 @@ $( document ).ready(function(){ - @ + @ - +
- +
- + - +
- +
- + - +
@@ -452,10 +452,10 @@ $( document ).ready(function(){ - @ - + @@ -482,15 +482,15 @@ $( document ).ready(function(){ + size="15" cssClass="input_phone" placeholder="연락처 입력" maxlength="3" value="010"/> <%----%> - + maxlength="4" cssClass="input_phone" value="1111" onkeyup="onlyNumber(this)" placeholder="연락처 입력"/> - -
- +
- + - +
- +
- +
- +
- +
- +
- +
- + - +
@@ -199,9 +199,9 @@
- @ + @ - + @@ -216,11 +216,11 @@ - + - - + - - +
- +
- + - +
- +
- +
-
- +

필수입력 항목*

신청취지

- +
@@ -144,7 +132,7 @@ function fn_adjstReq_preview() {

필수입력 항목*

신청원인

- +
@@ -158,9 +146,9 @@ function fn_adjstReq_preview() { - - -
+ + + -
+
@@ -200,31 +188,14 @@ function fn_adjstReq_preview() { - + - + - - - - - - - - - - + +
첨부파일 리스트 : 파일명, 종류, 크기, 삭제
파일 명
파일 명 종류 크기 삭제
- 파일 - - - ">. - - "> - - -
파일 이미지[체험]조정신청문서.xlsx.xlsx15.11 KB
+ + + + + + + + + + + + + + + +
+ + +
+ + + + diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/adjstReqStatusDetail.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/adjstReqStatusDetail.jsp index 02ce706e..3321f65e 100644 --- a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/adjstReqStatusDetail.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/adjstReqStatusDetail.jsp @@ -30,6 +30,7 @@ } , function(res, status, xhr){ console.log(status); + $(".step0"+${step}).addClass("active"); }); } function getPageUrl(idx){ @@ -49,7 +50,6 @@ function fn_egov_downFile(atchFileId, fileSn){ window.open(""); } - diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/adjstReqStatusTabDetail.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/adjstReqStatusTabDetail.jsp index 77a9f17e..c36e3bd2 100644 --- a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/adjstReqStatusTabDetail.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/adjstReqStatusTabDetail.jsp @@ -12,7 +12,6 @@ 조정진행 + @@ -70,6 +71,11 @@ //변경 기일 노출 $("div.sel_date").css("display",""); + + $(".btn_no_add_file").on("click", function(){ + alert("체험하기 기능 입니다."); + }); + }); @@ -280,13 +286,13 @@

신청인

-

+

홍길동

피신청인

-

+

김철수

@@ -321,7 +327,8 @@ --> - + + <%-- --%> @@ -334,7 +341,7 @@
- +
- +
@@ -356,7 +363,7 @@

연락처

- 핸드폰 앞자리 입력 - -핸드폰 가운데자리 입력 - -핸드폰 마지막자리 입력 @@ -385,7 +392,7 @@

휴대전화

- 핸드폰 앞자리 입력 - -핸드폰 가운데자리 입력 - -핸드폰 마지막자리 입력 - -

필수입력 항목*

-

첨부서류

-

(신분증 첨부 필수)

- - - - - - - -
- - - - - - - - - - - - - - - - - - - - -
첨부파일 추가 리스트 : 파일명, 종류, 크기, 삭제
파일 명종류크기삭제
-

첨부하실 파일을 마우스로 끌어서 넣어주세요.

-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
첨부파일 추가 리스트 : 파일명, 종류, 크기, 삭제
파일 명종류크기삭제
- ${fileList.orignlFileNm} - - "> - - "> - - -
-
- - + + +

첨부파일

+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
첨부파일 리스트 : 파일명, 종류, 크기, 삭제
파일 명종류크기삭제
파일 이미지[체험]조정대리신청서류.xlsx.xlsx15.11 KB
+
+ + diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expAdjstDeputyReqCreate.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expAdjstDeputyReqCreate.jsp index a03a1474..be1985f1 100644 --- a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expAdjstDeputyReqCreate.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expAdjstDeputyReqCreate.jsp @@ -46,6 +46,10 @@ $(".btn_add_file").on('click', function(){ $("#file_temp").click(); }); + + $(".btn_no_add_file").on("click", function(){ + alert("체험하기 기능 입니다."); + }); }); @@ -260,13 +264,13 @@

신청인

-

+

홍길동

피신청인

-

+

김철수

@@ -293,14 +297,14 @@

이름

- +

필수입력 항목*

생년월일

- 생년월일 입력 @@ -312,13 +316,13 @@ - +
- + - +
@@ -330,7 +334,7 @@ - @@ -340,7 +344,7 @@ - @@ -364,8 +368,8 @@
- checked > - + + checked > checked> @@ -374,83 +378,66 @@ - -

필수입력 항목*

-

첨부서류

- - - - - - -
- - - - - - - - - - - - - - - - - - - - -
첨부파일 리스트 : 파일명, 종류, 크기, 삭제
파일 명종류크기삭제
-

첨부하실 파일을 마우스로 끌어서 넣어주세요.

-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - -
첨부파일 리스트 : 파일명, 종류, 크기, 삭제
파일 명종류크기삭제
- ${fileList.orignlFileNm} - - "> - - "> - - -
-
- - + + +

첨부파일

+ + + + + + +
+ + + + + + + + + + + + + + + + + + +
첨부파일 리스트 : 파일명, 종류, 크기, 삭제
파일 명종류크기삭제
파일 이미지[체험]조정대리신청서류.xlsx.xlsx15.11 KB
+
+ +

필수입력 항목*

diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expAdjstWithDrawCreate.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expAdjstWithDrawCreate.jsp index c3c4b37a..43a60a61 100644 --- a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expAdjstWithDrawCreate.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expAdjstWithDrawCreate.jsp @@ -226,13 +226,13 @@

신청인

-

+

홍길동

피신청인

-

+

김철수

@@ -256,7 +256,7 @@

취하사유

- + diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expAnsSubmit.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expAnsSubmit.jsp index 1157d884..9176eb80 100644 --- a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expAnsSubmit.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expAnsSubmit.jsp @@ -21,8 +21,11 @@ $(document).ready(function(){ // $(':button').attr("disabled"); // $(':input').attr("disabled"); - + $(".btn_no_add_file").on("click", function(){ + alert("체험하기 기능 입니다."); + }); }); + $(function() { $('#filebutton').click(function(e) { @@ -80,6 +83,7 @@ $(document).ready(function(){ //location.href=""; fncGoList(); } + @@ -192,11 +196,10 @@ $(document).ready(function(){

필수입력 항목*

답변내용

- - + @@ -216,19 +219,16 @@ $(document).ready(function(){ -

필수입력 항목*

-

첨부서류

+ +

첨부파일

- - - - - - -

* 첨부파일을 등록해 주세요. (최대3개)

-
+ + + + + -
+
- + @@ -267,41 +263,17 @@ $(document).ready(function(){ - - - - - - + + + + + + - - - - - - - - - - - + +
첨부파일 추가 리스트 : 파일명, 종류, 크기, 삭제첨부파일 리스트 : 파일명, 종류, 크기, 삭제
파일 명종류크기삭제
파일 명종류크기삭제
- - - - "> - - - - "> - - - - -
파일 이미지[체험]답변서.xlsx.xlsx15.11 KB
diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expCorReqCreate.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expCorReqCreate.jsp index 39a73e2d..f405eb13 100644 --- a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expCorReqCreate.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjstExpDetail/expCorReqCreate.jsp @@ -29,6 +29,8 @@ function fncReg() { + alert("체험하기 기능 입니다."); + return; if (validation()) { if (confirm("경정청구를 등록 하시겠습니까?")) { @@ -248,6 +250,7 @@

경정신청 대상

+ <%--
+ --%>
-
- - - -