itn 2023-08-03
Merge branch 'jsp'
@59daa096aa992af9b15b9d4a34344abd93be2913
src/main/java/itn/let/mjo/msg/web/MjonMsgController.java
--- src/main/java/itn/let/mjo/msg/web/MjonMsgController.java
+++ src/main/java/itn/let/mjo/msg/web/MjonMsgController.java
@@ -5118,15 +5118,21 @@
 		model.addAttribute("fileList", fileList);
 		
 		String phmId = request.getParameter("phmId");
-		String phoneNumber = request.getParameter("phoneNumber");
-		String userName = request.getParameter("userName");
 		String managerNm = request.getParameter("managerNm");
 		String dept = request.getParameter("dept");
-		String nameType = request.getParameter("nameType");
-		String phmType = request.getParameter("phmType");
 		String authYnTxt = request.getParameter("authYnTxt");
 		String phmAuthTypeTxt = request.getParameter("phmAuthTypeTxt");
 		String ownerName = request.getParameter("ownerName");
+
+		MjPhoneMemberVO mjPhoneMemberVO = new MjPhoneMemberVO();
+		mjPhoneMemberVO = mjonMsgService.selectSendPhoneNumberByPhmId(phmId);		
+		String phoneNumber = mjPhoneMemberVO.getPhoneNumber();
+		String userId = mjPhoneMemberVO.getUserId();
+		String userName = mjPhoneMemberVO.getUserName();
+		String nameType = mjPhoneMemberVO.getNameType();
+		String phmType = mjPhoneMemberVO.getPhmType();
+		String authYn = mjPhoneMemberVO.getAuthYn();
+		String rejectReason = mjPhoneMemberVO.getRejectReason();
 		
 		// ν•„μˆ˜μ„œλ₯˜
 		String requiredDocuments = "";
@@ -5211,26 +5217,24 @@
 			}			
 		}
 	
-		
-				
-		
-        
-		
 		model.addAttribute("pdfPath", path);
 		model.addAttribute("fileType", fileType);
 		model.addAttribute("atchFileId", fileVO.getAtchFileId());
 		model.addAttribute("fileSn", fileVO.getFileSn());
 		model.addAttribute("phmId", phmId);
 		model.addAttribute("phoneNumber", phoneNumber);
+		model.addAttribute("userId", userId);
 		model.addAttribute("userName", userName);
 		model.addAttribute("managerNm", managerNm);
 		model.addAttribute("dept", dept);
 		model.addAttribute("nameType", nameType);
 		model.addAttribute("phmType", phmType);
+		model.addAttribute("authYn", authYn);
 		model.addAttribute("authYnTxt", authYnTxt);
 		model.addAttribute("phmAuthTypeTxt", phmAuthTypeTxt);
 		model.addAttribute("ownerName", ownerName);
 		model.addAttribute("requiredDocuments", requiredDocuments);
+		model.addAttribute("rejectReason", rejectReason);
     	
     	return "/uss/ion/msg/pdfViewPhone";
     }
src/main/webapp/WEB-INF/jsp/uss/ion/msg/SendNumberList.jsp
--- src/main/webapp/WEB-INF/jsp/uss/ion/msg/SendNumberList.jsp
+++ src/main/webapp/WEB-INF/jsp/uss/ion/msg/SendNumberList.jsp
@@ -41,16 +41,18 @@
 });
 
 //PdfView
-function pdfViewPhonePop(atchFileId,phmId,phoneNumber,userName,managerNm,dept,nameType,phmType,authYnTxt,phmAuthTypeTxt,ownerName) {
+function pdfViewPhonePop(atchFileId,phmId,phoneNumber,userId,userName,managerNm,dept,nameType,phmType,authYn,authYnTxt,phmAuthTypeTxt,ownerName) {
 	document.pdfForm.atchFileId.value = atchFileId;
 	document.pdfForm.fileSn.value = 0;
 	document.pdfForm.phmId.value = phmId;
 	document.pdfForm.phoneNumber.value = phoneNumber;
+	document.pdfForm.userId.value = userId;
 	document.pdfForm.userName.value = userName;
 	document.pdfForm.managerNm.value = managerNm;
 	document.pdfForm.dept.value = dept;
 	document.pdfForm.nameType.value = nameType;
 	document.pdfForm.phmType.value = phmType;
+	document.pdfForm.authYn.value = authYn;
 	document.pdfForm.authYnTxt.value = authYnTxt;
 	document.pdfForm.phmAuthTypeTxt.value = phmAuthTypeTxt;
 	document.pdfForm.ownerName.value = ownerName;
@@ -438,7 +440,7 @@
 							</td>
 							<td>
                                 <c:if test="${result.atchFileId ne '' && result.atchFileId ne null}">
-									<button class="btnType btnType20" onclick="pdfViewPhonePop('${result.atchFileId}','${result.phmId}','${result.phoneNumber}','${result.userName}','${result.managerNm}','${result.dept}','${result.nameType}','${result.phmType}','${result.authYnTxt}','${result.phmAuthTypeTxt}','${result.ownerName}'); return false;" style="height:20px !important; padding:0 2px !important;">V</button>
+									<button class="btnType btnType20" onclick="pdfViewPhonePop('${result.atchFileId}','${result.phmId}','${result.phoneNumber}','${result.userId}','${result.userName}','${result.managerNm}','${result.dept}','${result.nameType}','${result.phmType}','${result.authYn}','${result.authYnTxt}','${result.phmAuthTypeTxt}','${result.ownerName}'); return false;" style="height:20px !important; padding:0 2px !important;">V</button>
 					            </c:if>
 							</td>
 							<td><c:out value="${result.admNm}"/></td>
@@ -492,11 +494,13 @@
 	<input type="hidden" name="fileSn"/>
 	<input type="hidden" name="phmId"/>
 	<input type="hidden" name="phoneNumber"/>
+	<input type="hidden" name="userId"/>
 	<input type="hidden" name="userName"/>
 	<input type="hidden" name="managerNm"/>
 	<input type="hidden" name="dept"/>
 	<input type="hidden" name="nameType"/>
 	<input type="hidden" name="phmType"/>
+	<input type="hidden" name="authYn"/>
 	<input type="hidden" name="authYnTxt"/>
 	<input type="hidden" name="phmAuthTypeTxt"/>
 	<input type="hidden" name="ownerName"/>
src/main/webapp/WEB-INF/jsp/uss/ion/msg/pdfView.jsp
--- src/main/webapp/WEB-INF/jsp/uss/ion/msg/pdfView.jsp
+++ src/main/webapp/WEB-INF/jsp/uss/ion/msg/pdfView.jsp
@@ -44,63 +44,63 @@
 </head>
 <body>
 
-	<div class="pageCont" style="text-align: center; width: 1000px;">
-		<div class="listTop" style="float: left; margin-top: 0px; padding-top: 0px;">
-			<p class="tType5">κΈ°μ—…νšŒμ› μ‹ μ²­ 정보</p>
-		</div>
-		<div class="tableWrap">
-			<table class="tbType1">
-				<colgroup>
-					<col style="width: *%">
-					<col style="width: 12%">
-					<col style="width: 15%">
-					<col style="width: 15%">
-					<col style="width: 12%">
-					<col style="width: 10%">
-				</colgroup>
-				<thead>
-					<tr>
-						<th>κΈ°μ—…λͺ…</th>
-						<th>μ‚¬μ—…μžλ²ˆν˜Έ</th>
-						<th>λŒ€ν‘œμž</th>
-						<th>λ‹΄λ‹Ήμž</th>
-						<th>νœ΄λŒ€ν°</th>
-						<th>λ‹€μš΄λ‘œλ“œ</th>
-					</tr>
-				</thead>
-				<tbody>
-					<tr>
-						<td title="${mberNm}">${mberNm}</td>
-						<td title="${bizNo}">${bizNo}</td>
-						<td title="${ceoNm}">${ceoNm}</td>
-						<td title="${hstManagerNm}">${hstManagerNm}</td>
-						<td title="${hstMbtlNum}">${hstMbtlNum}</td>
-						<td>
-			           		<c:import url="/cmm/fms/selectMberFileInfs.do" charEncoding="utf-8">
-								<c:param name="param_atchFileId" value="${atchFileId}" />
-							</c:import>											
-						</td>
-					</tr>
-				</tbody>
-			</table>	
-		</div>
-		
-		<c:if test="${fileType eq 'etc'}">
-			<div style="width: 100%; text-align: center; margin: 30px 0 30px 0; color: red;">
-				PDF λ·°μ–΄μ—μ„œ μ§€μ›ν•˜μ§€ μ•ŠλŠ” ν˜•μ‹μ˜ νŒŒμΌμž…λ‹ˆλ‹€. μ²¨λΆ€νŒŒμΌ λ‹€μš΄λ‘œλ“œν›„ ν™•μΈν•΄μ£Όμ„Έμš”.
-			</div>
-		</c:if>		
-		<canvas id="the-canvas" name="the-canvas" style="min-width: 600px; max-width: 1000px; margin-top: 25px; margin-bottom: 25px;"></canvas>
-	
-		<div>
-		  <button class="btnType" id="prev">Previous</button>
-		  &nbsp;<span>Page: <span id="page_num"></span> / <span id="page_count"></span></span>&nbsp;
-		  <button class="btnType" id="next">Next</button>
-		  
-		  <div style="float: right; margin-right: 10px;"><button onclick="javascript:self.close()" class="btnType">CLOSE</button></div>
-		</div>
-		
+<div class="pageCont" style="text-align: center; width: 1000px;">
+	<div class="listTop" style="float: left; margin-top: 0px; padding-top: 0px;">
+		<p class="tType5">κΈ°μ—…νšŒμ› μ‹ μ²­ 정보</p>
 	</div>
+	<div class="tableWrap">
+		<table class="tbType1">
+			<colgroup>
+				<col style="width: *%">
+				<col style="width: 12%">
+				<col style="width: 15%">
+				<col style="width: 15%">
+				<col style="width: 12%">
+				<col style="width: 10%">
+			</colgroup>
+			<thead>
+				<tr>
+					<th>κΈ°μ—…λͺ…</th>
+					<th>μ‚¬μ—…μžλ²ˆν˜Έ</th>
+					<th>λŒ€ν‘œμž</th>
+					<th>λ‹΄λ‹Ήμž</th>
+					<th>νœ΄λŒ€ν°</th>
+					<th>λ‹€μš΄λ‘œλ“œ</th>
+				</tr>
+			</thead>
+			<tbody>
+				<tr>
+					<td title="${mberNm}">${mberNm}</td>
+					<td title="${bizNo}">${bizNo}</td>
+					<td title="${ceoNm}">${ceoNm}</td>
+					<td title="${hstManagerNm}">${hstManagerNm}</td>
+					<td title="${hstMbtlNum}">${hstMbtlNum}</td>
+					<td>
+		           		<c:import url="/cmm/fms/selectMberFileInfs.do" charEncoding="utf-8">
+							<c:param name="param_atchFileId" value="${atchFileId}" />
+						</c:import>											
+					</td>
+				</tr>
+			</tbody>
+		</table>	
+	</div>
+	
+	<c:if test="${fileType eq 'etc'}">
+		<div style="width: 100%; text-align: center; margin: 30px 0 30px 0; color: red;">
+			PDF λ·°μ–΄μ—μ„œ μ§€μ›ν•˜μ§€ μ•ŠλŠ” ν˜•μ‹μ˜ νŒŒμΌμž…λ‹ˆλ‹€. μ²¨λΆ€νŒŒμΌ λ‹€μš΄λ‘œλ“œν›„ ν™•μΈν•΄μ£Όμ„Έμš”.
+		</div>
+	</c:if>		
+	<canvas id="the-canvas" name="the-canvas" style="min-width: 600px; max-width: 1000px; margin-top: 25px; margin-bottom: 25px;"></canvas>
+
+	<div>
+	  <button class="btnType" id="prev">Previous</button>
+	  &nbsp;<span>Page: <span id="page_num"></span> / <span id="page_count"></span></span>&nbsp;
+	  <button class="btnType" id="next">Next</button>
+	  
+	  <div style="float: right; margin-right: 10px;"><button onclick="javascript:self.close()" class="btnType">CLOSE</button></div>
+	</div>
+</div>
+<br /><br />
 
 </body>
 </html>
src/main/webapp/WEB-INF/jsp/uss/ion/msg/pdfViewPhone.jsp
--- src/main/webapp/WEB-INF/jsp/uss/ion/msg/pdfViewPhone.jsp
+++ src/main/webapp/WEB-INF/jsp/uss/ion/msg/pdfViewPhone.jsp
@@ -44,6 +44,19 @@
 
 <script type="text/javaScript" language="javascript">
 
+$(document).ready(function() {
+	// change ν•¨μˆ˜
+	$("#changeWord").change(function() {
+	    // λ³€κ²½λœ κ°’μœΌλ‘œ 비ꡐ ν›„ alert ν‘œμΆœ
+	    if($(this).val() == ""){
+	    	$("#rejectReason").val('');
+	    } else {
+	    	$("#rejectReason").val($(this).val());
+	    }
+	});
+
+});
+
 //PdfView
 function pdfViewPhonePop(atchFileId,fileSn) {
 	document.pdfForm.atchFileId.value = atchFileId;
@@ -52,199 +65,375 @@
     document.pdfForm.submit();	
 }
 
+//κΈ°μ—…νšŒμ› μ‹ μ²­ 승인/반렀 처리
+function updateAuthYn(phmId, authYn, userId) {
+	
+	var form = document.authForm;
+	form.phmId.value = phmId;
+	form.authYn.value = authYn;
+	form.userId.value = userId;
+	var data = new FormData(form);
+	
+	if (confirm("μΈμ¦μ™„λ£Œ ν•˜μ‹œκ² μŠ΅λ‹ˆκΉŒ?")) {
+		$.ajax({
+	        type: "POST",
+	        url: "/uss/ion/msg/updateAuthYnAjax.do",
+	        data: data,
+	        dataType:'json',
+	        async: false,
+	        processData: false,
+	        contentType: false,
+	        cache: false, 
+	        success: function (data) {
+				if (data.result) { 
+					alert(data.msg);
+					opener.location.reload(); 
+					self.close();
+				} else {
+					alert(data.msg);
+				}
+			},
+	        error: function (e) { 
+	        	alert("μ €μž₯에 μ‹€νŒ¨ν•˜μ˜€μŠ΅λ‹ˆλ‹€."); 
+	        	alert("ERROR : " + JSON.stringify(e)); 
+	        }
+	    });
+	}
+	
+}
+
+//κΈ°μ—…νšŒμ› μ‹ μ²­ 승인/반렀 처리
+function authYnC() {
+	
+	if( $("#rejectReason").val() == '' ){
+		alert("λ°˜λ €μ‚¬μœ λ₯Ό μž…λ ₯ν•΄μ£Όμ„Έμš”.");
+		return false;
+	}
+	
+	if (confirm("반렀 ν•˜μ‹œκ² μŠ΅λ‹ˆκΉŒ?")) {
+	
+		var form = document.returnPopForm;
+		form.authYn.value = "C"
+		var data = new FormData(form);
+		url = "/uss/ion/msg/updateAuthYnAjax.do";
+		
+		$.ajax({
+	        type: "POST",
+	        url: url,
+	        data: data,
+	        dataType:'json',
+	        async: false,
+	        processData: false,
+	        contentType: false,
+	        cache: false,
+	        success: function (data) {
+				if (data.result) { 
+					// μ΄ˆκΈ°ν™”
+					alert(data.msg);
+					opener.location.reload(); 
+					self.close();
+				} 
+				else {
+					alert(data.msg);
+				}
+			},
+	        error: function (e) { 
+	        	alert("μ €μž₯에 μ‹€νŒ¨ν•˜μ˜€μŠ΅λ‹ˆλ‹€."); 
+	        	alert("ERROR : " + JSON.stringify(e)); 
+	        }
+	    });
+	}
+	
+}
+
+// λ°˜λ €ν™”λ©΄ Call
+function setRejectAreaCall(sType) {
+	if (sType == "SHOW") {
+		if ($("#rejectArea").css("display") == "block") {
+			$("#rejectArea").hide();
+		}
+		else {
+			$("#rejectArea").show();
+		}
+	}
+	else {
+		$("#rejectArea").hide();
+	}
+}
+
 </script>
 
 </head>
 <body>
 
-	<div class="pageCont" style="text-align: center; width: 1000px;">
-		<div class="listTop" style="float: left; margin-top: 0px; padding-top: 0px;">
-			<p class="tType5">λ°œμ‹ λ²ˆν˜Έ μ‹ μ²­ 정보</p>
-		</div>
-		<div class="tableWrap">
-			<table class="tbType1">
-				<colgroup>
-					<col style="width: 12%">
-					<col style="width: *%">
-					<col style="width: 11%">
-					<col style="width: 8%">
-					<col style="width: 8%">
-					<col style="width: 8%">
-					<col style="width: 8%">
-					<col style="width: 8%">
-					<col style="width: 15%">
-				</colgroup>
-				<thead>
-					<tr>
-						<th>λ°œμ‹ λ²ˆν˜Έ</th>
-						<th>λŒ€ν‘œ</th>
-						<th>λ‹΄λ‹Ήμž</th>
-						<th>νšŒμ›</th>
-						<th>ꡬ뢄</th>
-						<th>인증방식</th>
-						<th>인증자</th>
-						<th>인증여뢀</th>
-						<th>λ‹€μš΄λ‘œλ“œ</th>				
-					</tr>
-				</thead>
-				<tbody>
-					<tr>
-						<td title="${phoneNumber}">${phoneNumber}</td>
-						<td title="${userName}">${userName}</td>
-						<td title="${managerNm}">${managerNm}</td>
-						<td>
-							<c:choose>
-								<c:when test="${dept == 'c'}">
-									κΈ°μ—…
-								</c:when>
-								<c:otherwise>
-									개인
-								</c:otherwise>
-							</c:choose>
-						</td>
-						<td>
-							<c:choose>
-								<c:when test="${not empty nameType}">
-									<c:choose>
-										<c:when test="${nameType == '1'}">
-											당사
-										</c:when>
-										<c:when test="${nameType == '2'}">
-											λŒ€ν‘œ
-										</c:when>
-										<c:when test="${nameType == '3'}">
-											직원
-										</c:when>
-										<c:when test="${nameType == '4'}">
-											타사
-										</c:when>
-										<c:when test="${nameType == '5'}">
-											본인
-										</c:when>
-										<c:otherwise>
-											타인
-										</c:otherwise>
-									</c:choose>	
-								</c:when>
-								<c:otherwise>
-									μ—†μŒ
-								</c:otherwise>
-							</c:choose>						
-						</td>
-						<td>
-							<c:choose>
-								<c:when test="${phmAuthTypeTxt eq 'νœ΄λŒ€ν° 인증'}">
-									νœ΄λŒ€ν°
-								</c:when>
-								<c:when test="${phmAuthTypeTxt eq 'μ„œλ₯˜μΈμ¦'}">
-									μ„œλ₯˜
-								</c:when>									
-								<c:otherwise>
-									<c:out value="${phmAuthTypeTxt}"/>
-								</c:otherwise>
-							</c:choose>													
-						</td>
-						<td>
-							<c:choose>
-								<c:when test="${phmAuthTypeTxt eq 'μ„œλ₯˜μΈμ¦'}">
-									
-								</c:when>									
-								<c:otherwise>
-									<c:out value="${ownerName}"/>
-								</c:otherwise>
-							</c:choose>							
-						</td>						
-						<td>
-							<c:choose>
-								<c:when test="${phmType eq '03'}">
-									λ°œμ‹ λ²ˆν˜Έ 차단
-								</c:when>
-								<c:otherwise>
-									<c:if test="${authYnTxt eq '심사쀑'}">μΈμ¦μš”μ²­</c:if>
-									<c:if test="${authYnTxt ne '심사쀑'}"><c:out value="${authYnTxt}"/></c:if>
-								</c:otherwise>
-							</c:choose>
-						</td>
-						<td>
-			           		<c:import url="/cmm/fms/selectMberFileInfs.do" charEncoding="utf-8">
-								<c:param name="param_atchFileId" value="${atchFileId}" />
-							</c:import>											
-						</td>
-					</tr>
-				</tbody>
-			</table>	
-		</div>
-		
-		<br /><br />
-		<!-- ν•„μˆ˜μ„œλ₯˜ 체크 -->
-		<div class="listTop" style="float: left; margin-top: 0px; padding-top: 0px;">
-			<p class="tType5">μŠΉμΈμ— ν•„μš”ν•œ μ„œλ₯˜</p>
-		</div>
-		<div class="tableWrap">
-			<table class="tbType1">
-				<colgroup>
-					<col style="width: *%">
-				</colgroup>
-				<thead>
-					<tr>
-						<td class="left" style="padding: 10px 0 10px 0; line-height: 1.6em;">${requiredDocuments}</td>
-					</tr>
-				</thead>
-				</tbody>
-			</table>	
-		</div>		
-		
-
-		<c:if test="${not empty fileList}">
-			<div style="width: 100%; text-align: center; margin: 30px 0 30px 0;">		
-			<c:set var="plusCnt" value="0"/>
-			<c:set var="btnClass" value="btnType1"/>
-			<c:forEach var="result" items="${fileList}" varStatus="status">
-				<c:choose>
-					<c:when test="${result.fileSn eq fileSn}">
-						<c:set var="btnClass" value="btnType2"/>
-					</c:when>									
-					<c:otherwise>
-						<c:set var="btnClass" value="btnType1"/>
-					</c:otherwise>
-				</c:choose>			
-				<c:set var="plusCnt" value="${plusCnt + 1}"/>
-				<button class="<c:out value="${btnClass}"/>" onclick="pdfViewPhonePop('${result.atchFileId}','${result.fileSn}'); return false;"> μ²¨λΆ€νŒŒμΌ <c:out value="${plusCnt}"/> </button>
-			</c:forEach>
-			</div>
-		</c:if>
-
-		<c:if test="${fileType eq 'etc'}">
-			<div style="width: 100%; text-align: center; margin: 30px 0 30px 0; color: red;">
-				PDF λ·°μ–΄μ—μ„œ μ§€μ›ν•˜μ§€ μ•ŠλŠ” ν˜•μ‹μ˜ νŒŒμΌμž…λ‹ˆλ‹€. μ²¨λΆ€νŒŒμΌ λ‹€μš΄λ‘œλ“œν›„ ν™•μΈν•΄μ£Όμ„Έμš”.
-			</div>
-		</c:if>		
-		<canvas id="the-canvas" name="the-canvas" style="min-width: 600px; max-width: 1000px; margin-top: 25px; margin-bottom: 25px;"></canvas>
-	
-		<div>
-		  <button class="btnType" id="prev">Previous</button>
-		  &nbsp;<span>Page: <span id="page_num"></span> / <span id="page_count"></span></span>&nbsp;
-		  <button class="btnType" id="next">Next</button>
-		  
-		  <div style="float: right; margin-right: 10px;"><button onclick="javascript:self.close()" class="btnType">CLOSE</button></div>
-		</div>
-		
+<div class="pageCont" style="text-align: center; width: 1000px;">
+	<div class="listTop" style="float: left; margin-top: 0px; padding-top: 0px;">
+		<p class="tType5">λ°œμ‹ λ²ˆν˜Έ μ‹ μ²­ 정보</p>
+	</div>
+	<div class="tableWrap">
+		<table class="tbType1">
+			<colgroup>
+				<col style="width: 12%">
+				<col style="width: *%">
+				<col style="width: 11%">
+				<col style="width: 8%">
+				<col style="width: 8%">
+				<col style="width: 8%">
+				<col style="width: 8%">
+				<col style="width: 8%">
+				<col style="width: 15%">
+			</colgroup>
+			<thead>
+				<tr>
+					<th>λ°œμ‹ λ²ˆν˜Έ</th>
+					<th>λŒ€ν‘œ</th>
+					<th>λ‹΄λ‹Ήμž</th>
+					<th>νšŒμ›</th>
+					<th>ꡬ뢄</th>
+					<th>인증방식</th>
+					<th>인증자</th>
+					<th>인증여뢀</th>
+					<th>λ‹€μš΄λ‘œλ“œ</th>				
+				</tr>
+			</thead>
+			<tbody>
+				<tr>
+					<td title="${phoneNumber}">${phoneNumber}</td>
+					<td title="${userName}">${userName}</td>
+					<td title="${managerNm}">${managerNm}</td>
+					<td>
+						<c:choose>
+							<c:when test="${dept == 'c'}">
+								κΈ°μ—…
+							</c:when>
+							<c:otherwise>
+								개인
+							</c:otherwise>
+						</c:choose>
+					</td>
+					<td>
+						<c:choose>
+							<c:when test="${not empty nameType}">
+								<c:choose>
+									<c:when test="${nameType == '1'}">
+										당사
+									</c:when>
+									<c:when test="${nameType == '2'}">
+										λŒ€ν‘œ
+									</c:when>
+									<c:when test="${nameType == '3'}">
+										직원
+									</c:when>
+									<c:when test="${nameType == '4'}">
+										타사
+									</c:when>
+									<c:when test="${nameType == '5'}">
+										본인
+									</c:when>
+									<c:otherwise>
+										타인
+									</c:otherwise>
+								</c:choose>	
+							</c:when>
+							<c:otherwise>
+								μ—†μŒ
+							</c:otherwise>
+						</c:choose>						
+					</td>
+					<td>
+						<c:choose>
+							<c:when test="${phmAuthTypeTxt eq 'νœ΄λŒ€ν° 인증'}">
+								νœ΄λŒ€ν°
+							</c:when>
+							<c:when test="${phmAuthTypeTxt eq 'μ„œλ₯˜μΈμ¦'}">
+								μ„œλ₯˜
+							</c:when>									
+							<c:otherwise>
+								<c:out value="${phmAuthTypeTxt}"/>
+							</c:otherwise>
+						</c:choose>													
+					</td>
+					<td>
+						<c:choose>
+							<c:when test="${phmAuthTypeTxt eq 'μ„œλ₯˜μΈμ¦'}">
+								
+							</c:when>									
+							<c:otherwise>
+								<c:out value="${ownerName}"/>
+							</c:otherwise>
+						</c:choose>							
+					</td>						
+					<td>
+						<c:choose>
+							<c:when test="${phmType eq '03'}">
+								λ°œμ‹ λ²ˆν˜Έ 차단
+							</c:when>
+							<c:otherwise>
+								<c:if test="${authYnTxt eq '심사쀑'}">μΈμ¦μš”μ²­</c:if>
+								<c:if test="${authYnTxt ne '심사쀑'}"><c:out value="${authYnTxt}"/></c:if>
+							</c:otherwise>
+						</c:choose>
+					</td>
+					<td>
+		           		<c:import url="/cmm/fms/selectMberFileInfs.do" charEncoding="utf-8">
+							<c:param name="param_atchFileId" value="${atchFileId}" />
+						</c:import>											
+					</td>
+				</tr>
+			</tbody>
+		</table>	
 	</div>
 
-	<form name="pdfForm" method="post">
-		<input type="hidden" name="atchFileId"/>
-		<input type="hidden" name="fileSn"/>
-		<input type="hidden" name="phmId" value="${phmId}"/>
-		<input type="hidden" name="phoneNumber" value="${phoneNumber}"/>
-		<input type="hidden" name="userName" value="${userName}"/>
-		<input type="hidden" name="managerNm" value="${managerNm}"/>
-		<input type="hidden" name="dept" value="${dept}"/>
-		<input type="hidden" name="nameType" value="${nameType}"/>
-		<input type="hidden" name="phmType" value="${phmType}"/>
-		<input type="hidden" name="authYnTxt" value="${authYnTxt}"/>
-		<input type="hidden" name="phmAuthTypeTxt" value="${phmAuthTypeTxt}"/>
-		<input type="hidden" name="ownerName" value="${ownerName}"/>
-	</form>
+
+	<br /><br />
+	<!-- ν•„μˆ˜μ„œλ₯˜ 체크 -->
+	<div class="listTop" style="float: left; margin-top: 0px; padding-top: 0px;">
+		<p class="tType5">μŠΉμΈμ— ν•„μš”ν•œ μ„œλ₯˜</p>
+	</div>
+	<div class="tableWrap">
+		<table class="tbType1">
+			<colgroup>
+				<col style="width: *%">
+				<col style="width: 20%">
+			</colgroup>
+			<thead>
+				<tr>
+					<td class="left" style="padding: 10px 0 10px 0; line-height: 1.6em;">${requiredDocuments}</td>
+					<td style="padding: 10px 0 10px 0; vertical-align:middle;">
+						<c:if test="${authYn eq 'H'}">
+							<button class="btnType btnType20" onclick="updateAuthYn('<c:out value='${phmId}'/>', 'Y', '<c:out value='${userId}'/>'); return false;" style="background-color: blue;">μΈμ¦μ™„λ£Œ</button>
+							<button class="btnType btnType20" onclick="setRejectAreaCall('SHOW'); return false;">반렀</button>
+						</c:if>
+					</td>
+				</tr>
+			</thead>
+			</tbody>
+		</table>	
+	</div>		
+	
+	
+	<!-- 반렀 -->
+	<div id="rejectArea" class="rejectAreaClass" style="display: none;">
+		<br /><br />
+		<div class="listTop" style="float: left; margin-top: 0px; padding-top: 0px;">
+			<p class="tType5">반렀</p>
+		</div>
+		<div class="tableWrap">
+			<form id="returnPopForm" name="returnPopForm" method="post">
+			<input type="hidden" name="phmId" id="phmId" value="${phmId}"/>
+			<input type="hidden" name="authYn" id="authYn"/>
+			<input type="hidden" name="userId" value="${userId}" />			
+				<table class="tbType3">
+				<colgroup>
+					<col style="width: 15%">
+					<col style="width: *%">
+				</colgroup>
+				<thead>
+					<tr>
+						<th>반렀문ꡬ</th>
+						<td class="left">
+							<c:if test="${authYn eq 'H'}">
+								<select id="changeWord" name="changeWord" style="width: 89%;">
+									<option value="">μ§μ ‘μž…λ ₯</option>
+									<c:choose>
+									<c:when test="${dept == 'c'}">
+									<option value='[문자온] κΈ°μ—…μ˜ μΌλ°˜μ „ν™” λ°œμ‹ λ²ˆν˜Έ 등둝을 μœ„ν•΄μ„œλŠ” "ν†΅μ‹ μ„œλΉ„μŠ€μ΄μš©μ¦λͺ…원"이 λ°˜λ“œμ‹œ μ²¨λΆ€λ˜μ–΄μ•Ό ν•©λ‹ˆλ‹€. ν•΄λ‹Ή μ„œλ₯˜ 첨뢀(문자온 둜그인-λ§ˆμ΄νŽ˜μ΄μ§€-λ°œμ‹ λ²ˆν˜Έκ΄€λ¦¬ 메뉴-μ„œλ₯˜μ œμΆœ-파일 등둝)ν•˜μ—¬ μž¬μ‹ μ²­ν•΄ μ£Όμ‹œλ©΄ λΉ λ₯Έ 승인 λ„μ™€λ“œλ¦¬κ² μŠ΅λ‹ˆλ‹€.'>κΈ°μ—…(νšŒμ‚¬ λͺ…μ˜ μΌλ°˜μ „ν™”)</option>
+									<option value='[문자온] κΈ°μ—…νšŒμ›μ˜ μ „ν™”λ²ˆν˜Έ 쀑 직원λͺ…μ˜λ‘œ κ°€μž…λœ μΌλ°˜μ „ν™”μ˜ λ°œμ‹ λ²ˆν˜Έ 등둝을 μœ„ν•΄μ„œλŠ” "ν†΅μ‹ μ„œλΉ„μŠ€μ΄μš©μ¦λͺ…원", "재직증λͺ…μ„œλ₯˜(재직증λͺ…μ„œ, 4λŒ€λ³΄ν—˜ κ°€μž…μ¦λͺ…μ„œ λ“±)"κ°€ λ°˜λ“œμ‹œ μ²¨λΆ€λ˜μ–΄μ•Ό ν•©λ‹ˆλ‹€. ν•΄λ‹Ή μ„œλ₯˜ 첨뢀(문자온 둜그인-λ§ˆμ΄νŽ˜μ΄μ§€-λ°œμ‹ λ²ˆν˜Έκ΄€λ¦¬ 메뉴-μ„œλ₯˜μ œμΆœ-파일 등둝)ν•˜μ—¬ μž¬μ‹ μ²­ν•΄ μ£Όμ‹œλ©΄ λΉ λ₯Έ 승인 λ„μ™€λ“œλ¦¬κ² μŠ΅λ‹ˆλ‹€.'>κΈ°μ—…(직원 λͺ…μ˜ μΌλ°˜μ „ν™”)</option>
+									<option value='[문자온] κΈ°μ—… 재직 직원λͺ…μ˜μ˜ νœ΄λŒ€ν° λ°œμ‹ λ²ˆν˜Έλ₯Ό λ“±λ‘ν•˜κΈ° μœ„ν•΄μ„œλŠ” "ν†΅μ‹ μ„œλΉ„μŠ€μ΄μš©μ¦λͺ…원(직원 λͺ…μ˜ 본인의 νœ΄λŒ€ν° 인증 λŒ€μ²΄ κ°€λŠ₯)", "재직증λͺ…μ„œλ₯˜(재직증λͺ…μ„œ, 4λŒ€λ³΄ν—˜ κ°€μž…μ¦λͺ…μ„œ λ“±)"κ°€ λ°˜λ“œμ‹œ μ²¨λΆ€λ˜μ–΄μ•Ό ν•©λ‹ˆλ‹€. ν•΄λ‹Ή μ„œλ₯˜ 첨뢀(문자온 둜그인-λ§ˆμ΄νŽ˜μ΄μ§€-λ°œμ‹ λ²ˆν˜Έκ΄€λ¦¬ 메뉴-μ„œλ₯˜μ œμΆœ-파일 등둝)ν•˜μ—¬ μž¬μ‹ μ²­ν•΄ μ£Όμ‹œλ©΄ λΉ λ₯Έ 승인 λ„μ™€λ“œλ¦¬κ² μŠ΅λ‹ˆλ‹€.'>κΈ°μ—…(직원 λͺ…μ˜ νœ΄λŒ€ν°)</option>
+									<option value='[문자온] κΈ°μ—… μžμ‚¬ λͺ…μ˜ μ™Έ 타사 μΌλ°˜μ „ν™” 및 타사 λͺ…μ˜μ˜ νœ΄λŒ€ν° λ°œμ‹ λ²ˆν˜Έ 등둝을 μœ„ν•΄μ„œλŠ” "κ±°λž˜κ΄€κ³„ν™•μΈμ„œ(κ³„μ•½μ„œ, μ„ΈκΈˆκ³„μ‚°μ„œ λ“±)", "λ°œμ‹ λ²ˆν˜Έ λͺ…μ˜μ—…μ²΄μ˜ μ‚¬μ—…μžλ“±λ‘μ¦", "λŒ€λ¦¬μΈ 신뢄증 사본(λ¬Έμžμ˜¨μ— κ°€μž…ν•˜μ‹  λŒ€λ¦¬μΈμ˜ 신뢄증, 주민번호 λ’·μžλ¦¬ λ§ˆμŠ€ν‚Ή 처리)", "λ°œμ‹ λ²ˆν˜Έ λͺ…μ˜μ—…μ²΄μ˜ μœ„μž„μž₯", "ν†΅μ‹ μ„œλΉ„μŠ€μ΄μš©μ¦λͺ…원"이 λ°˜λ“œμ‹œ μ²¨λΆ€λ˜μ–΄μ•Ό ν•©λ‹ˆλ‹€. ν•΄λ‹Ή μ„œλ₯˜ 첨뢀(문자온 둜그인-λ§ˆμ΄νŽ˜μ΄μ§€-λ°œμ‹ λ²ˆν˜Έκ΄€λ¦¬ 메뉴-μ„œλ₯˜μ œμΆœ-파일 등둝)ν•˜μ—¬ μž¬μ‹ μ²­ν•΄ μ£Όμ‹œλ©΄ λΉ λ₯Έ 승인 λ„μ™€λ“œλ¦¬κ² μŠ΅λ‹ˆλ‹€.'>κΈ°μ—…(타사 μΌλ°˜μ „ν™” λ˜λŠ” 타사 νœ΄λŒ€ν°)</option>
+									<option value='[문자온] κΈ°μ—… μžμ‚¬ λͺ…μ˜ μ™Έ 타사 μΌλ°˜μ „ν™” 및 타사 λͺ…μ˜μ˜ νœ΄λŒ€ν° λ°œμ‹ λ²ˆν˜Έ 등둝을 μœ„ν•΄μ„œλŠ” "κ±°λž˜κ΄€κ³„ν™•μΈμ„œ(κ³„μ•½μ„œ, μ„ΈκΈˆκ³„μ‚°μ„œ λ“±)", "λ°œμ‹ λ²ˆν˜Έ λͺ…μ˜μ—…μ²΄μ˜ μ‚¬μ—…μžλ“±λ‘μ¦", "λŒ€λ¦¬μΈ 신뢄증 사본(λ¬Έμžμ˜¨μ— κ°€μž…ν•˜μ‹  λŒ€λ¦¬μΈμ˜ 신뢄증, 주민번호 λ’·μžλ¦¬ λ§ˆμŠ€ν‚Ή 처리)", "λ°œμ‹ λ²ˆν˜Έ λͺ…μ˜μ—…μ²΄μ˜ μœ„μž„μž₯", "ν†΅μ‹ μ„œλΉ„μŠ€μ΄μš©μ¦λͺ…원", "재직증λͺ…μ„œλ₯˜(재직증λͺ…μ„œ, 4λŒ€λ³΄ν—˜ κ°€μž…μ¦λͺ…μ„œ λ“±)"κ°€ λ°˜λ“œμ‹œ μ²¨λΆ€λ˜μ–΄μ•Ό ν•©λ‹ˆλ‹€. ν•΄λ‹Ή μ„œλ₯˜ 첨뢀(문자온 둜그인-λ§ˆμ΄νŽ˜μ΄μ§€-λ°œμ‹ λ²ˆν˜Έκ΄€λ¦¬ 메뉴-μ„œλ₯˜μ œμΆœ-파일 등둝)ν•˜μ—¬ μž¬μ‹ μ²­ν•΄ μ£Όμ‹œλ©΄ λΉ λ₯Έ 승인 λ„μ™€λ“œλ¦¬κ² μŠ΅λ‹ˆλ‹€.'>κΈ°μ—…(타사 직원 μΌλ°˜μ „ν™” λ˜λŠ” 타사 직원 νœ΄λŒ€ν°)</option>
+									</c:when>
+									<c:otherwise>
+									<option value='[문자온] μΌλ°˜μ „ν™” λ°œμ‹ λ²ˆν˜Έ 등둝을 μœ„ν•΄μ„œλŠ” "ν†΅μ‹ μ„œλΉ„μŠ€μ΄μš©μ¦λͺ…원"이 λ°˜λ“œμ‹œ μ²¨λΆ€λ˜μ–΄μ•Ό ν•©λ‹ˆλ‹€. ν•΄λ‹Ή μ„œλ₯˜ 첨뢀(문자온 둜그인-λ§ˆμ΄νŽ˜μ΄μ§€-λ°œμ‹ λ²ˆν˜Έκ΄€λ¦¬ 메뉴-μ„œλ₯˜μ œμΆœ-파일 등둝)ν•˜μ—¬ μž¬μ‹ μ²­ν•΄ μ£Όμ‹œλ©΄ λΉ λ₯Έ 승인 λ„μ™€λ“œλ¦¬κ² μŠ΅λ‹ˆλ‹€.'>개인(본인 μΌλ°˜μ „ν™”)</option>							
+									<option value='[문자온] νƒ€μΈμ˜ μΌλ°˜μ „ν™” λ°œμ‹ λ²ˆν˜Έ 등둝을 μœ„ν•΄μ„œλŠ” "ν†΅μ‹ μ„œλΉ„μŠ€μ΄μš©μ¦λͺ…원", "λ°œμ‹ λ²ˆν˜Έ λͺ…μ˜μžμ˜ μœ„μž„μž₯", "λŒ€λ¦¬μΈ 신뢄증 사본(λ¬Έμžμ˜¨μ— κ°€μž…ν•˜μ‹  λŒ€λ¦¬μΈμ˜ 신뢄증, 주민번호 λ’·μžλ¦¬ λ§ˆμŠ€ν‚Ή 처리)"이 λ°˜λ“œμ‹œ μ²¨λΆ€λ˜μ–΄μ•Ό ν•©λ‹ˆλ‹€. ν•΄λ‹Ή μ„œλ₯˜ 첨뢀(문자온 둜그인-λ§ˆμ΄νŽ˜μ΄μ§€-λ°œμ‹ λ²ˆν˜Έκ΄€λ¦¬ 메뉴-μ„œλ₯˜μ œμΆœ-파일 등둝)ν•˜μ—¬ μž¬μ‹ μ²­ν•΄ μ£Όμ‹œλ©΄ λΉ λ₯Έ 승인 λ„μ™€λ“œλ¦¬κ² μŠ΅λ‹ˆλ‹€.'>개인(타인 μΌλ°˜μ „ν™”)</option>
+									<option value='[문자온] 타인 λͺ…μ˜μ˜ νœ΄λŒ€ν° 번호λ₯Ό λ°œμ‹ λ²ˆν˜Έλ‘œ μ‚¬μš©ν•˜μ‹€ 경우 ν•΄λ‹Ήλ²ˆν˜Έμ— λŒ€ν•œ "ν†΅μ‹ μ„œλΉ„μŠ€μ΄μš©μ¦λͺ…원(타인 λͺ…μ˜ 본인의 νœ΄λŒ€ν° 인증 λŒ€μ²΄ κ°€λŠ₯)", "λ°œμ‹ λ²ˆν˜Έ λͺ…μ˜μžμ˜ μœ„μž„μž₯", "λŒ€λ¦¬μΈ 신뢄증 사본(λ¬Έμžμ˜¨μ— κ°€μž…ν•˜μ‹  λŒ€λ¦¬μΈμ˜ 신뢄증, 주민번호 λ’·μžλ¦¬ λ§ˆμŠ€ν‚Ή 처리)"이 λ°˜λ“œμ‹œ μ²¨λΆ€λ˜μ–΄μ•Ό λ©λ‹ˆλ‹€. ν•΄λ‹Ή μ„œλ₯˜ 첨뢀(문자온 둜그인-λ§ˆμ΄νŽ˜μ΄μ§€-λ°œμ‹ λ²ˆν˜Έκ΄€λ¦¬ 메뉴-μ„œλ₯˜μ œμΆœ-파일 등둝)ν•˜μ—¬ μž¬μ‹ μ²­ν•΄ μ£Όμ‹œλ©΄ λΉ λ₯Έ 승인 λ„μ™€λ“œλ¦¬κ² μŠ΅λ‹ˆλ‹€.'>개인(타인 νœ΄λŒ€ν°)</option>
+									<option value='[문자온] κ°œμΈνšŒμ›μ΄ νšŒμ‚¬ λͺ…μ˜μ˜ μΌλ°˜μ „ν™” λ˜λŠ” νšŒμ‚¬ λͺ…μ˜μ˜ νœ΄λŒ€ν° λ°œμ‹ λ²ˆν˜Έλ₯Ό λ“±λ‘ν•˜κΈ° μœ„ν•΄μ„œλŠ” "ν†΅μ‹ μ„œλΉ„μŠ€μ΄μš©μ¦λͺ…원", "μ‚¬μ—…μžλ“±λ‘μ¦", "재직증λͺ…μ„œ(문자온 νšŒμ› κ°€μž…μžκ°€ μ‚¬μ—…μžλ“±λ‘μ¦ μƒμ˜ λŒ€ν‘œμžκ°€ μ•„λ‹Œ κ²½μš°μ— ν•œν•¨)"κ°€ λ°˜λ“œμ‹œ μ²¨λΆ€λ˜μ–΄μ•Ό ν•©λ‹ˆλ‹€. ν•΄λ‹Ή μ„œλ₯˜ 첨뢀(문자온 둜그인-λ§ˆμ΄νŽ˜μ΄μ§€-λ°œμ‹ λ²ˆν˜Έκ΄€λ¦¬ 메뉴-μ„œλ₯˜μ œμΆœ-파일 등둝)ν•˜μ—¬ μž¬μ‹ μ²­ν•΄ μ£Όμ‹œλ©΄ λΉ λ₯Έ 승인 λ„μ™€λ“œλ¦¬κ² μŠ΅λ‹ˆλ‹€.'>개인(νšŒμ‚¬ μΌλ°˜μ „ν™” λ˜λŠ” νšŒμ‚¬ νœ΄λŒ€ν°, 재직증λͺ…κ°€λŠ₯)</option>
+									<option value='[문자온] κ°œμΈνšŒμ› 쀑 재직증λͺ…μ„œ 제좜이 λΆˆκ°€ν•œ μžκ°€(κ°€μ‘±, μžμ›λ΄‰μ‚¬μž λ“±) νšŒμ‚¬ λͺ…μ˜μ˜ μΌλ°˜μ „ν™” λ˜λŠ” νšŒμ‚¬ λͺ…μ˜μ˜ νœ΄λŒ€ν° λ°œμ‹ λ²ˆν˜Έλ₯Ό λ“±λ‘ν•˜κΈ° μœ„ν•΄μ„œλŠ” "ν†΅μ‹ μ„œλΉ„μŠ€μ΄μš©μ¦λͺ…원", "λ°œμ‹ λ²ˆν˜Έ λͺ…μ˜μ—…μ²΄μ˜ μ‚¬μ—…μžλ“±λ‘μ¦", "λ°œμ‹ λ²ˆν˜Έ λͺ…μ˜μžμ˜ μœ„μž„μž₯", "λŒ€λ¦¬μΈ 신뢄증 사본(λ¬Έμžμ˜¨μ— κ°€μž…ν•˜μ‹  λŒ€λ¦¬μΈμ˜ 신뢄증, 주민번호 λ’·μžλ¦¬ λ§ˆμŠ€ν‚Ή 처리)"이 λ°˜λ“œμ‹œ μ²¨λΆ€λ˜μ–΄μ•Ό ν•©λ‹ˆλ‹€. ν•΄λ‹Ή μ„œλ₯˜ 첨뢀(문자온 둜그인-λ§ˆμ΄νŽ˜μ΄μ§€-λ°œμ‹ λ²ˆν˜Έκ΄€λ¦¬ 메뉴-μ„œλ₯˜μ œμΆœ-파일 등둝)ν•˜μ—¬ μž¬μ‹ μ²­ν•΄ μ£Όμ‹œλ©΄ λΉ λ₯Έ 승인 λ„μ™€λ“œλ¦¬κ² μŠ΅λ‹ˆλ‹€.'>개인(νšŒμ‚¬ μΌλ°˜μ „ν™” λ˜λŠ” νšŒμ‚¬ νœ΄λŒ€ν°, 재직증λͺ…λΆˆκ°€)</option>
+									</c:otherwise>
+									</c:choose>										
+								</select>
+							</c:if>
+						</td>
+					</tr>						
+					<tr>
+						<th>λ°˜λ €μ‚¬μœ </th>
+						<td class="left">
+							<textarea style="width: 87%; height: 160px" name="rejectReason" id="rejectReason" maxlength="200" <c:if test="${authYn eq 'C'}">readonly</c:if>>${rejectReason}</textarea>
+						</td>
+					</tr>
+				</thead>
+				</table>
+				<div class="button_box" style="margin-top: 15px;">
+					<c:if test="${authYn eq 'H'}">
+						<button type="button" class="btnType btnType20" onClick="authYnC(); return false;" style="background-color: blue;">반렀</button>
+					</c:if>
+						<button type="button" class="btnType btnType20" onClick="setRejectAreaCall('HIDE'); return false;">μ·¨μ†Œ</button>
+				</div>
+			</form>
+		</div>
+		<br /><br />
+	</div>	
+
+
+	<c:if test="${not empty fileList}">
+		<div style="width: 100%; text-align: center; margin: 30px 0 30px 0;">		
+		<c:set var="plusCnt" value="0"/>
+		<c:set var="btnClass" value="btnType1"/>
+		<c:forEach var="result" items="${fileList}" varStatus="status">
+			<c:choose>
+				<c:when test="${result.fileSn eq fileSn}">
+					<c:set var="btnClass" value="btnType2"/>
+				</c:when>									
+				<c:otherwise>
+					<c:set var="btnClass" value="btnType1"/>
+				</c:otherwise>
+			</c:choose>			
+			<c:set var="plusCnt" value="${plusCnt + 1}"/>
+			<button class="<c:out value="${btnClass}"/>" onclick="pdfViewPhonePop('${result.atchFileId}','${result.fileSn}'); return false;"> μ²¨λΆ€νŒŒμΌ <c:out value="${plusCnt}"/> </button>
+		</c:forEach>
+		</div>
+	</c:if>
+
+	<c:if test="${fileType eq 'etc'}">
+		<div style="width: 100%; text-align: center; margin: 30px 0 30px 0; color: red;">
+			PDF λ·°μ–΄μ—μ„œ μ§€μ›ν•˜μ§€ μ•ŠλŠ” ν˜•μ‹μ˜ νŒŒμΌμž…λ‹ˆλ‹€. μ²¨λΆ€νŒŒμΌ λ‹€μš΄λ‘œλ“œν›„ ν™•μΈν•΄μ£Όμ„Έμš”.
+		</div>
+	</c:if>		
+	<canvas id="the-canvas" name="the-canvas" style="min-width: 600px; max-width: 1000px; margin-top: 25px; margin-bottom: 25px;"></canvas>
+
+	<div>
+	  <button class="btnType" id="prev">Previous</button>
+	  &nbsp;<span>Page: <span id="page_num"></span> / <span id="page_count"></span></span>&nbsp;
+	  <button class="btnType" id="next">Next</button>
+	  
+	  <div style="float: right; margin-right: 10px;"><button onclick="javascript:opener.location.reload(); self.window.close();" class="btnType">CLOSE</button></div>
+	</div>
+</div>
+
+<br /><br />
+
+<form name="authForm" method="post">
+<input type="hidden" name="phmId"/>
+<input type="hidden" name="authYn"/>
+<input type="hidden" name="userId"/>
+</form>
+
+<form name="pdfForm" method="post">
+<input type="hidden" name="atchFileId"/>
+<input type="hidden" name="fileSn"/>
+<input type="hidden" name="phmId" value="${phmId}"/>
+<input type="hidden" name="phoneNumber" value="${phoneNumber}"/>
+<input type="hidden" name="userId" value="${userId}"/>
+<input type="hidden" name="userName" value="${userName}"/>
+<input type="hidden" name="managerNm" value="${managerNm}"/>
+<input type="hidden" name="dept" value="${dept}"/>
+<input type="hidden" name="nameType" value="${nameType}"/>
+<input type="hidden" name="phmType" value="${phmType}"/>
+<input type="hidden" name="authYn" value="${authYn}"/>
+<input type="hidden" name="authYnTxt" value="${authYnTxt}"/>
+<input type="hidden" name="phmAuthTypeTxt" value="${phmAuthTypeTxt}"/>
+<input type="hidden" name="ownerName" value="${ownerName}"/>
+</form>
 
 </body>
 </html>
Add a comment
List