- 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
105 lines
3.3 KiB
Plaintext
105 lines
3.3 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>
|
|
</head>
|
|
<script>
|
|
$(document).ready(function(){
|
|
//닫기
|
|
$("#btnClose").click(function(){
|
|
self.close(0);
|
|
});
|
|
|
|
//수정
|
|
$("#btnModify").click(function(){
|
|
fn_openBaseInfoFormPopUp();
|
|
});
|
|
});
|
|
</script>
|
|
<script>
|
|
//save
|
|
function fn_openBaseInfoFormPopUp(){
|
|
//if(confirm("Edit Mode로 이동하시겠습니까?")){
|
|
var form = document.form1;
|
|
|
|
form.action = "/quality/qualityTestFormPopup.do";
|
|
form.target = "_self";
|
|
form.submit();
|
|
//}
|
|
}
|
|
|
|
</script>
|
|
<body>
|
|
<form name="form1" id="form1" action="" method="post">
|
|
<input type="hidden" name="targetObjId" id="targetObjId" value="${resultMap.OBJID}" />
|
|
<section style="min-width:300px;">
|
|
<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="13%"/>
|
|
<col width="18%"/>
|
|
<col width="18%"/>
|
|
<col width="15%"/>
|
|
<col width="20%"/>
|
|
<col width="*"/>
|
|
</colgroup>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">고객사</label>
|
|
</td>
|
|
<td colspan="2" class="tr_data_border_bottom" title="${resultMap.OEM_NAME}">${resultMap.OEM_NAME}</td>
|
|
<td class="input_title">
|
|
<label for="">차종</label>
|
|
</td>
|
|
<td colspan="2" class="tr_data_border_bottom" title="${resultMap.CAR_CODE} (${resultMap.CAR_NAME})">${resultMap.CAR_CODE} (${resultMap.CAR_NAME})</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">제품군</label>
|
|
</td>
|
|
<td colspan="2" class="tr_data_border_bottom" title="${resultMap.PRODUCT_GROUP_NAME}">${resultMap.PRODUCT_GROUP_NAME}</td>
|
|
<td class="input_title">
|
|
<label for="">제품</label>
|
|
</td>
|
|
<td colspan="2" class="tr_data_border_bottom" title="${resultMap.PRODUCT_NAME}">${resultMap.PRODUCT_NAME}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">검사명</label>
|
|
</td>
|
|
<td colspan="5" class="tr_data_border_bottom" title="${resultMap.TEST_TYPE_NAME}">${resultMap.TEST_TYPE_NAME}</td>
|
|
<td><td><td colspans="2"></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">단계1</label>
|
|
</td>
|
|
<td colspan="2" class="tr_data_border_bottom" title="${resultMap.STEP1_NAME}">${resultMap.STEP1_NAME}</td>
|
|
<td class="input_title">
|
|
<label for="">단계2</label>
|
|
</td>
|
|
<td colspan="2" class="tr_data_border_bottom" title="${resultMap.STEP2}">${resultMap.STEP2}</td>
|
|
</tr>
|
|
</table>
|
|
<div class="btn_wrap">
|
|
<div class="plm_btn_wrap_center">
|
|
<input type="button" value="Edit" id="btnModify" class="plm_btns">
|
|
<input type="button" value="닫기" id="btnClose" class="plm_btns">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</form>
|
|
</body>
|
|
</html> |