110 lines
3.4 KiB
Plaintext
110 lines
3.4 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_openFormPopUp();
|
|
});
|
|
|
|
});
|
|
</script>
|
|
<script>
|
|
//설변 적용내용을 저장한다.
|
|
function fn_openFormPopUp(){
|
|
//if(confirm("Edit Mode로 이동하시겠습니까?")){
|
|
var form = document.form1;
|
|
form.action="/productDevMng/dfmea/dfmeaChangeStructureFormPopUp.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="targetObjId" id="targetObjId" value="${resultMap.TARGET_OBJID}" />
|
|
<section class="">
|
|
<div class="plm_menu_name">
|
|
<h2>
|
|
<span>DFMEA</span>
|
|
</h2>
|
|
</div>
|
|
<div id="businessPopupFormWrap">
|
|
<div class="form_popup_title"> DFMEA 등록정보 입력</div>
|
|
<table class="pmsPopupForm">
|
|
<colgroup>
|
|
<col width="133px"/>
|
|
<col width="*"/>
|
|
</colgroup>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">완료예정일</label>
|
|
</td>
|
|
<td colspan="" class="tr_data_border_bottom">${resultMap.PLAN_COMPLETE_DATE}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">조치내용</label>
|
|
</td>
|
|
<td class="tr_data_border_bottom" style="height:80px !important;"><textarea name="actionContents" id="actionContents" style="width:100%; height:100%; border: 0; border-radius:3px;" readonly>${resultMap.ACTION_CONTENTS}</textarea></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">심각도</label>
|
|
</td>
|
|
<td colspan="" class="tr_data_border_bottom">${resultMap.SEVERITY_SCORE}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">발생도</label>
|
|
</td>
|
|
<td colspan="" class="tr_data_border_bottom">${resultMap.INCIDENCE_SCORE}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">검출도</label>
|
|
</td>
|
|
<td colspan="" class="tr_data_border_bottom">${resultMap.DETECT_SCORE}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title"><label for="">단계</label></td>
|
|
<td>${resultMap.STEP1_TITLE} ${resultMap.STEP2}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">완료일</label>
|
|
</td>
|
|
<td colspan="" class="tr_data_border_bottom">${resultMap.COMPLETE_DATE}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="input_title">
|
|
<label for="">담당자</label>
|
|
</td>
|
|
<td class="tr_data_border_bottom">${resultMap.DEPT_NAME} ${resultMap.USER_NAME}</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> |