Files
wace_plm/WebContent/WEB-INF/view/devInfoMng/moldInfoMngPopup.jsp
chpark da06c4684c Initial commit: WACE PLM with database initialization features
- Add Docker Compose configurations for dev, prod, and standalone environments
- Add database initialization scripts (init-db.sh, init-db-docker.sh)
- Add enhanced start-docker-linux.sh with DB init support
- Add comprehensive database initialization guide
- Support for automatic dbexport.pgsql import on first run
- Include safety checks for production environment
2025-08-29 15:46:08 +09:00

206 lines
6.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(){
//금형정보관리 첨부파일 팝업
$(".btnFileUpload").click(function(){
window.open("/devInfoMng/moldInfoMngFileUploadPopup.do", "", "width=590, height=315");
});
//닫기
$("#btnClose").click(function(){
self.close(0);
});
});
</script>
</head>
<body>
<form name="form1" action="" method="post">
<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="확정" class="plm_btns">
<input type="button" value="저장" class="plm_btns">
</div>
</div>
<table class="plm_table">
<colgroup>
<col width="3%">
<col width="8%">
<col width="16%">
<col width="5%">
<col width="5%">
<col width="6%">
<col width="6%">
<col width="3%">
<col width="5%">
<col width="8%">
<col width="8%">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="5%">
</colgroup>
<thead>
<tr class="plm_thead">
<td><input type="checkbox"></td>
<td>품번</td>
<td>품명</td>
<td>재질</td>
<td>두께</td>
<td>EO No</td>
<td>EO Date</td>
<td>Rev</td>
<td>금형등급</td>
<td>금형업체</td>
<td>생산업체</td>
<td colspan="6">공정수</td>
<td>금형사진</td>
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox"></td>
<td>69136-C1700</td>
<td>EXTN-RR C/LAMP HSG SIDE, LH</td>
<td>SGACC</td>
<td>4.65</td>
<td></td>
<td></td>
<td></td>
<td>C</td>
<td>엘씨제이몰드테크</td>
<td>엘씨제이몰드테크</td>
<td>5</td>
<td>DR</td>
<td>TR</td>
<td>FO,FL</td>
<td>C/CUT,PI</td>
<td>C/CUT</td>
<td><a href="#" class="file_icon btnFileUpload"></a></td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>69136-C1700</td>
<td>EXTN-RR C/LAMP HSG SIDE, LH</td>
<td>SGACC</td>
<td>4.65</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>5</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td><a href="#" class="btnFile"></a></td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>69136-C1700</td>
<td>EXTN-RR C/LAMP HSG SIDE, LH</td>
<td>SGACC</td>
<td>4.65</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>5</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td><a href="#" class="btnFile"></a></td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>69136-C1700</td>
<td>EXTN-RR C/LAMP HSG SIDE, LH</td>
<td>SGACC</td>
<td>4.65</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>5</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td><a href="#" class="btnFile"></a></td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>69136-C1700</td>
<td>EXTN-RR C/LAMP HSG SIDE, LH</td>
<td>SGACC</td>
<td>4.65</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>5</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td><a href="#" class="btnFile"></a></td>
</tr>
</tbody>
</table>
</div>
<div class="plm_page">
<table>
<tr>
<td><a href="#" style="color:#f45c64;s">prev</a></td>
<td><a href="#">1</a></td>
<td><a href="#">2</a></td>
<td><a href="#">3</a></td>
<td><a href="#">4</a></td>
<td><a href="#">5</a></td>
<td><a href="#">next</a></td>
</tr>
</table>
<div class="page_pro">
<p class="page_counter">총 10건</p>
</div>
</div>
</section>
<div class="btn_wrap">
<div class="plm_btn_wrap_center">
<input type="button" value="Edit" class="plm_btns" onclick="fn_modidyProject();">
<input type="button" value="닫기" id="btnClose" class="plm_btns">
</div>
</div>
</form>
</body>
</html>