96 lines
3.2 KiB
Plaintext
96 lines
3.2 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);
|
|
});
|
|
});
|
|
</script>
|
|
<script>
|
|
//Form 화면으로 이동한다.
|
|
function fn_openBaseInfoFormPopUp(){
|
|
//if(confirm("Edit Mode로 이동하시겠습니까?")){
|
|
var form = document.form1;
|
|
form.action = "/protoDevMng/protoPlanBaseInfoFormPopUp.do";
|
|
form.target = "_self";
|
|
form.submit();
|
|
//}
|
|
}
|
|
</script>
|
|
|
|
<body>
|
|
<form name="form1" id="form1" action="" method="post">
|
|
<input type="hidden" name="objId" id="objId" value="${resultMap.OBJID}" />
|
|
<input type="hidden" name="status" id="status" value="${resultMap.STATUS}" />
|
|
<section style="width:500px;">
|
|
<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="2" class="tr_data_border_bottom" title="${resultMap.PARTNER_DEPT_NAME} ${resultMap.PARTNER_USER_NAME}">${resultMap.PARTNER_DEPT_NAME} ${resultMap.PARTNER_USER_NAME}</td>
|
|
<td class="input_title">
|
|
|
|
</td>
|
|
<td colspan="2" class="tr_data_border_bottom">
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<div class="btn_wrap">
|
|
<div class="plm_btn_wrap_center">
|
|
<input type="button" value="Edit" id="btnSave" class="plm_btns" onclick="fn_openBaseInfoFormPopUp();">
|
|
<input type="button" value="닫기" id="btnClose" class="plm_btns">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</form>
|
|
</body>
|
|
</html> |