70 lines
1.8 KiB
Plaintext
70 lines
1.8 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
|
<%@ page import="com.pms.common.utils.*"%>
|
|
<%@ page import="java.util.*" %>
|
|
<%@include file= "/init.jsp" %>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title><%=Constants.SYSTEM_NAME%></title>
|
|
</head>
|
|
<body>
|
|
<form name="form1" action="" method="post">
|
|
<div class="pdm_menu_name">
|
|
<h2>
|
|
<span>비정규배포처 목록</span>
|
|
</h2>
|
|
</div>
|
|
<div class="contents_page_scroll_margin">
|
|
<table class="pdm_table_noImg" style="border-bottom:0;">
|
|
<colgroup>
|
|
<col width="10%">
|
|
<col width="30%">
|
|
<col width="30%">
|
|
<col width="30%">
|
|
</colgroup>
|
|
<thead class="pdm_thead">
|
|
<tr>
|
|
<td>No</td>
|
|
<td>소속</td>
|
|
<td>이름</td>
|
|
<td>확인일</td>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
<div class="pdm_scroll_table_wrap" style="width:102.8%; height:328px; border-bottom:2px solid #000;">
|
|
<table class="pdm_table_noImg" style="border-top:0; border-bottom:0; text-align:center;">
|
|
<colgroup>
|
|
<col width="10%">
|
|
<col width="30%">
|
|
<col width="30%">
|
|
<col width="30%">
|
|
</colgroup>
|
|
<c:choose>
|
|
<c:when test="${resultList.size() eq 0}">
|
|
<tr>
|
|
<td colspan="4">조회된 정보가 없습니다.</td>
|
|
</tr>
|
|
</c:when>
|
|
<c:otherwise>
|
|
<c:forEach var="distribution" items="${resultList}">
|
|
<tr>
|
|
<td>${distribution.RNUM}</td>
|
|
<td>${distribution.DEPT_NAME}</td>
|
|
<td>${distribution.USER_NAME}</td>
|
|
<td>${distribution.RECEIPT_DATE_TITLE}</td>
|
|
</tr>
|
|
</c:forEach>
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</table>
|
|
</div>
|
|
<div class="btnCenterWrap">
|
|
<center class="center_btns_wrap">
|
|
<input type="button" value="닫기" name="" id="btn_close" class="pdm_btns" onclick="javascript:self.close();">
|
|
</center>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html> |