From 36dd944b64003dd41c95bf35ea1d98a82550510d Mon Sep 17 00:00:00 2001 From: HappyITN Date: Thu, 22 Sep 2022 14:20:50 +0900 Subject: [PATCH] =?UTF-8?q?220922=20=EB=A0=88=EB=93=9C=EB=A7=88=EC=9D=B8?= =?UTF-8?q?=20#2730=20=EB=82=98=EC=9D=98=EC=82=AC=EA=B1=B4=EA=B4=80?= =?UTF-8?q?=EB=A6=AC=20>=20=EC=A1=B0=EC=A0=95=EC=82=AC=EA=B1=B4=20?= =?UTF-8?q?=EA=B8=B0=EB=A1=9D=EC=97=B4=EB=9E=8C=20=EC=8B=A0=EC=B2=AD=20?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80,=20=EC=A1=B0=EC=A0=95=EB=B2=88?= =?UTF-8?q?=ED=98=B8=20=EC=A1=B0=ED=9A=8C=20=ED=8C=9D=EC=97=85=20=EC=9E=91?= =?UTF-8?q?=EC=97=85=20=EC=A1=B0=EC=A0=95=EC=A7=84=ED=96=89=EB=AA=A9?= =?UTF-8?q?=EB=A1=9D=20>=20=EC=A1=B0=EC=A0=95=EC=8B=A0=EC=B2=AD=20?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=20-=20=EC=A1=B0=EC=A0=95=EC=8B=A0?= =?UTF-8?q?=EC=B2=AD=20=EB=8C=80=EC=83=81=EC=9E=90=20=EC=98=81=EC=97=AD=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ai/web/AdjstIncidentController.java | 22 ++- .../kccadr/accdnt/ai/adjstIncidentRequest.jsp | 134 ++++++++++++++++++ .../ai/popup/adjstIncRegistPopEndList.jsp | 102 +++++++++++++ .../jsp/web/kccadr/adjst/adjstReq1Regist.jsp | 8 +- src/main/webapp/js/page/adjstReq/adjstReq.js | 19 +++ src/main/webapp/kccadrPb/usr/css/popup.css | 3 + 6 files changed, 282 insertions(+), 6 deletions(-) create mode 100644 src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/ai/adjstIncidentRequest.jsp create mode 100644 src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/ai/popup/adjstIncRegistPopEndList.jsp diff --git a/src/main/java/kcc/kccadr/accdnt/ai/web/AdjstIncidentController.java b/src/main/java/kcc/kccadr/accdnt/ai/web/AdjstIncidentController.java index 3c3a9223..499265cc 100644 --- a/src/main/java/kcc/kccadr/accdnt/ai/web/AdjstIncidentController.java +++ b/src/main/java/kcc/kccadr/accdnt/ai/web/AdjstIncidentController.java @@ -37,6 +37,7 @@ import kcc.kccadr.adjPgrMgr.apm.service.ApmVO; import kcc.kccadr.adjPgrMgr.cmm.service.PgrCmmService; import kcc.kccadr.adjreqmgr.service.AdjReqMgrService; import kcc.kccadr.adjreqmgr.service.AdjReqMgrVO; +import kcc.kccadr.adjst.service.AdjstReqVO; import kcc.kccadr.cmm.KccadrConstants; import kcc.kccadr.kccadrCom.service.KccadrMgrUdtService; import kcc.let.utl.fcc.service.EgovCryptoUtil; @@ -334,8 +335,25 @@ public class AdjstIncidentController { return "/web/kccadr/accdnt/ai/popup/adjstIncidentDetailPop"; } - - + + + /** + * 조정사건 기록열람 신청 페이지 + * @param adjstIncidentVO AdjstIncidentVO + * @return String + * @exception Exception + */ + @RequestMapping(value = "/web/kccadr/accdnt/ai/adjstIncidentRequest.do") + public String adjstIncidentRequest(@ModelAttribute("adjstIncidentVO") AdjstIncidentVO adjstIncidentVO , ModelMap model) throws Exception { + + return "/web/kccadr/accdnt/ai/adjstIncidentRequest"; + } + + //종결 조정사건 목록 팝업 + @RequestMapping("/web/kccadr/accdnt/ai/popup/adjstIncRegistPopEndList.do") + public String adjstIncRegistPopEndList(@ModelAttribute("adjstReqVO") AdjstReqVO adjstReqVO, ModelMap model) throws Exception { + return "/web/kccadr/accdnt/ai/popup/adjstIncRegistPopEndList"; + } public void decryptInfomation(List list, AdjstIncidentVO info){ if(CollectionUtils.isNotEmpty(list)){ diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/ai/adjstIncidentRequest.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/ai/adjstIncidentRequest.jsp new file mode 100644 index 00000000..0957b615 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/ai/adjstIncidentRequest.jsp @@ -0,0 +1,134 @@ +<%@ 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="un" uri="http://jakarta.apache.org/taglibs/unstandard-1.0" %> +<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%> + +<% pageContext.setAttribute("replaceChar", "\n"); %> + + + + +조정사건 상세 + + + + +<%-- --%> + + + + + +" /> +" /> +" /> + + +
+ +
+ + + + + + +
+
+
+

조정사건 기록열람 신청

+
+
+

열람수수료는 700원, 발급수수료는 1,000원입니다.

+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
조정사건 기록열람 신청 정보 : 조정번호, 신청인 구분, 조정당사자 여부, 서류종류, 발급부수등의 정보제공
+

필수입력 항목*

+

조정번호

+
+ + + +
+

필수입력 항목*

+

신청인 구분

+
+
+ + +
+
+

필수입력 항목*

+

조정당사자 여부

+
+
+ + +
+
+

필수입력 항목*

+

서류종류

+
+
+ + +
+
+

필수입력 항목*

+

발급부수

+
+ + +
+
+ +
+ +
+ +
+
+ + diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/ai/popup/adjstIncRegistPopEndList.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/ai/popup/adjstIncRegistPopEndList.jsp new file mode 100644 index 00000000..2bcd35b2 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/accdnt/ai/popup/adjstIncRegistPopEndList.jsp @@ -0,0 +1,102 @@ +<%@ 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"%> + + + + +종결 조정사건 목록 + + + + + + + + +" /> +" /> + + + + + diff --git a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjst/adjstReq1Regist.jsp b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjst/adjstReq1Regist.jsp index 6a7386e3..8596619b 100644 --- a/src/main/webapp/WEB-INF/jsp/web/kccadr/adjst/adjstReq1Regist.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/kccadr/adjst/adjstReq1Regist.jsp @@ -106,12 +106,12 @@ function fn_adjstReq2_regist() {

2. 조정신청 대상을 선택해주세요.

  • - + +
  • - + +
diff --git a/src/main/webapp/js/page/adjstReq/adjstReq.js b/src/main/webapp/js/page/adjstReq/adjstReq.js index f063bc8d..1ca87c62 100644 --- a/src/main/webapp/js/page/adjstReq/adjstReq.js +++ b/src/main/webapp/js/page/adjstReq/adjstReq.js @@ -1005,6 +1005,25 @@ var AdjstReq = { , "adjstHostoryPop" ); }, + historyAdjstPopEndList : function(paramObj){ + /*if(paramObj == undefined || paramObj == ''){ + paramObj = { + pageIndex : 1, + searchKeyword : "", + searchCondition : "", + pageUnit : 5 + }; + }*/ + // 이전신청데이터 팝업 호출.. + commonPopLayeropen( + "/web/kccadr/accdnt/ai/popup/adjstIncRegistPopEndList.do" + , 500 + , 600 + , paramObj + , "N" + , "adjstIncRegistPopEndList" + ); + }, openExamplePop : function(expmCd){ commonPopLayeropen( "/web/kccadr/adjst/popup/adjstReqOpenExamplePop.do" diff --git a/src/main/webapp/kccadrPb/usr/css/popup.css b/src/main/webapp/kccadrPb/usr/css/popup.css index 1886bf17..3a7ed454 100644 --- a/src/main/webapp/kccadrPb/usr/css/popup.css +++ b/src/main/webapp/kccadrPb/usr/css/popup.css @@ -68,6 +68,9 @@ .popup_cont .btn_wrap .btnType02{background-color: #666; color: #fff;} .popup_cont .btn_wrap .btnType02:hover{background-color: #444;} +.popup_cont .btn_wrap .btnType03{background-color: #666; color: #fff;min-width:110px;text-align:center;} +.popup_cont .btn_wrap .btnType03:hover{background-color: #444;} + .popup_cont .radio_wrap{flex-wrap: wrap;} .popup_cont .radio_wrap input[type="radio"]+label{font-size: 16px;}