177 lines
6.1 KiB
Plaintext
177 lines
6.1 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
|
<%@ page import="com.pms.common.utils.*"%>
|
|
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
|
|
<%@ page import="java.util.*" %>
|
|
<%@include file= "/init.jsp" %>
|
|
<%
|
|
PersonBean person = (PersonBean)session.getAttribute(Constants.PERSON_BEAN);
|
|
String userId = CommonUtils.checkNull(person.getUserId());
|
|
%>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title><%=Constants.SYSTEM_NAME%></title>
|
|
</head>
|
|
<script>
|
|
$(document).ready(function(){
|
|
$("#btnClose").click(function(){
|
|
self.close(0);
|
|
});
|
|
});
|
|
|
|
</script>
|
|
<style>
|
|
.input_title {border-left:1px solid #ccc;}
|
|
.input_sub_title {border-left:1px solid #ccc;}
|
|
.pmsPopupForm tr:last-child td{border-bottom:1px solid #ccc;}
|
|
</style>
|
|
<body>
|
|
<form name="form1" id="form1" action="" method="post">
|
|
<input type="hidden" name="PARENT_OBJID" id="PARENT_OBJID" value="${resultMap.OBJID}">
|
|
<section>
|
|
<div class="plm_menu_name" style="display:flex;">
|
|
<h2>
|
|
<span>재고 및 투입이력</span>
|
|
</h2>
|
|
</div>
|
|
<div id="businessPopupFormWrap">
|
|
<table class="pmsPopupForm">
|
|
<colgroup>
|
|
<col width="*">
|
|
</colgroup>
|
|
<tr>
|
|
<td>
|
|
<div class="project_form_in_table"style="width:100%" id="usedMngFileAreaTable" >
|
|
<div class="plm_scroll_table">
|
|
<table id="usedMngFileArea" class="plm_table">
|
|
<colgroup>
|
|
<col width="3%" />
|
|
<col width="7%" />
|
|
<col width="7%" />
|
|
<col width="7%" />
|
|
<col width="7%" /> <!-- 재질 -->
|
|
<col width="7%" />
|
|
<!-- <col width="7%" /> -->
|
|
|
|
<col width="4%" />
|
|
<col width="4%" />
|
|
<col width="4%" />
|
|
<col width="4%" />
|
|
<col width="4%" />
|
|
<col width="4%" />
|
|
|
|
<col width="7%" />
|
|
<col width="7%" />
|
|
<col width="7%" /> <!-- 입고일 -->
|
|
<col width="11%" />
|
|
<col width="8.5%"/>
|
|
<col width="7%" />
|
|
<col width="*" />
|
|
</colgroup>
|
|
<thead>
|
|
<tr class="plm_thead">
|
|
<td>No</td>
|
|
<td>품목</td>
|
|
<td>품명</td>
|
|
<td>규격</td>
|
|
<td>재질</td>
|
|
<td>단위</td>
|
|
<!-- <td>중량</td> -->
|
|
|
|
<td>두께</td>
|
|
<td>가로</td>
|
|
<td>세로</td>
|
|
<td>외경</td>
|
|
<td>내경</td>
|
|
<td>길이</td>
|
|
|
|
<td>현재고 수량</td>
|
|
<td>입고수량</td>
|
|
<td>입고일</td>
|
|
<td>사용처</td>
|
|
<td>투입수량</td>
|
|
<td>투입일</td>
|
|
<td>비고</td>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
<div class="plm_scroll_table" style="height:290px;">
|
|
<table id="usedMngFileArea" class="plm_table">
|
|
<colgroup>
|
|
<col width="3%" />
|
|
<col width="7%" />
|
|
<col width="7%" />
|
|
<col width="7%" />
|
|
<col width="7%" /> <!-- 재질 -->
|
|
<col width="7%" />
|
|
<!-- <col width="7%" /> -->
|
|
|
|
<col width="4%" />
|
|
<col width="4%" />
|
|
<col width="4%" />
|
|
<col width="4%" />
|
|
<col width="4%" />
|
|
<col width="4%" />
|
|
|
|
<col width="7%" />
|
|
<col width="7%" />
|
|
<col width="7%" /> <!-- 입고일 -->
|
|
<col width="11%" />
|
|
<col width="8.5%"/>
|
|
<col width="7%" />
|
|
<col width="*" />
|
|
</colgroup>
|
|
<c:choose>
|
|
<c:when test="${empty LIST}">
|
|
<tr style="text-align:center;">
|
|
<td align="center" colspan="19">조회된 데이터가 없습니다.</td>
|
|
</tr>
|
|
</c:when>
|
|
<c:otherwise>
|
|
<c:forEach var="item" items="${LIST}" varStatus="varStatus">
|
|
<tr>
|
|
<td title="${item.RNUM}">${item.RNUM}</td>
|
|
<td title="${item.PART_NO}">${item.PART_NO}</td>
|
|
<td title="${item.PART_NAME}">${item.PART_NAME}</td>
|
|
<td title="${item.SPEC}">${item.SPEC}</td>
|
|
<td title="${item.MATERIAL}">${item.MATERIAL}</td>
|
|
<td title="${item.UNIT}">${item.UNIT}</td>
|
|
<%-- <td title="${item.WEIGHT}">${item.WEIGHT}</td> --%>
|
|
|
|
<td title="${item.THICKNESS}">${item.THICKNESS}</td>
|
|
<td title="${item.WIDTH}">${item.WIDTH}</td>
|
|
<td title="${item.HEIGHT}">${item.HEIGHT}</td>
|
|
<td title="${item.OUT_DIAMETER}">${item.OUT_DIAMETER}</td>
|
|
<td title="${item.IN_DIAMETER}">${item.IN_DIAMETER}</td>
|
|
<td title="${item.LENGTH}">${item.LENGTH}</td>
|
|
|
|
<td title="${item.QTY}">${item.QTY}</td> <!-- 현재고 수량 -->
|
|
<td title="${item.ARRIVAL_QTY}">${item.ARRIVAL_QTY}</td> <!-- 입고수량 -->
|
|
<td title="${item.ARRIVAL_DATE}">${item.ARRIVAL_DATE}</td> <!-- 입고일 -->
|
|
<td title="${item.USED}">${item.USED}</td> <!-- 사용처 -->
|
|
<td title="${item.INPUT_QTY}">${item.INPUT_QTY}</td> <!-- 투입수량 -->
|
|
<td title="${item.INPUT_DATE_TITLE}">${item.INPUT_DATE_TITLE}</td> <!-- 투입일 -->
|
|
<td title="${item.REMARK}" class="align_l">${item.REMARK}</td> <!-- 비고 -->
|
|
</tr>
|
|
</c:forEach>
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="btn_wrap">
|
|
<div class="plm_btn_wrap_center">
|
|
<input type="button" value="닫기" id="btnClose" class="plm_btns">
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</form>
|
|
</body>
|
|
</html> |