이준호 (사용자) 조정진행 상황 > 조정진행상세(조정상태가 접수이전 상태 리스트 선택)

데이터 노출 변경, 상세정보 팝업기능 추가
This commit is contained in:
LJH 2022-08-18 12:41:40 +09:00
parent 67aace6ded
commit 8ee78af83b
3 changed files with 727 additions and 243 deletions

View File

@ -3,6 +3,7 @@ package kcc.kccadr.accdnt.ai.web;
import java.time.DayOfWeek;
import java.time.LocalDate;
import java.time.format.TextStyle;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
@ -30,6 +31,9 @@ import kcc.com.utl.fcc.service.EgovStringUtil;
import kcc.com.utl.user.service.CheckAdrProcessUtil;
import kcc.kccadr.accdnt.ai.service.AdjstIncidentService;
import kcc.kccadr.accdnt.ai.service.AdjstIncidentVO;
import kcc.kccadr.adjPgrMgr.apm.service.ApmService;
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.cmm.KccadrConstants;
@ -78,6 +82,11 @@ public class AdjstIncidentController {
@Resource(name = "AdjReqMgrService")
private AdjReqMgrService adjReqMgrService;
@Resource(name = "pgrCmmService")
private PgrCmmService cmmService;
@Resource(name = "apmService")
private ApmService apmService;
/**
* 대국민 대시보드 화면
@ -198,6 +207,15 @@ public class AdjstIncidentController {
List<AdjstIncidentVO> relatedPerson = adjstIncidentService.selectAdjstIncidentrelatedPersonList(adjstIncidentVO);
decryptInfomation(relatedPerson, null);
model.addAttribute("relatedPerson", relatedPerson);
List<AdjstIncidentVO> piSinList = new ArrayList<AdjstIncidentVO>();
for(AdjstIncidentVO tmpVO : relatedPerson) {
if("20".equals(tmpVO.getRpplTy())) {
piSinList.add(tmpVO);
}
}
model.addAttribute("piSinList", piSinList);
if(StringUtils.isNotBlank(master.getAtchFileId())){
FileVO fileVO = new FileVO();
fileVO.setAtchFileId(master.getAtchFileId());
@ -291,6 +309,21 @@ public class AdjstIncidentController {
return modelAndView;
}
//사건 상세정보 팝업
@RequestMapping(value = "/web/kccadr/accdnt/ai/popup/adjstIncidentDetailPop.do")
public String adjstIncidentDetailPop(@ModelAttribute("apmVO") ApmVO apmVO, ModelMap model) throws Exception {
//조정 사건 정보 불러오기
model.addAttribute("info", cmmService.selectPgrCmm(apmVO));
//신청인, 피신청인, 대리인 정보 불러오기
model.addAttribute("rppList", apmService.selectAdrRpplList(apmVO));
return "/web/kccadr/accdnt/ai/popup/adjstIncidentDetailPop";
}
public void decryptInfomation(List<AdjstIncidentVO> list, AdjstIncidentVO info){
if(CollectionUtils.isNotEmpty(list)){
for(AdjstIncidentVO model : list){

View File

@ -6,6 +6,7 @@
<%@ 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"%>
<un:useConstants var="KccadrConstants" className="kcc.kccadr.cmm.KccadrConstants" />
<% pageContext.setAttribute("replaceChar", "\n"); %>
@ -66,6 +67,12 @@
}
});
}
/* 상세정보 팝업_퍼블리싱 작업 요청_이준호_220818 */
function fncDetailPop() {
var popForm = document.popForm;
commonPopWindowopenForm("/web/kccadr/accdnt/ai/popup/adjstIncidentDetailPop.do", "840", "800", "adrRpplDetailPop", $('#popForm'));
}
</script>
</head>
<body>
@ -76,6 +83,10 @@
<input type="hidden" name="searchStatus" value="<c:out value="${adjstIncidentVO.searchStatus}" />" />
</form:form>
<form id="popForm" name="popForm" action="<c:url value='/web/kccadr/accdnt/ai/popup/adjstIncidentDetailPop.do'/>" method="post">
<input type="hidden" name="adrSeq" id="adrSeq" value="<c:out value='${master.adrSeq}'/>"/>
</form>
<form:form id="editForm" name="editForm" commandName="adjstIncidentVO" onsubmit="return false;" method="post">
<input type="hidden" name="adrSeq" id="adrSeq" value="<c:out value='${master.adrSeq}'/>"/>
<input type="hidden" name="adjPageSts" value="Upt"/>
@ -88,233 +99,122 @@
<div class="cont_tit">
<h2>조정사건 상세</h2>
</div>
<c:forEach var="list" items="${relatedPerson}" varStatus="status">
<c:choose>
<c:when test="${list.rpplTy eq KccadrConstants.ADR_RPPL_TY_REQ_DEPUTY}">
<!-- 대리인 정보 -->
<div class="tb_wrap">
<div class="tb_top">
<p>대리인 정보</p>
</div>
<table class="tbType01">
<caption>대리인 정보 : 대리인 이름, 소속, 직책, 대리인 주소, 이메일, 연락처등의 정보제공</caption>
<colgroup>
<col style="width: 250px;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th scope="row" class="">
<p>대리인 이름</p>
</th>
<td><p><c:out value="${list.rpplNm}"/></p></td>
</tr>
<tr>
<th scope="row" class="">
<p>소속</p>
</th>
<td><p><c:out value="${list.rpplClass}"/></p></td>
</tr>
<tr>
<th scope="row" class="">
<p>직책</p>
</th>
<td><p><c:out value="${list.rpplGrade}"/></p></td>
</tr>
<tr>
<th scope="row" class="">
<p>대리인 주소</p>
</th>
<td>
<p>(<c:out value="${list.rpplPost}"/>)
<c:out value="${list.rpplAddr}"/> <c:out value="${list.rpplAddrDtl}"/></p>
</td>
</tr>
<tr>
<th scope="row" class="">
<p>이메일</p>
</th>
<td><p><c:out value="${list.rpplEmail}"/></p></td>
</tr>
<tr>
<th scope="row" class="">
<p>연락처</p>
</th>
<td><p><c:out value="${list.rpplPhone.replaceAll('(^02|^0505|^1[0-9]{3}|^0[0-9]{2})([0-9]+)?([0-9]{4})$','$1-$2-$3')}"/></p></td>
</tr>
</tbody>
</table>
</div>
<!-- //대리인 정보 -->
</c:when>
<c:when test="${list.rpplTy eq KccadrConstants.ADR_RPPL_TY_REQ}">
<!-- 신청인 정보 -->
<div class="tb_wrap">
<div class="tb_top">
<p>신청인 정보</p>
</div>
<table class="tbType01">
<caption>신청인 정보 : 신청인 분류, 신청인 이름, 주소, 이메일, 연락처, 이메일 수신여부, SMS 수신여부, 우편물 수령지 등의 정보제공</caption>
<colgroup>
<col style="width: 250px;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th scope="row" class="">
<p>신청인 분류</p>
</th>
<td>
<p><c:out value="${list.rpplUsrTyNm}"/></p>
</td>
</tr>
<c:choose>
<c:when test="${list.rpplUsrTy eq '02'}">
<tr>
<th scope="row" class="">
<p>법인 대표자명</p>
</th>
<td><p><c:out value="${list.rpplNm}"/></p></td>
</tr>
</c:when>
<c:otherwise>
<tr>
<th scope="row" class="">
<p>신청인 이름</p>
</th>
<td><p><c:out value="${list.rpplNm}"/></p></td>
</tr>
</c:otherwise>
</c:choose>
<c:if test="${list.rpplUsrTy eq '02'}">
<tr>
<th scope="row" class="">
<p>법인명</p>
</th>
<td><p><c:out value="${list.rpplBizNm}"/></p></td>
</tr>
</c:if>
<tr>
<th scope="row" class="">
<p>주소</p>
</th>
<td>
<p>(<c:out value="${list.rpplPost}"/>)
<c:out value="${list.rpplAddr}"/> <c:out value="${list.rpplAddrDtl}"/></p>
</td>
</tr>
<tr>
<th scope="row" class="">
<p>이메일</p>
</th>
<td><p><c:out value="${list.rpplEmail}"/></p></td>
</tr>
<tr>
<th scope="row" class="">
<p>연락처</p>
</th>
<td><p><c:out value="${list.rpplPhone.replaceAll('(^02|^0505|^1[0-9]{3}|^0[0-9]{2})([0-9]+)?([0-9]{4})$','$1-$2-$3')}"/></p></td>
</tr>
<tr>
<th scope="row" class="">
<p>이메일 수신여부</p>
</th>
<td><p><c:out value="${list.rpplEmailYn eq 'Y' ? '수신' : '미수신'}"/></p></td>
</tr>
<tr>
<th scope="row" class="">
<p>SMS 수신여부</p>
</th>
<td><p><c:out value="${list.rpplSmsYn eq 'Y' ? '수신' : '미수신'}"/></p></td>
</tr>
<tr>
<th scope="row" class="">
<p>우편물 수령지</p>
</th>
<td>
<p>(<c:out value="${list.rpplRealPost}"/>)
<c:out value="${list.rpplRealAddr}"/> <c:out value="${list.rpplRealAddrDtl}"/></p>
</td>
</tr>
</tbody>
</table>
</div>
<!-- //신청인 정보 -->
</c:when>
<c:otherwise>
<!-- 피신청인 정보 -->
<div class="tb_wrap">
<div class="tb_top">
<p>피신청인 정보</p>
</div>
<table class="tbType01">
<caption>피신청인 정보 : 피신청인 분류, 피신청인 이름, 주소, 이메일, 연락처 등의 정보제공</caption>
<colgroup>
<col style="width: 250px;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th scope="row" class="">
<p>피신청인 분류</p>
</th>
<td><p><c:out value="${list.rpplUsrTyNm}"/></p></td>
</tr>
<c:choose>
<c:when test="${list.rpplUsrTy eq '02'}">
<tr>
<th scope="row" class="">
<p>법인 대표자명</p>
</th>
<td><p><c:out value="${list.rpplNm}"/></p></td>
</tr>
</c:when>
<c:otherwise>
<tr>
<th scope="row" class="">
<p>피신청인 이름</p>
</th>
<td><p><c:out value="${list.rpplNm}"/></p></td>
</tr>
</c:otherwise>
</c:choose>
<c:if test="${list.rpplUsrTy eq '02'}">
<tr>
<th scope="row" class="">
<p>법인명</p>
</th>
<td><p><c:out value="${list.rpplBizNm}"/></p></td>
</tr>
</c:if>
<tr>
<th scope="row" class="">
<p>주소</p>
</th>
<td>
<p>(<c:out value="${list.rpplPost}"/>)
<c:out value="${list.rpplAddr}"/> <c:out value="${list.rpplAddrDtl}"/></p>
</td>
</tr>
<tr>
<th scope="row" class="">
<p>이메일</p>
</th>
<td><p><c:out value="${list.rpplEmail}"/></p></td>
</tr>
<tr>
<th scope="row" class="">
<p>연락처</p>
</th>
<td><p><c:out value="${list.rpplPhone.replaceAll('(^02|^0505|^1[0-9]{3}|^0[0-9]{2})([0-9]+)?([0-9]{4})$','$1-$2-$3')}"/></p></td>
</tr>
</tbody>
</table>
</div>
<!-- //피신청인 정보 -->
</c:otherwise>
</c:choose>
</c:forEach>
<div class="tb_wrap">
<!-- <div class="tb_top">
<p>대리인 정보</p>
</div> -->
<table class="tbType01">
<caption>조정사건 상세 정보 : 신청인 분류, 저작물 유형, 신청인 이름, 대리인 이름, 피신청인 이름등의 정보제공</caption>
<colgroup>
<col style="width: 250px;">
<col style="width: auto;">
<col style="width: 250px;">
<col style="width: auto;">
</colgroup>
<tbody>
<c:forEach var="list" items="${relatedPerson}" varStatus="status">
<c:choose>
<c:when test="${list.rpplTy eq KccadrConstants.ADR_RPPL_TY_REQ}">
<!-- 신청인 -->
<c:set var="sinName" value="${list.rpplNm}"/>
<c:set var="sinBunryu" value="${list.rpplUsrTyNm}"/>
</c:when>
<c:when test="${list.rpplTy eq KccadrConstants.ADR_RPPL_TY_REQ_DEPUTY}">
<!-- 대리인 -->
<c:set var="daeName" value="${list.rpplNm}"/>
</c:when>
<c:otherwise>
</c:otherwise>
</c:choose>
</c:forEach>
<tr>
<th scope="row" class="">
<p>신청인 분류</p>
</th>
<td>
<p><c:out value="${sinBunryu}"/></p>
</td>
<th scope="row" class="">
<p>저작물 유형</p>
</th>
<td>
<p><kc:code codeId="CC002" code="${master.ccTy}"/></p>
</td>
</tr>
<tr>
<th scope="row" class="">
<p>신청인</p>
</th>
<td>
<p><c:out value="${sinName}"/></p>
</td>
<th scope="row" class="">
<p>대리인</p>
</th>
<td>
<p><c:out value="${daeName}"/></p>
</td>
</tr>
<tr>
<c:forEach var="List" items="${piSinList}" varStatus="status">
<c:if test="${status.count eq 1}">
<th scope="row" class="">
<p>피신청인 1</p>
</th>
<td>
<p><c:out value="${List.rpplNm}"/></p>
</td>
</c:if>
<c:if test="${status.count eq 2}">
<th scope="row" class="">
<p>피신청인 2</p>
</th>
<td>
<p><c:out value="${List.rpplNm}"/></p>
</td>
</c:if>
<c:if test="${status.count eq 3}">
</tr>
<tr>
<th scope="row" class="">
<p>피신청인 3</p>
</th>
<td>
<p><c:out value="${List.rpplNm}"/></p>
</td>
</c:if>
<c:if test="${status.count eq 4}">
<th scope="row" class="">
<p>피신청인 4</p>
</th>
<td>
<p><c:out value="${List.rpplNm}"/></p>
</td>
</c:if>
<c:if test="${status.count eq 5}">
<tr>
<th scope="row" class="">
<p>피신청인 5</p>
</th>
<td>
<p><c:out value="${List.rpplNm}"/></p>
</td>
</tr>
</c:if>
</c:forEach>
</tr>
</tbody>
</table>
</div>
<div class="btn_wrap btn_layout03">
<div class="btn_left"></div>
<div class="btn_right">
<button type="button" class="btnType08" onclick="fncDetailPop(); return false;">상세정보</button>
</div>
</div>
<!-- 피신청인 정보 -->
<div class="tb_wrap">
<div class="tb_top">
@ -333,21 +233,7 @@
</th>
<td>
<p>
<c:choose>
<c:when test="${master.ccTy eq '01'}">어문저작물</c:when>
<c:when test="${master.ccTy eq '02'}">음악저작물</c:when>
<c:when test="${master.ccTy eq '03'}">건축저작물</c:when>
<c:when test="${master.ccTy eq '04'}">도형저작물</c:when>
<c:when test="${master.ccTy eq '05'}">영상저작물</c:when>
<c:when test="${master.ccTy eq '06'}">사진저작물</c:when>
<c:when test="${master.ccTy eq '07'}">미술저작물</c:when>
<c:when test="${master.ccTy eq '08'}">편집저작물</c:when>
<c:when test="${master.ccTy eq '09'}">저작인접물</c:when>
<c:when test="${master.ccTy eq '10'}">데이터베이스</c:when>
<c:when test="${master.ccTy eq '11'}">2차적저작물</c:when>
<c:when test="${master.ccTy eq '12'}">컴퓨터프로그램</c:when>
<c:when test="${master.ccTy eq '13'}">기타</c:when>
</c:choose>
<kc:code codeId="CC002" code="${master.ccTy}"/>
</p>
</td>
</tr>

View File

@ -0,0 +1,565 @@
<!DOCTYPE html>
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<%@ taglib prefix="validator" uri="http://www.springmodules.org/tags/commons-validator"%>
<%@ taglib prefix="kc" uri="/WEB-INF/tlds/kcc_tld.tld"%>
<%@ taglib prefix="un" uri="http://jakarta.apache.org/taglibs/unstandard-1.0" %>
<un:useConstants var="KccadrConstants" className="kcc.kccadr.cmm.KccadrConstants" />
<% pageContext.setAttribute("replaceChar", "\n"); %>
<%
/**
* @Class Name : srcAdmNoPop.jsp
* @Description : 조정접수
* @Modification Information
* @
* @ 수정일 수정자 수정내용
* @ ------- -------- ---------------------------
* @ 2022.08.16 이준호 최초 생성
* @author 이준호
* @since 2022.08.16
* @version 1.0
* @see
*
*/
%>
<html lang="ko">
<head>
<title>관련인 정보</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style>
.btn_util button{width: 30px; height: 30px; border: 1px solid #bebebe; vertical-align: middle; background-repeat: no-repeat; background-position: center; }
.btn_util button:hover{box-shadow: 0 0 5px rgba(0,0,0,.15);}
.btn_util .btn_minus{border-radius: 5px 0 0 5px; margin-right: -5px; background-image: url(/kccadrPb/usr/image/common/btn_minus.png);}
.btn_util .btn_plus{border-radius: 0 5px 5px 0; background-image: url(/kccadrPb/usr/image/common/btn_plus.png);}
.tb_tit_wrap{display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px;}
</style>
<script type="text/javascript">
/* 화면 확대 축소 */
var nowZoom = 100;
function zoomOut() { // 화면크기축소
nowZoom = nowZoom - 10;
if(nowZoom <= 70) nowZoom = 70; // 화면크기 최대 축소율 70%
zooms();
}
function zoomIn() { // 화면크기확대
nowZoom = nowZoom + 20;
if(nowZoom >= 200) nowZoom = 200; // 화면크기 최대 확대율 200%
zooms();
}
function zooms() {
document.body.style.zoom = nowZoom + "%";
}
</script>
</head>
<body>
<div class="area_popup supm_popup" style="width: 800px;">
<div class="cont_popup">
<!-- 신청인 정보 -->
<div class="tb_tit_wrap">
<p class="tb_tit">신청인 정보</p>
<div class="btn_util">
<button type="button" class="btn_minus" onclick="zoomOut();" title="글자 축소"></button>
<button type="button" class="btn_plus" onclick="zoomIn();" title="글자 확대"></button>
</div>
</div>
<c:forEach var="item" items="${rppList}" varStatus="status">
<c:if test="${item.rpplTy eq KccadrConstants.ADR_RPPL_TY_REQ }">
<table class="pop_tbType01">
<colgroup>
<col style="width: 20%;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th>신청인 분류</th>
<td>
<p>
<c:out value="${item.rpplUsrTyTx }"></c:out>&nbsp;
</p>
</td>
</tr>
<c:choose>
<c:when test="${not empty item.rpplBizNm}">
<tr>
<th>신청인 대표</th>
<td>
<p>
<c:out value="${info.appliCantNm }"></c:out>&nbsp;
</p>
</td>
</tr>
</c:when>
<c:otherwise>
<tr>
<th>신청인 이름</th>
<td>
<p>
<c:out value="${info.appliCantNm }"></c:out>&nbsp;
</p>
</td>
</tr>
</c:otherwise>
</c:choose>
<c:if test="${not empty item.rpplBizNm}">
<tr>
<th>신청인 법인명</th>
<td>
<p>
<c:out value="${item.rpplBizNm }"></c:out>&nbsp;
</p>
</td>
</tr>
</c:if>
<tr>
<th>주소</th>
<td>
<p>
<c:out value="(${item.rpplPost }) ${item.rpplAddr } ${item.rpplAddrDtl }"></c:out>&nbsp;
</p>
</td>
</tr>
<tr>
<th>이메일</th>
<td>
<p>
<c:out value="${item.rpplEmail }"></c:out>&nbsp;
</p>
</td>
</tr>
<tr>
<th>연락처</th>
<td>
<p>
<c:out value="${item.rpplPhone }"></c:out>&nbsp;
</p>
</td>
</tr>
<tr>
<th>이메일 수신여부</th>
<td>
<p>
<c:choose>
<c:when test="${item.rpplEmailYn == 'Y'}">
수신
</c:when>
<c:otherwise>
수신하지 않음
</c:otherwise>
</c:choose>
</p>
</td>
</tr>
<tr>
<th>SMS 수신여부</th>
<td>
<p>
<c:choose>
<c:when test="${item.rpplSmsYn == 'Y'}">
수신
</c:when>
<c:otherwise>
수신하지 않음
</c:otherwise>
</c:choose>
</p>
</td>
</tr>
</tbody>
</table>
</c:if>
</c:forEach>
<!-- //신청인 정보 -->
<c:if test="${!empty info.appliCantDNm}">
<!-- 신청인 대리인 정보 -->
<c:forEach var="item" items="${rppList}" varStatus="status">
<c:if test="${item.rpplTy eq KccadrConstants.ADR_RPPL_TY_REQ_DEPUTY}">
<p class="tb_tit">신청인 대리인 정보</p>
<table class="pop_tbType01">
<colgroup>
<col style="width: 20%;">
<col style="width: auto;">
</colgroup>
<tbody>
<c:choose>
<c:when test="${not empty item.rpplUsrTy}">
<c:out value="${item.rpplUsrTyTx }"></c:out>&nbsp;
<tr>
<th>대리인분류</th>
<td>
<p>
<c:out value="${item.rpplUsrTyTx }"></c:out>&nbsp;
</p>
</td>
</tr>
</c:when>
<c:otherwise>
<tr>
<th>본인과의 관계</th>
<td>
<p>
<kc:code codeId="CC006" code="${item.rpplRelation}"/>
<c:if test="${item.rpplRelation eq KccadrConstants.ADR_RPPL_RELATION_04 && not empty item.rpplRelationEtc}">
(<c:out value='${item.rpplRelationEtc}' />)
</c:if>
</p>
</td>
</tr>
</c:otherwise>
</c:choose>
<tr>
<th>대리인 이름</th>
<td>
<p>
<c:out value="${item.rpplNm }"></c:out>&nbsp;
</p>
</td>
</tr>
<c:if test="${not empty item.rpplBizNm}">
<tr>
<th>피신청인 법인(개인사업자)명</th>
<td>
<p>
<c:out value="${item.rpplBizNm }"></c:out>&nbsp;
</p>
</td>
</tr>
</c:if>
<tr>
<th>주소</th>
<td>
<p>
<c:out value="(${item.rpplPost }) ${item.rpplAddr } ${item.rpplAddrDtl }"></c:out>&nbsp;
</p>
</td>
</tr>
<tr>
<th>이메일</th>
<td>
<p>
<c:out value="${item.rpplEmail }"></c:out>&nbsp;
</p>
</td>
</tr>
<tr>
<th>연락처</th>
<td>
<p>
<c:out value="${item.rpplPhone }"></c:out>&nbsp;
</p>
</td>
</tr>
<tr>
<th>이메일 수신여부</th>
<td>
<p>
<c:choose>
<c:when test="${item.rpplEmailYn == 'Y'}">
수신
</c:when>
<c:otherwise>
수신하지 않음
</c:otherwise>
</c:choose>
</p>
</td>
</tr>
<tr>
<th>SMS 수신여부</th>
<td>
<p>
<c:choose>
<c:when test="${item.rpplSmsYn == 'Y'}">
수신
</c:when>
<c:otherwise>
수신하지 않음
</c:otherwise>
</c:choose>
</p>
</td>
</tr>
<tr>
<th>대리신청서</th>
<td>
<p>
<c:forEach var="files" items="${reqfileList}" varStatus="status">
<c:if test="${item.atchFileId == files.atchFileId}">
<a href="<c:url value='/cmm/fms/FileDown.do?atchFileId=${files.atchFileId}&&fileSn=${files.fileSn}'/>" title="첨부파일 다운로드">
<c:out value="${files.orignlFileNm}"></c:out>&nbsp;
</a>
</c:if>
</c:forEach>
</p>
</td>
</tr>
</tbody>
</table>
<c:if test="${not empty item.rpplRealPost }">
<table class="pop_tbType01" style="margin-top: 20px;">
<colgroup>
<col style="width: 20%;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th>우편물 수령지</th>
<td>
<p>
<c:out value="(${item.rpplRealPost }) ${item.rpplRealAddr } ${item.rpplRealAddrDtl }"></c:out>&nbsp;
</p>
</td>
</tr>
</tbody>
</table>
</c:if>
</c:if>
</c:forEach>
</c:if>
<c:forEach var="item" items="${rppList}" varStatus="status">
<!-- 피신청인 정보 -->
<c:if test="${item.rpplTy eq KccadrConstants.ADR_RPPL_TY_RES}">
<p class="tb_tit">피신청인 정보</p>
<table class="pop_tbType01">
<colgroup>
<col style="width: 20%;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th>피신청인 분류</th>
<td>
<p>
<c:out value="${item.rpplUsrTyTx }"></c:out>&nbsp;
</p>
</td>
</tr>
<tr>
<th>피신청인 이름</th>
<td>
<p>
<c:out value="${item.rpplNm }"></c:out>&nbsp;
</p>
</td>
</tr>
<c:if test="${not empty item.rpplBizNm}">
<tr>
<th>피신청인 법인명</th>
<td>
<p>
<c:out value="${item.rpplBizNm }"></c:out>&nbsp;
</p>
</td>
</tr>
</c:if>
<tr>
<th>주소</th>
<td>
<p>
<c:out value="(${item.rpplPost }) ${item.rpplAddr } ${item.rpplAddrDtl }"></c:out>&nbsp;
</p>
</td>
</tr>
<tr>
<th>이메일</th>
<td>
<p>
<c:out value="${item.rpplEmail }"></c:out>&nbsp;
&nbsp;
</p>
</td>
</tr>
<tr>
<th>연락처</th>
<td>
<p>
<c:out value="${item.rpplPhone }"></c:out>&nbsp;
&nbsp;
</p>
</td>
</tr>
<tr>
<th>이메일 수신여부</th>
<td>
<p>
<c:choose>
<c:when test="${item.rpplEmailYn == 'Y'}">
수신
</c:when>
<c:otherwise>
수신하지 않음
</c:otherwise>
</c:choose>
</p>
</td>
</tr>
<tr>
<th>SMS 수신여부</th>
<td>
<p>
<c:choose>
<c:when test="${item.rpplSmsYn == 'Y'}">
수신
</c:when>
<c:otherwise>
수신하지 않음
</c:otherwise>
</c:choose>
</p>
</td>
</tr>
</tbody>
</table>
<!-- //대리인 정보 -->
</c:if>
<!-- 피신청인 정보 끝 -->
<!-- 피신청 대리인 정보 -->
<c:forEach var="resPDList" items="${rppList}" varStatus="status">
<c:if test="${item.rpplSeq == resPDList.rpplRespddSeq}">
<c:if test="${resPDList.rpplTy eq KccadrConstants.ADR_RPPL_TY_RES_DEPUTY}">
<p class="tb_tit">피신청인 대리인 정보</p>
<table class="pop_tbType01">
<colgroup>
<col style="width: 20%;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th>본인과의 관계</th>
<td>
<p>
<kc:code codeId="CC006" code="${resPDList.rpplRelation}"/>
<c:if test="${resPDList.rpplRelation eq KccadrConstants.ADR_RPPL_RELATION_04 && not empty resPDList.rpplRelationEtc}">
(<c:out value='${resPDList.rpplRelationEtc}' />)
</c:if>
</p>
</td>
</tr>
<tr>
<th>대리인 이름</th>
<td>
<p>
<c:out value="${resPDList.rpplNm }"></c:out>&nbsp;
</p>
</td>
</tr>
<c:if test="${not empty resPDList.rpplBizNm}">
<tr>
<th>피신청인 법인(개인사업자)명</th>
<td>
<p>
<c:out value="${resPDList.rpplBizNm }"></c:out>&nbsp;
</p>
</td>
</tr>
</c:if>
<tr>
<th>주소</th>
<td>
<p>
<c:out value="(${resPDList.rpplPost }) ${resPDList.rpplAddr } ${resPDList.rpplAddrDtl }"></c:out>&nbsp;
</p>
</td>
</tr>
<tr>
<th>이메일</th>
<td>
<p>
<c:out value="${resPDList.rpplEmail }"></c:out>&nbsp;
</p>
</td>
</tr>
<tr>
<th>연락처</th>
<td>
<p>
<c:out value="${resPDList.rpplPhone }"></c:out>&nbsp;
</p>
</td>
</tr>
<tr>
<th>이메일 수신여부</th>
<td>
<p>
<c:choose>
<c:when test="${resPDList.rpplEmailYn == 'Y'}">
수신
</c:when>
<c:otherwise>
수신하지 않음
</c:otherwise>
</c:choose>
</p>
</td>
</tr>
<tr>
<th>SMS 수신여부</th>
<td>
<p>
<c:choose>
<c:when test="${resPDList.rpplSmsYn == 'Y'}">
수신
</c:when>
<c:otherwise>
수신하지 않음
</c:otherwise>
</c:choose>
</p>
</td>
</tr>
<tr>
<th>대리신청서</th>
<td>
<p>
<c:forEach var="files" items="${reqfileList}" varStatus="status">
<c:if test="${resPDList.atchFileId == files.atchFileId}">
<%-- <c:out value="${files.orignlFileNm}"></c:out>&nbsp; --%>
<a href="<c:url value='/cmm/fms/FileDown.do?atchFileId=${files.atchFileId}&&fileSn=${files.fileSn}'/>" title="첨부파일 다운로드">
<c:out value="${files.orignlFileNm}"></c:out>&nbsp;
</a>
</c:if>
</c:forEach>
</p>
</td>
</tr>
</tbody>
</table>
<c:if test="${not empty resPDList.rpplRealPost }">
<table class="pop_tbType01" style="margin-top: 20px;">
<colgroup>
<col style="width: 20%;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th>우편물 수령지</th>
<td>
<p>
<c:out value="(${resPDList.rpplRealPost }) ${resPDList.rpplRealAddr } ${resPDList.rpplRealAddrDtl }"></c:out>&nbsp;
</p>
</td>
</tr>
</tbody>
</table>
</c:if>
</c:if>
</c:if>
</c:forEach>
<!-- 피신청 대리인 정보 끝 -->
</c:forEach>
<!-- //조정신청 내용 -->
<div class="btn_wrap btn_layout04">
<button type="button" class="btnType03" onclick="window.close()">닫기</button>
</div>
</div>
</div>
</body>
</html>