127 lines
4.0 KiB
Plaintext
127 lines
4.0 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(){
|
|
//if(confirm("Edit Mode로 이동하시겠습니까?")){
|
|
fn_modify();
|
|
//}
|
|
});
|
|
|
|
});
|
|
</script>
|
|
<script>
|
|
function fn_modify(){
|
|
document.form1.action = "/problem/problemGroupFormPopup.do";
|
|
document.form1.submit();
|
|
}
|
|
</script>
|
|
<body>
|
|
<form name="form1" id="form1" action="" method="post">
|
|
<input type="hidden" name="objId" id="objId" value="${info.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="15%"/>
|
|
<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">
|
|
<c:choose>
|
|
<c:when test="${info.REGION eq 'D'}">
|
|
국내
|
|
</c:when>
|
|
<c:when test="${info.REGION eq 'F'}">
|
|
해외
|
|
</c:when>
|
|
<c:otherwise>
|
|
${info.REGION}
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</td>
|
|
<td class="input_title">
|
|
<label for="">고객사</label>
|
|
</td>
|
|
<td colspan="2" class="tr_data_border_bottom" title="${info.OEM_NAME}">${info.OEM_NAME}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">차종</label>
|
|
</td>
|
|
<td colspan="2" class="tr_data_border_bottom" title="${info.CAR_CODE} (${info.CAR_NAME})">${info.CAR_CODE} (${info.CAR_NAME})</td>
|
|
<td class="input_title">
|
|
<label for="">제품군</label>
|
|
</td>
|
|
<td colspan="2" class="tr_data_border_bottom" title="${info.PROD_GROUP_NAME}">${info.PROD_GROUP_NAME}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">제품</label>
|
|
</td>
|
|
<td colspan="5" class="tr_data_border_bottom" title="${info.PROD_NAME}">${info.PROD_NAME}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title"><label for="">단계</label></td>
|
|
<td colspan="2" class="tr_data_border_bottom" title="${info.STEP1_TITLE} ${info.STEP2}">
|
|
${info.STEP1_TITLE} ${info.STEP2}
|
|
</td>
|
|
<td class="input_title">
|
|
<label for="">검사명</label>
|
|
</td>
|
|
<td colspan="2" class="tr_data_border_bottom" title="${info.TEST_TYPE_NAME}">${info.TEST_TYPE_NAME}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">조치담당자</label>
|
|
</td>
|
|
<td colspan="2" class="tr_data_border_bottom" title="${info.RES_PIC_DEPT_NAME} ${info.RES_PIC_USER_NAME}">${info.RES_PIC_DEPT_NAME} ${info.RES_PIC_USER_NAME}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">제목</label>
|
|
</td>
|
|
<td colspan="5" class="tr_data_border_bottom" title="${info.TITLE}">${info.TITLE}</td>
|
|
</tr>
|
|
</table>
|
|
<div class="btn_wrap">
|
|
<div class="plm_btn_wrap_center">
|
|
<!-- //배포된 이후에는 수정을 하지 못함. -->
|
|
<c:if test="${empty info.DISTRIBUTE_DATE}">
|
|
<input type="button" value="Edit" id="btnModify" class="plm_btns">
|
|
</c:if>
|
|
<input type="button" value="닫기" id="btnClose" class="plm_btns">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</form>
|
|
</body>
|
|
</html> |