FAICS/src/main/webapp/WEB-INF/jsp/equip/status.jsp

101 lines
5.1 KiB
Plaintext
Raw Normal View History

2022-03-17 02:42:45 +00:00
<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<script type="text/javaScript" language="javascript" defer="defer">
<!--
/* 화면 출력 function */
function fn_goPrint() {
var printThis = document.getElementById("table").innerHTML;
printDiv(printThis);
}
/* 중국어선 나포정보 상세화면 이동 function */
function fnEquipList(equipId){
document.equipListForm.type.value = equipId;
document.equipListForm.action = "<c:url value='/equip/equipList.do'/>";
document.equipListForm.submit();
}
//-->
</script>
<div class="pageinfo">
<ul class="right btn-style">
<li><a class="btn_print" href="javascript:fn_goPrint();"></a></li>
<li><a class="btn_excel" href="/equip/statusExcel.do"></a></li>
</ul>
</div>
<form id="equipListForm" name="equipListForm" method="post" action="">
<input type="hidden" id="type" name="type" path="type" value=""/>
</form>
<!-- List -->
<div id="table">
<table class="tbl_listview" width="100%" border="1" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th align="center"><spring:message code="equip.name" /></th>
<th align="center"><spring:message code="equip.total" /></th>
<th align="center"><spring:message code="equip.PS00" /></th>
<th align="center"><spring:message code="equip.PS01" /></th>
<th align="center"><spring:message code="equip.PS02" /></th>
<th align="center"><spring:message code="equip.PS03" /></th>
<th align="center"><spring:message code="equip.PS04" /></th>
<th align="center"><spring:message code="equip.PS05" /></th>
<th align="center"><spring:message code="equip.PS06" /></th>
<th align="center"><spring:message code="equip.PS07" /></th>
<th align="center"><spring:message code="equip.PS08" /></th>
<th align="center"><spring:message code="equip.PS09" /></th>
<th align="center"><spring:message code="equip.PS10" /></th>
<th align="center"><spring:message code="equip.PS11" /></th>
<th align="center"><spring:message code="equip.PS12" /></th>
<th align="center"><spring:message code="equip.PS13" /></th>
<th align="center"><spring:message code="equip.PS14" /></th>
<th align="center"><spring:message code="equip.PS15" /></th>
<th align="center"><spring:message code="equip.PS16" /></th>
<th align="center"><spring:message code="equip.PS17" /></th>
<th align="center"><spring:message code="equip.PS18" /></th>
<th align="center"><spring:message code="equip.PS19" /></th>
<th align="center"><spring:message code="equip.PS50" /></th>
<th align="center"><spring:message code="equip.PS90" /></th>
<th align="center"><spring:message code="equip.PS91" /></th>
<th align="center"><spring:message code="equip.PS92" /></th>
<th align="center"><spring:message code="equip.PS93" /></th>
<th align="center"><spring:message code="equip.PS94" /></th>
</tr>
</thead>
<c:forEach var="equipStatus" items="${equipStatusList}" varStatus="status">
<tr>
<td align="center"><a href="javascript:fnEquipList('<c:out value="${equipStatus.EQUIP }"/>')" style="color:#0000ff;"><c:out value="${equipStatus.EQUIP_NM}" /></a></td>
<td align="center"><c:out value="${equipStatus.TOTAL}" /></td>
<td align="center"><c:out value="${equipStatus.PS00}" /></td>
<td align="center"><c:out value="${equipStatus.PS01}" /></td>
<td align="center"><c:out value="${equipStatus.PS02}" /></td>
<td align="center"><c:out value="${equipStatus.PS03}" /></td>
<td align="center"><c:out value="${equipStatus.PS04}" /></td>
<td align="center"><c:out value="${equipStatus.PS05}" /></td>
<td align="center"><c:out value="${equipStatus.PS06}" /></td>
<td align="center"><c:out value="${equipStatus.PS07}" /></td>
<td align="center"><c:out value="${equipStatus.PS08}" /></td>
<td align="center"><c:out value="${equipStatus.PS09}" /></td>
<td align="center"><c:out value="${equipStatus.PS10}" /></td>
<td align="center"><c:out value="${equipStatus.PS11}" /></td>
<td align="center"><c:out value="${equipStatus.PS12}" /></td>
<td align="center"><c:out value="${equipStatus.PS13}" /></td>
<td align="center"><c:out value="${equipStatus.PS14}" /></td>
<td align="center"><c:out value="${equipStatus.PS15}" /></td>
<td align="center"><c:out value="${equipStatus.PS16}" /></td>
<td align="center"><c:out value="${equipStatus.PS17}" /></td>
<td align="center"><c:out value="${equipStatus.PS18}" /></td>
<td align="center"><c:out value="${equipStatus.PS19}" /></td>
<td align="center"><c:out value="${equipStatus.PS50}" /></td>
<td align="center"><c:out value="${equipStatus.PS90}" /></td>
<td align="center"><c:out value="${equipStatus.PS91}" /></td>
<td align="center"><c:out value="${equipStatus.PS92}" /></td>
<td align="center"><c:out value="${equipStatus.PS93}" /></td>
<td align="center"><c:out value="${equipStatus.PS94}" /></td>
</tr>
</c:forEach>
</table>
</div>