이준호 전자조정시스템 고도화 커밋

- 조정신청 시 상세 화면 신청인, 피신청인 정보 노출로 수정
This commit is contained in:
LJH 2022-09-28 10:56:33 +09:00
parent 8147910346
commit a52f72b9f3

View File

@ -201,7 +201,7 @@
</c:if> </c:if>
<c:forEach var="list" items="${person}" varStatus="status"> <c:forEach var="list" items="${person}" varStatus="status">
<c:choose> <c:choose>
<c:when test="${list.rpplTy eq '01'}"> <c:when test="${list.rpplTy eq '10'}">
<p class="tb_tit">신청인정보</p> <p class="tb_tit">신청인정보</p>
<div class="tbType02"> <div class="tbType02">
<table> <table>
@ -270,7 +270,95 @@
</table> </table>
</div> </div>
</c:when> </c:when>
<c:when test="${list.rpplTy eq '02'}"> <c:when test="${list.rpplTy eq '30'}">
<p class="tb_tit">대리인정보</p>
<div class="tbType02">
<table>
<colgroup>
<col style="width: 20%">
<col style="width: 80%">
</colgroup>
<tbody>
<tr>
<th class="">
<p>대리인 이름</p>
</th>
<td><c:out value="${list.rpplNm}"/></td>
</tr>
<tr>
<th class="">
<p>본인과의 관계</p>
</th>
<td>
<kc:code codeId="CC006" code="${list.rpplRelation}"/>
<c:if test="${list.rpplRelation eq KccadrConstants.ADR_RPPL_RELATION_04}">
(<c:out value='${list.rpplRelationEtc}' />)
</c:if>
</td>
</tr>
<tr>
<th class="">
<p>직책</p>
</th>
<td><c:out value="${list.rpplGrade}"/></td>
</tr>
<tr>
<th class="">
<p>대리인 주소</p>
</th>
<td>
(<c:out value="${list.rpplPost}"/>)
<c:out value="${list.rpplAddr}"/> <c:out value="${list.rpplAddrDtl}"/>
</td>
</tr>
<tr>
<th class="">
<p>이메일</p>
</th>
<td><c:out value="${list.rpplEmail}"/></td>
</tr>
<tr>
<th class="">
<p>연락처</p>
</th>
<td><c:out value="${list.rpplPhone.replaceAll('(^02|^0505|^1[0-9]{3}|^0[0-9]{2})([0-9]+)?([0-9]{4})$','$1-$2-$3')}"/></td>
</tr>
<tr>
<th class="">
<p>이메일 수신여부</p>
</th>
<td><c:out value="${list.rpplEmailYn eq 'Y' ? '수신' : '수신하지 않음'}"/></td>
</tr>
<tr>
<th class="">
<p>SMS 수신여부</p>
</th>
<td><c:out value="${list.rpplSmsYn eq 'Y' ? '수신' : '수신하지 않음'}"/></td>
</tr>
<tr>
<th class="">
<p>우편물 수령지</p>
</th>
<td>
(<c:out value="${list.rpplRealPost}"/>)
<c:out value="${list.rpplRealAddr}"/> <c:out value="${list.rpplRealAddrDtl}"/>
</td>
</tr>
<tr>
<th class="">
<p>첨부파일</p>
</th>
<td>
<c:forEach var="depuFileList" items="${depuFileList}" varStatus="status">
<a href="javascript:fn_egov_downFile('<c:out value='${depuFileList.atchFileId}' />','<c:out value='${depuFileList.fileSn}' />')"><c:out value='${depuFileList.orignlFileNm}' /></a>
</c:forEach>
</td>
</tr>
</tbody>
</table>
</div>
</c:when>
<c:when test="${list.rpplTy eq '20'}">
<p class="tb_tit">피신청인정보</p> <p class="tb_tit">피신청인정보</p>
<div class="tbType02"> <div class="tbType02">
<table> <table>
@ -312,6 +400,27 @@
</th> </th>
<td><c:out value="${list.rpplPhone.replaceAll('(^02|^0505|^1[0-9]{3}|^0[0-9]{2})([0-9]+)?([0-9]{4})$','$1-$2-$3')}"/></td> <td><c:out value="${list.rpplPhone.replaceAll('(^02|^0505|^1[0-9]{3}|^0[0-9]{2})([0-9]+)?([0-9]{4})$','$1-$2-$3')}"/></td>
</tr> </tr>
<tr>
<th class="">
<p>이메일 수신여부</p>
</th>
<td><c:out value="${list.rpplEmailYn eq 'Y' ? '수신' : '수신하지 않음'}"/></td>
</tr>
<tr>
<th class="">
<p>SMS 수신여부</p>
</th>
<td><c:out value="${list.rpplSmsYn eq 'Y' ? '수신' : '수신하지 않음'}"/></td>
</tr>
<tr>
<th class="">
<p>우편물 수령지</p>
</th>
<td>
(<c:out value="${list.rpplRealPost}"/>)
<c:out value="${list.rpplRealAddr}"/> <c:out value="${list.rpplRealAddrDtl}"/>
</td>
</tr>
</tbody> </tbody>
</table> </table>
</div> </div>