최초커밋
This commit is contained in:
@@ -0,0 +1,99 @@
|
||||
<%@ 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_openFormPopUp();
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
function fn_openFormPopUp(){
|
||||
//if(confirm("Edit Mode로 이동하시겠습니까?")){
|
||||
var form = document.form1;
|
||||
form.action = "/devInfoMng/devMaster/devMasterFormPopUp.do";
|
||||
form.target = "_self";
|
||||
form.submit();
|
||||
//}
|
||||
}
|
||||
</script>
|
||||
|
||||
<body>
|
||||
<form name="form1" id="form1" action="" method="post">
|
||||
<input type="hidden" name="objId" id="objId" value="${devMasterMap.OBJID}" />
|
||||
<section style="min-width:380px;">
|
||||
<div class="plm_menu_name">
|
||||
<h2>
|
||||
<span>Part</span>
|
||||
</h2>
|
||||
</div>
|
||||
<div id="businessPopupFormWrap">
|
||||
<div class="form_popup_title"> 개발 Master 정보입력</div>
|
||||
<table class="pmsPopupForm">
|
||||
<colgroup>
|
||||
<col width="18%"/>
|
||||
<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="${devMasterMap.OEM_NAME}">${devMasterMap.OEM_NAME}</td>
|
||||
<td class="input_title">
|
||||
<label for="">차종</label>
|
||||
</td>
|
||||
<td colspan="2" class="tr_data_border_bottom" title="${devMasterMap.CAR_CODE} (${devMasterMap.OEM_NAME})">${devMasterMap.CAR_CODE} (${devMasterMap.OEM_NAME})</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="input_title">
|
||||
<label for="">제품군</label>
|
||||
</td>
|
||||
<td colspan="2" class="tr_data_border_bottom" title="${devMasterMap.PRODUCT_GROUP_NAME}">${devMasterMap.PRODUCT_GROUP_NAME}</select>
|
||||
</td>
|
||||
<td class="input_title">
|
||||
<label for="">제품</label>
|
||||
</td>
|
||||
<td colspan="2" class="tr_data_border_bottom" title="${devMasterMap.PRODUCT_NAME}">${devMasterMap.PRODUCT_NAME}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="input_title">
|
||||
<label for="">Part Master</label>
|
||||
</td>
|
||||
<td colspan="5" class="tr_data_border_bottom" title="${devMasterMap.PART_MASTER_TITLE}">${devMasterMap.PART_MASTER_TITLE}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="input_title">
|
||||
<label for="">품번</label>
|
||||
</td>
|
||||
<td colspan="5" class="tr_data_border_bottom" title="${devMasterMap.ASSAY_PART_NO}">${devMasterMap.ASSAY_PART_NO}</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>
|
||||
Reference in New Issue
Block a user