ERP-node/WebContent/WEB-INF/view/project/partMaster/getPartMasterPopup.jsp

95 lines
2.9 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>
$(function(){
//파트추가 팝업
$(".btnPartSearch").click(function(){
window.open("/project/partMaster/getPartMasterSearchPopup.do", "", "width=1080, height=630");
});
});
</script>
</head>
<body>
<form name="form1" action="" method="post">
<div style="min-width:500px;">
<div class="plm_menu_name">
<h2>
<span>파트 마스터 관리</span>
</h2>
</div>
<section class="contents_page_basic_margin">
<div class="btn_wrap">
<div class="plm_btn_wrap">
<input type="button" value="part추가" class="plm_btns btnPartSearch">
</div>
</div>
<div class="plm_table_wrap">
<table class="plm_table" style="width:99.4%">
<colgroup>
<col width="2%">
<col width="5%">
<col width="8%">
<col width="8%">
<col width="13%">
<col width="*">
<col width="8%">
<col width="13%">
<col width="*">
</colgroup>
<thead>
<tr class="plm_thead">
<td><input type="checkbox"></td>
<td>No</td>
<td>고객사</td>
<td>차종</td>
<td>제품군</td>
<td>제품</td>
<td>Part 구분</td>
<td>Part No</td>
<td>Part Name</td>
</tr>
</thead>
</table>
<div class="plm_scroll_table" style="height:500px;">
<table class="plm_table">
<colgroup>
<col width="2%">
<col width="5%">
<col width="8%">
<col width="8%">
<col width="13%">
<col width="*">
<col width="8%">
<col width="13%">
<col width="*">
</colgroup>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
</div>
</form>
</body>
</html>