- 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
138 lines
4.5 KiB
Plaintext
138 lines
4.5 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(){
|
|
$("#btnEdit").click(function(){
|
|
//if(confirm("Edit Mode로 이동하시겠습니까?")){
|
|
fn_openFormPopUp();
|
|
//}
|
|
});
|
|
|
|
$("#btnClose").click(function(){
|
|
self.close();
|
|
});
|
|
|
|
$("#btnMail").click(function(){
|
|
fn_sendMail();
|
|
});
|
|
});
|
|
</script>
|
|
<script>
|
|
//수정화면으로 이동한다.
|
|
function fn_openFormPopUp(){
|
|
var form = document.form1;
|
|
|
|
form.target="_self";
|
|
form.action="/devInfoMng/devMaster/devMasterApplyEOFormPopUp.do";
|
|
form.submit();
|
|
}
|
|
|
|
//메일 배포
|
|
function fn_sendMail(){
|
|
var params = "";
|
|
params += "?parentType=devMasterApplyEO";
|
|
params += "&objId="+${param.targetObjId};
|
|
|
|
window.open("/common/searchMailReceiver.do"+params, "", "width=480, height=367");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<form name="form1" id="form1" action="" method="post">
|
|
<!-- 개발 Master에 연결된 Part의 OBJID -->
|
|
<input type="hidden" name="objId" value="${applyInfoMap.OBJID}">
|
|
<input type="hidden" name="targetObjId" value="${param.targetObjId}">
|
|
<section class="">
|
|
<div class="plm_menu_name">
|
|
<h2>
|
|
<span>개발마스터</span>
|
|
</h2>
|
|
</div>
|
|
<div id="businessPopupFormWrap">
|
|
<div class="form_popup_title"> 상세화면</div>
|
|
<table class="pmsPopupForm">
|
|
<colgroup>
|
|
<col width="40%">
|
|
<col width="15%">
|
|
<col width="45%">
|
|
</colgroup>
|
|
<tr>
|
|
<td class="input_title" colspan="2">
|
|
<label for="">현재적용EO</label>
|
|
</td>
|
|
<td class="tr_data_border_bottom" title="${applyInfoMap.EO_NO}">${applyInfoMap.EO_NO}</td>
|
|
</tr>
|
|
<tr>
|
|
<td rowspan="3" class="input_title">
|
|
<label for="">가소요 등록요청 size</label>
|
|
</td>
|
|
<td class="input_sub_title">
|
|
<label for="">두께</label>
|
|
</td>
|
|
<td class="tr_data_border_bottom" title="${applyInfoMap.EXPECT_REQUEST_SIZE_THICKNESS}">${applyInfoMap.EXPECT_REQUEST_SIZE_THICKNESS}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_sub_title">
|
|
<label for="">가로</label>
|
|
</td>
|
|
<td class="tr_data_border_bottom" title="${applyInfoMap.EXPECT_REQUEST_SIZE_HORIZONTAL}">${applyInfoMap.EXPECT_REQUEST_SIZE_HORIZONTAL}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_sub_title">
|
|
<label for="">세로</label>
|
|
</td>
|
|
<td class="tr_data_border_bottom" title="${applyInfoMap.EXPECT_REQUEST_SIZE_VERTICAL}">${applyInfoMap.EXPECT_REQUEST_SIZE_VERTICAL}</td>
|
|
</tr>
|
|
<tr>
|
|
<td rowspan="3" class="input_title">
|
|
<label for="">실작업 size</label>
|
|
</td>
|
|
<td class="input_sub_title">
|
|
<label for="" >두께</label>
|
|
</td>
|
|
<td class="tr_data_border_bottom" title="${applyInfoMap.REAL_WORK_SIZE_THICKNESS}">${applyInfoMap.REAL_WORK_SIZE_THICKNESS}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_sub_title">
|
|
<label for="">가로</label>
|
|
</td>
|
|
<td class="tr_data_border_bottom" title="${applyInfoMap.REAL_WORK_SIZE_HORIZONTAL}">${applyInfoMap.REAL_WORK_SIZE_HORIZONTAL}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_sub_title">
|
|
<label for="">세로</label>
|
|
</td>
|
|
<td class="tr_data_border_bottom" title="${applyInfoMap.REAL_WORK_SIZE_VERTICAL}">${applyInfoMap.REAL_WORK_SIZE_VERTICAL}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title" colspan="2">
|
|
<label for="">NET중량(g)</label>
|
|
</td>
|
|
<td class="tr_data_border_bottom" title="${applyInfoMap.NET_WEIGHT}">${applyInfoMap.NET_WEIGHT}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title" colspan="2">
|
|
<label for="">원자재관리팀 확인유무</label>
|
|
</td>
|
|
<td class="tr_data_border_bottom" title="${'UNKNOWN' eq applyInfoMap.CHARGE_DEPT_CONFIRM?'미확인':'확인완료'}">${'UNKNOWN' eq applyInfoMap.CHARGE_DEPT_CONFIRM?'미확인':'확인완료'}</td>
|
|
</tr>
|
|
</table>
|
|
<div class="btn_wrap">
|
|
<div class="plm_btn_wrap_center">
|
|
<input type="button" value="Edit" id="btnEdit" class="plm_btns">
|
|
<input type="button" value="배포" id="btnMail" class="plm_btns">
|
|
<input type="button" value="닫기" id="btnClose" class="plm_btns">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</form>
|
|
</body>
|
|
</html> |