ERP-node/WebContent/WEB-INF/view/project/wbs/taskConfirmHistoryPopUp.jsp

97 lines
3.0 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>
<script>
$(document).ready(function(){
$("#btnClose").click(function(){
self.close(0);
});
});
</script>
<script>
function fn_openConfirmDetail(objId){
window.open("/project/wbs/openWBSTaskConfirmDetailPopUp.do?confirmObjId="+objId, "", "width=333, height=250");
}
</script>
</head>
<body>
<form name="form1" action="" method="post">
<section class="min-width:333px;">
<div class="plm_menu_name">
<h2>
<span>Task 확인</span>
</h2>
</div>
<section class="contents_page_basic_margin">
<div class="plm_table_wrap">
<div style="overflow-y:scroll; margin-top:15px;">
<table class="plm_table" style="width:100%;">
<colgroup>
<col width="5%"/>
<col width="8%"/>
<col width="*"/>
<col width="11%"/>
<col width="25%"/>
<col width="15%"/>
</colgroup>
<thead>
<tr class="plm_thead">
<td>No</td>
<td>결과</td>
<td>comment</td>
<td>권한</td>
<td>등록자</td>
<td>등록일</td>
</tr>
</thead>
</table>
</div>
<div class="plm_scroll_table" style="width:100%; height:300px;">
<table class="plm_table">
<colgroup>
<col width="5%"/>
<col width="8%"/>
<col width="*"/>
<col width="11%"/>
<col width="25%"/>
<col width="15%"/>
</colgroup>
<c:choose>
<c:when test="${empty confirmList}">
<tr style="text-align:center;">
<td align="center" colspan="6">조회된 데이터가 없습니다.</td>
</tr>
</c:when>
<c:otherwise>
<c:forEach var="item" items="${confirmList}" varStatus="varStatus">
<tr>
<td>${item.RNUM}</td>
<td>${item.RESULT_TITLE}</td>
<td title="${item.CONTENTS}" class="align_l"><a href="#" onclick="fn_openConfirmDetail('${item.OBJID}')">&nbsp;&nbsp;${item.CONTENTS}</td>
<td>${item.CONFIRM_TYPE_TITLE}</td>
<td>${item.DEPT_NAME} ${item.USER_NAME}</td>
<td>${item.REGDATE_TITLE}</td>
</tr>
</c:forEach>
</c:otherwise>
</c:choose>
</table>
</div>
</div>
<div class="btn_wrap">
<div class="plm_btn_wrap_center">
<input type="button" value="닫기" id="btnClose" class="plm_btns">
</div>
</div>
</section>
</section>
</form>
</body>
</html>