759 lines
32 KiB
Plaintext
759 lines
32 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" %>
|
|
<%
|
|
List list = (ArrayList)request.getAttribute("LIST");
|
|
System.out.println("list : "+list);
|
|
%>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title><%=Constants.SYSTEM_NAME%></title>
|
|
<!-- JSTL 페이징변수선언 -->
|
|
<c:set var="totalCount" value="${empty TOTAL_COUNT?0:TOTAL_COUNT}" />
|
|
<c:set var="maxPage" value="${empty MAX_PAGE_SIZE?1:MAX_PAGE_SIZE}" />
|
|
<c:set var="nPage" value="${empty param.page?1:param.page}" />
|
|
<c:set var="pageIndex" value="${(nPage-1)/10}" />
|
|
<c:set var="nextPage" value="${empty NEXT_PAGE?1:NEXT_PAGE}" />
|
|
<c:set var="prevPage" value="${empty PREV_PAGE?1:PREV_PAGE}" />
|
|
<script>
|
|
|
|
$(document).ready(function(){
|
|
//고객사 목록 조회
|
|
fn_setOEMList();
|
|
|
|
//제품군 목록 조회
|
|
fn_setProductGroupList();
|
|
|
|
//HMC 적용 요구시점 목록 조회
|
|
fn_setApplyPointList();
|
|
|
|
//고객사별 차종 목록 조회
|
|
$("#search_oemObjId").change(function(){
|
|
var oemObjId = $(this).val();
|
|
fn_setCarTypeList(oemObjId);
|
|
});
|
|
|
|
//제품군 제품 목록 조회
|
|
$("#search_productGroupObjId").change(function(){
|
|
var productGroup = $(this).val();
|
|
fn_setProductTypeList(productGroup);
|
|
});
|
|
|
|
$("input[type=text]").keyup(function(e){
|
|
if(e.keyCode == 13){
|
|
$("#page").val("1");
|
|
fn_search();
|
|
}
|
|
});
|
|
|
|
//search
|
|
$("#btnSearch").click(function(){
|
|
$("#page").val("1");
|
|
fn_search();
|
|
});
|
|
|
|
//등록 팝업
|
|
$(".registBtn").click(function(){
|
|
window.open("/productDevMng/eoApplyStatusFormPopUp.do", "", "width=680, height=573");
|
|
});
|
|
|
|
//EO적용 요구시점 입력 팝업
|
|
$(".btnEoApplyDemand").click(function(){
|
|
var objId = $(this).attr("data-OBJID");
|
|
var targetObjId = $(this).attr("data-TARGET_OBJID");
|
|
var params = "?objId="+objId+"&targetObjId="+targetObjId;
|
|
window.open("/productDevMng/eoApplyDemandFormPopUp.do"+params, "", "width=500, height=400");
|
|
});
|
|
|
|
//금형/JIG 수정승인관리 입력 팝업
|
|
$(".btnModifyConfirm").click(function(){
|
|
var objId = $(this).attr("data-OBJID");
|
|
var targetObjId = $(this).attr("data-TARGET_OBJID");
|
|
var targetType = $(this).attr("data-TARGET_TYPE");
|
|
var params = "?objId="+objId+"&targetObjId="+targetObjId+"&targetType="+targetType;
|
|
window.open("/productDevMng/ModifyConfirmFormPopUp.do"+params, "", "width=500, height=460");
|
|
});
|
|
|
|
//EO적용완료 점검결과 입력 팝업
|
|
$(".btnEOCheckResult").click(function(){
|
|
var objId = $(this).attr("data-OBJID");
|
|
var targetObjId = $(this).attr("data-TARGET_OBJID");
|
|
var params = "?objId="+objId+"&targetObjId="+targetObjId;
|
|
window.open("/productDevMng/EOCheckResultFormPopUp.do"+params, "", "width=500, height=345");
|
|
});
|
|
|
|
//금형/JIG 수정승인관리 상세팝업
|
|
$(".btnModifyConfirmDetail").click(function(){
|
|
var targetType = $(this).attr("data-TARGET_TYPE");
|
|
});
|
|
|
|
//EO 적용완료 점검결과 상세팝업
|
|
$(".btnEOCheckResultDetail").click(function(){
|
|
|
|
});
|
|
|
|
//OE자료등록 팝업
|
|
$(".oeFile").click(function(){
|
|
var targetObjId = $(this).attr("data-TARGET_OBJID");
|
|
var params = "?targetObjId="+targetObjId;
|
|
window.open("/productDevMng/eoApplyStatusFormPopUp.do"+params, "", "width=800, height=335");
|
|
});
|
|
|
|
$(".btnDetailPart").click(function(){
|
|
var partNo = $(this).attr("data-PART_NO");
|
|
fnc_openPartDetailPopup("${connectUserId}", partNo);
|
|
});
|
|
|
|
//FN Task에 연결된 WBS Task 목록 Pop Up
|
|
$(".taskLink").click(function(){
|
|
var objId = $(this).attr("data-OBJID");
|
|
window.open("/project/wbs/openFNTaskConnectedTaskListPopUp.do?subObjId="+objId+"", "", "width=900, height=400");
|
|
});
|
|
|
|
|
|
//hover
|
|
$(".base").hover(function(){
|
|
var part = $(this).attr("data_PART");
|
|
$("."+part).css("background-color","#e7eaee");
|
|
}, function(){
|
|
var part = $(this).attr("data_PART");
|
|
$("."+part).css("background-color","#ffffff");
|
|
});
|
|
|
|
$(".sub1").hover(function(){
|
|
var part = $(this).attr("data_PART");
|
|
$(".sub1_"+part).css("background-color","#e7eaee");
|
|
},function(){
|
|
var part = $(this).attr("data_PART");
|
|
$(".sub1_"+part).css("background-color","#ffffff");
|
|
});
|
|
|
|
$(".sub2").hover(function(){
|
|
var part = $(this).attr("data_PART");
|
|
$(".sub2_"+part).css("background-color","#e7eaee");
|
|
},function(){
|
|
var part = $(this).attr("data_PART");
|
|
$(".sub2_"+part).css("background-color","#ffffff");
|
|
});
|
|
|
|
fnc_datepick();
|
|
});
|
|
</script>
|
|
<script>
|
|
//oem 목록 조회
|
|
function fn_setOEMList(){
|
|
$.ajax({
|
|
url:"/common/getOEMList.do",
|
|
type:"POST",
|
|
data:{"isJson":true},
|
|
dataType:"json",
|
|
success:function(data){
|
|
var appendCode = "";
|
|
|
|
$.each(data, function(i){
|
|
appendCode += "<option value='"+data[i].OBJID+"'>"+data[i].OEM_NAME+"("+data[i].OEM_CODE+")</option>";
|
|
});
|
|
|
|
$("#search_oemObjId").append(appendCode);
|
|
|
|
var paramVal = "${param.search_oemObjId}";
|
|
if(paramVal != ""){
|
|
$("#search_oemObjId > option[value="+paramVal+"]").attr("selected", "true");
|
|
$("#search_oemObjId").trigger("change");
|
|
}
|
|
},
|
|
error: function(jqxhr, status, error){
|
|
}
|
|
});
|
|
}
|
|
|
|
//car 목록 조회
|
|
function fn_setCarTypeList(oemObjId){
|
|
if(oemObjId !=""){
|
|
$.ajax({
|
|
url:"/common/getCarTypeList.do",
|
|
type:"POST",
|
|
data:{"isJson":true, "search_oemObjId":oemObjId},
|
|
dataType:"json",
|
|
success:function(data){
|
|
var appendCode = "";
|
|
appendCode += "<option value=''>선택</option>";
|
|
$.each(data, function(i){
|
|
appendCode += "<option value='"+data[i].OBJID+"'>"+data[i].CAR_CODE+"("+data[i].CAR_NAME+")</option>";
|
|
});
|
|
$("#search_carObjId").children().remove();
|
|
$("#search_carObjId").append(appendCode);
|
|
$("#search_carObjId > option[value=${param.search_carObjId}]").attr("selected", "true");
|
|
},
|
|
error: function(jqxhr, status, error){
|
|
}
|
|
});
|
|
}else{
|
|
$("#search_carObjId").children().remove();
|
|
$("#search_carObjId").append("<option value=''>선택</option>");
|
|
}
|
|
}
|
|
//제품군 목록 조회
|
|
function fn_setProductGroupList(){
|
|
$.ajax({
|
|
url:"/common/getProductGroupList.do",
|
|
type:"POST",
|
|
data:{"isJson":true},
|
|
dataType:"json",
|
|
success:function(data){
|
|
var appendCode = "";
|
|
|
|
$.each(data, function(i){
|
|
appendCode += "<option value='"+data[i].OBJID+"'>"+data[i].PRODUCT_GROUP_NAME+"</option>";
|
|
});
|
|
|
|
var paramVal = "${param.search_productGroupObjId}";
|
|
|
|
$("#search_productGroupObjId").append(appendCode);
|
|
if(paramVal != ""){
|
|
$("#search_productGroupObjId > option[value="+paramVal+"]").attr("selected", "true");
|
|
$("#search_productGroupObjId").trigger("change");
|
|
}
|
|
},
|
|
error: function(jqxhr, status, error){
|
|
}
|
|
});
|
|
}
|
|
//제품 목록 조회
|
|
function fn_setProductTypeList(productGroup){
|
|
if(productGroup != ""){
|
|
$.ajax({
|
|
url:"/common/getProductList.do",
|
|
type:"POST",
|
|
data:{"isJson":true, "search_productGroupObjId":productGroup},
|
|
dataType:"json",
|
|
success:function(data){
|
|
var appendCode = "";
|
|
appendCode += "<option value=''>선택</option>";
|
|
$.each(data, function(i){
|
|
appendCode += "<option value='"+data[i].OBJID+"'>"+data[i].PRODUCT_NAME+"("+data[i].PRODUCT_CODE+")</option>";
|
|
});
|
|
|
|
$("#search_productObjId").children().remove();
|
|
$("#search_productObjId").append(appendCode);
|
|
$("#search_productObjId > option[value=${param.search_productObjId}]").attr("selected", "true");
|
|
|
|
},
|
|
error: function(jqxhr, status, error){
|
|
}
|
|
});
|
|
}else{
|
|
$("#search_productObjId").children().remove();
|
|
$("#search_productObjId").append("<option value=''>선택</option>");
|
|
}
|
|
}
|
|
|
|
//HMC 적용 요구시점 목록 조회
|
|
function fn_setApplyPointList(){
|
|
$.ajax({
|
|
url:"/common/getApplyPointList.do",
|
|
type:"POST",
|
|
data:{"isJson":true},
|
|
dataType:"json",
|
|
success:function(data){
|
|
var appendCode = "";
|
|
|
|
$.each(data, function(i){
|
|
appendCode += "<option value='"+data[i].OBJID+"'>"+data[i].APPLY_POINT_NAME+"</option>";
|
|
});
|
|
|
|
var paramVal = "${param.search_applyPointObjId}";
|
|
|
|
$("#search_applyPointObjId").append(appendCode);
|
|
if(paramVal != ""){
|
|
$("#search_applyPointObjId > option[value="+paramVal+"]").attr("selected", "true");
|
|
$("#search_applyPointObjId").trigger("change");
|
|
}
|
|
},
|
|
error: function(jqxhr, status, error){
|
|
}
|
|
});
|
|
}
|
|
|
|
function fn_search(){
|
|
document.form1.action = "/productDevMng/eoApplyStatusList.do";
|
|
document.form1.submit();
|
|
}
|
|
|
|
//프로젝트에 해당하는 WBS Task 목록 PopUp
|
|
function fn_openProjectWBSTaskList(){
|
|
|
|
var radioObj = $("input[name=targetRadio]:checked");
|
|
var radioObjCnt = $("input[name=targetRadio]:checked").length;
|
|
|
|
if(0 < radioObjCnt){
|
|
|
|
$("#connectTargetObjId").val(radioObj.val());
|
|
|
|
window.open("", "connectWBSTaskPopUp", "width=590, height=490");
|
|
|
|
var form = document.form1;
|
|
form.action = "/project/wbs/openProjectWBSTaskListPopUp.do";
|
|
form.target = "connectWBSTaskPopUp";
|
|
form.submit();
|
|
}else{
|
|
Swal.fire("선택된 정보가 없습니다.");
|
|
}
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<form name="form1" id="form1" action="" method="post">
|
|
<input type="hidden" name="connectTaskType" id="connectTaskType" value="${connectTaskType}">
|
|
<input type="hidden" name="connectTaskName" id="connectTaskName" value="${connectTaskName}">
|
|
<input type="hidden" name="connectTargetObjId" id="connectTargetObjId">
|
|
|
|
<!-- //현황에서 사용하는 검색객체 -->
|
|
<input type="hidden" name="search_applyPointFromDate" id="search_applyPointFromDate" value="${param.search_applyPointFromDate}" />
|
|
<input type="hidden" name="search_applyPointToDate" id="search_applyPointToDate" value="${param.search_applyPointToDate}" />
|
|
<input type="hidden" name="search_applyStatus" id="search_applyStatus" value="${param.search_applyStatus}" />
|
|
<input type="hidden" name="search_moldRegisted" id="search_moldRegisted" value="${param.search_moldRegisted}" />
|
|
<input type="hidden" name="search_jigStatus" id="search_jigStatus" value="${param.search_jigStatus}" />
|
|
|
|
<div style="min-width:1450px;">
|
|
<div class="plm_menu_name">
|
|
<h2>
|
|
<span>EO적용/점검 관리</span>
|
|
</h2>
|
|
</div>
|
|
<div id="plmSearchZon" class="td_padding_short">
|
|
<table>
|
|
<tr>
|
|
<td><label for="">고객사</label></td>
|
|
<td>
|
|
<select name="search_oemObjId" id="search_oemObjId">
|
|
<option value="">선택</option>
|
|
</select>
|
|
</td>
|
|
<td><label for="">차종</label></td>
|
|
<td>
|
|
<select name="search_carObjId" id="search_carObjId">
|
|
<option value="">선택</option>
|
|
</select>
|
|
</td>
|
|
<td><label for="">EO No</label></td>
|
|
<td>
|
|
<input type="text" name="search_eoNo" id="search_eoNo" value="${param.search_eoNo}" maxlength="15">
|
|
</td>
|
|
<td><label for="">EO 발행일</label></td>
|
|
<td>
|
|
<input type="text" name="search_eoIssueFromDate" id="search_eoIssueFromDate" value="${param.search_eoIssueFromDate}" maxlength="12">
|
|
~
|
|
<input type="text" name="search_eoIssueToDate" id="search_eoIssueToDate" value="${param.search_eoIssueToDate}" maxlength="12">
|
|
</td>
|
|
<td><label for="">HMC 적용 요구시점</label></td>
|
|
<td>
|
|
<select name="search_applyPointObjId" id="search_applyPointObjId">
|
|
<option value="">선택</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for="">제품군</label></td>
|
|
<td>
|
|
<select name="search_productGroupObjId" id="search_productGroupObjId">
|
|
<option value="">선택</option>
|
|
</select>
|
|
</td>
|
|
<td><label for="">제품</label></td>
|
|
<td>
|
|
<select name="search_productObjId" id="search_productObjId">
|
|
<option value="">선택</option>
|
|
</select>
|
|
</td>
|
|
<td><label for="">품번</label></td>
|
|
<td>
|
|
<input type="text" name="search_partNo" id="search_partNo" value="${param.search_partNo}" maxlength="20">
|
|
</td>
|
|
<td><label for="">품명</label></td>
|
|
<td>
|
|
<input type="text" name="search_partName" id="search_partName" value="${param.search_partName}" maxlength="50" style="width:100%;">
|
|
</td>
|
|
<td><label for="">EO 적용완료 점검결과</label></td>
|
|
<td>
|
|
<select name="search_checkResult" id="search_checkResult">
|
|
<option value="all" ${param.search_checkResult eq 'all'?'selected':''}>전체</option>
|
|
<option value="applyComplete" ${param.search_checkResult eq 'applyComplete'?'selected':''}>적용완료</option>
|
|
<option value="applyReject" ${param.search_checkResult eq 'applyReject'?'selected':''}>미적용</option>
|
|
<option value="" ${param.search_checkResult eq ''?'selected':''}>미등록</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<section class="contents_page_basic_margin">
|
|
<div class="btn_wrap">
|
|
<div class="plm_btn_wrap">
|
|
<input type="button" id="btnSearch" value="조회" class="plm_btns">
|
|
<input type="button" value="WBS Task 연결" class="plm_btns" onclick="fn_openProjectWBSTaskList();">
|
|
</div>
|
|
</div>
|
|
<div class="plm_table_wrap" style="overflow-x:scroll; height:65vh;">
|
|
<table class="plm_table" style="width:2100px;">
|
|
<colgroup>
|
|
<col width="2%">
|
|
<col width="2%">
|
|
<col width="2%">
|
|
<col width="5%">
|
|
<col width="4%">
|
|
<col width="6%">
|
|
<col width="4%">
|
|
<col width="8%">
|
|
<col width="*%">
|
|
<col width="*%">
|
|
<col width="*%">
|
|
<col width="*%">
|
|
<col width="*%">
|
|
<col width="*%">
|
|
<col width="3%">
|
|
<col width="2%">
|
|
<col width="3%">
|
|
<col width="3%">
|
|
<col width="3%">
|
|
<col width="5%">
|
|
<col width="*%">
|
|
<col width="*%">
|
|
<col width="3%">
|
|
<col width="6%">
|
|
<col width="*%">
|
|
<col width="3%">
|
|
<col width="2%">
|
|
<col width="*%">
|
|
</colgroup>
|
|
<thead>
|
|
<tr class="plm_thead">
|
|
<td rowspan="3"></td>
|
|
<td rowspan="3">No</td>
|
|
<td rowspan="3">고객사</td>
|
|
<td rowspan="3">차종</td>
|
|
<td rowspan="3">제품군</td>
|
|
<td rowspan="3">제품</td>
|
|
<td rowspan="3">품번</td>
|
|
<td rowspan="3">품명</td>
|
|
<td colspan="2">EO</td>
|
|
<td colspan="4">EO 적용관리</td>
|
|
<td colspan="10">금형(C/F)/설비(I/F) 수정승인관리</td>
|
|
<td colspan="2">EO 적용완료 점검결과</td>
|
|
<td rowspan="3">첨부<br>자료</td>
|
|
<td rowspan="3">Task Link</td>
|
|
</tr>
|
|
<tr class="plm_sub_thead">
|
|
<td rowspan="2">No</td>
|
|
<td rowspan="2">Date</td>
|
|
<td rowspan="2">HMC<br>적용요구시점</td>
|
|
<td rowspan="2" colspan="3">(주)진양코퍼레이션<br>실적용 시점</td>
|
|
<td rowspan="2" colspan="2">수정승인서<br>작성대상</td>
|
|
<td colspan="3">EO 적용유형</td>
|
|
<td rowspan="2">VAATZ<br>등록번호</td>
|
|
<td rowspan="2">승인일</td>
|
|
<td rowspan="2">VAATZ<br>등록 만료기한</td>
|
|
<td rowspan="2">등록만료<br>D-Day</td>
|
|
<td rowspan="2">상태</td>
|
|
<td rowspan="2">점검Date</td>
|
|
<td rowspan="2">결과</td>
|
|
</tr>
|
|
<tr class="plm_sub_thead">
|
|
<td>신작</td>
|
|
<td>폐기</td>
|
|
<td>수정</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<c:choose>
|
|
<c:when test="${!empty LIST}">
|
|
<c:forEach var="info" items="${LIST}" varStatus="status">
|
|
<tr>
|
|
<td class="base ${info.PART_NO}" data_PART="${info.PART_NO}" rowspan="2"><input type="radio" value="${info.OBJID}" name="targetRadio"></td>
|
|
<td class="base ${info.PART_NO}" data_PART="${info.PART_NO}" rowspan="2" title="${info.RNUM}">${info.RNUM}</td>
|
|
<td class="base ${info.PART_NO}" data_PART="${info.PART_NO}" rowspan="2" title="${info.OEM_NAME}">${info.OEM_NAME}</td>
|
|
<td class="base ${info.PART_NO}" data_PART="${info.PART_NO}" rowspan="2" title="${info.CAR_CODE} (${info.CAR_NAME})">${info.CAR_CODE}</td>
|
|
<td class="base ${info.PART_NO}" data_PART="${info.PART_NO}" rowspan="2" title="${info.PROD_GROUP_NAME}">${info.PROD_GROUP_NAME}</td>
|
|
<td class="base ${info.PART_NO}" data_PART="${info.PART_NO}" rowspan="2" title="${info.PROD_NAME}">${info.PROD_NAME}</td>
|
|
<td class="base ${info.PART_NO}" data_PART="${info.PART_NO}" rowspan="2" title="${info.PART_NO}"><a href="#" class="btnDetailPart" data-PART_NO="${info.PART_NO}">${info.PART_NO}</a></td>
|
|
<td class="base ${info.PART_NO}" data_PART="${info.PART_NO}" rowspan="2" title="${info.PART_NAME}"><a href="#" class="btnDetailPart" data-PART_NO="${info.PART_NO}">${info.PART_NAME}</a></td>
|
|
<td class="base ${info.PART_NO}" data_PART="${info.PART_NO}" rowspan="2" title="${info.EO_NO}">${info.EO_NO}</td>
|
|
<td class="base ${info.PART_NO}" data_PART="${info.PART_NO}" rowspan="2" title="${info.EO_ISSUE_DATE}">${info.EO_ISSUE_DATE}</td>
|
|
<td class="base ${info.PART_NO}" data_PART="${info.PART_NO}" rowspan="2" title="${info.APPLY_POINT_NAME}"><a href="#" class="btnEoApplyDemand" data-TARGET_OBJID="${info.PART_OBJID}" data-OBJID="${info.EO_APPLY_OBJID}">${info.APPLY_POINT_NAME}</a></td>
|
|
<td class="base ${info.PART_NO}" data_PART="${info.PART_NO}" rowspan="2">
|
|
<c:choose>
|
|
<c:when test="${info.ILJI_APPLY_POINT_STEP1 eq 'design'}">
|
|
설계
|
|
</c:when>
|
|
<c:when test="${info.ILJI_APPLY_POINT_STEP1 eq 'develop'}">
|
|
개발
|
|
</c:when>
|
|
<c:when test="${info.ILJI_APPLY_POINT_STEP1 eq 'production'}">
|
|
양산
|
|
</c:when>
|
|
<c:otherwise>
|
|
${info.ILJI_APPLY_POINT_STEP1}
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</td>
|
|
<td class="base ${info.PART_NO}" data_PART="${info.PART_NO}" rowspan="2" title="${info.ILJI_APPLY_POINT_STEP2}">${info.ILJI_APPLY_POINT_STEP2}</td>
|
|
<td class="base ${info.PART_NO}" data_PART="${info.PART_NO}" rowspan="2" title="${info.ILJI_APPLY_POINT_DATE}">${info.ILJI_APPLY_POINT_DATE}</td>
|
|
<td class="sub1 sub1_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}"><a href="#" class="btnModifyConfirm" data-TARGET_OBJID="${info.PART_OBJID}" data-OBJID="${info.EO_APPLY_OBJID}" data-TARGET_TYPE="MOLD">금형(C/F)</a></td>
|
|
<td class="sub1 sub1_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}" title="${info.MOLD_MODIFY_DOC_WRITE_TYPE}">${info.MOLD_MODIFY_DOC_WRITE_TYPE}</td>
|
|
<td class="sub1 sub1_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}" title="${info.MOLD_EO_APPLY_TYPE_NEW eq 'on'?'대상':''}">${info.MOLD_EO_APPLY_TYPE_NEW eq 'on'?'대상':''}</td>
|
|
<td class="sub1 sub1_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}" title="${info.MOLD_EO_APPLY_TYPE_DISUSE eq 'on'?'대상':''}">${info.MOLD_EO_APPLY_TYPE_DISUSE eq 'on'?'대상':''}</td>
|
|
<td class="sub1 sub1_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}" title="${info.MOLD_EO_APPLY_TYPE_MODIFY eq 'on'?'대상':''}">${info.MOLD_EO_APPLY_TYPE_MODIFY eq 'on'?'대상':''}</td>
|
|
<td class="sub1 sub1_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}" title="${info.MOLD_VAATZ_NO}">${info.MOLD_VAATZ_NO}</td>
|
|
<td class="sub1 sub1_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}" title="${info.MOLD_VAATZ_CONFIRM_DATE}">${info.MOLD_VAATZ_CONFIRM_DATE}</td>
|
|
<td class="sub1 sub1_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}">
|
|
<c:if test="${info.MOLD_MODIFY_DOC_WRITE_TYPE eq 'Y'}">
|
|
${info.VAATZ_TARGET_DATE}
|
|
</c:if>
|
|
</td>
|
|
<!-- //등록만료 D-Day -->
|
|
<td class="sub1 sub1_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}">
|
|
<c:if test="${info.MOLD_MODIFY_DOC_WRITE_TYPE eq 'Y'}">
|
|
<c:choose>
|
|
<c:when test="${info.MOLD_STATUS eq 'complete'}">
|
|
-
|
|
</c:when>
|
|
<c:otherwise>
|
|
${info.VAATZ_LIMIT_DATE_CNT}
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</c:if>
|
|
</td>
|
|
<td class="sub1 sub1_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}">
|
|
<c:choose>
|
|
<c:when test="${info.MOLD_STATUS eq 'complete'}">
|
|
등록완료
|
|
</c:when>
|
|
<c:when test="${info.MOLD_STATUS eq 'confirmDateNoRegist'}">
|
|
승인일 미등록
|
|
</c:when>
|
|
<c:when test="${info.MOLD_STATUS eq 'vaatzNoRegist'}">
|
|
Vaatz 미등록
|
|
</c:when>
|
|
<c:when test="${info.MOLD_STATUS eq 'noRegist'}">
|
|
수정승인서 미등록
|
|
</c:when>
|
|
<c:when test="${info.MOLD_STATUS eq 'noTarget'}">
|
|
미대상
|
|
</c:when>
|
|
<c:otherwise>
|
|
${info.MOLD_STATUS}
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</td>
|
|
<td rowspan="2" class="base ${info.PART_NO}" data_PART="${info.PART_NO}">${info.CHECK_DATE}</td>
|
|
<td rowspan="2" class="base ${info.PART_NO}" data_PART="${info.PART_NO}">
|
|
<a href="#" class="btnEOCheckResultDetail btnEOCheckResult" data-TARGET_OBJID="${info.PART_OBJID}" data-OBJID="${info.EO_APPLY_OBJID}">
|
|
<c:choose>
|
|
<c:when test="${info.CHECK_RESULT eq 'applyComplete'}">
|
|
적용완료
|
|
</c:when>
|
|
<c:when test="${info.CHECK_RESULT eq 'applyReject'}">
|
|
미적용
|
|
</c:when>
|
|
<c:when test="${empty info.CHECK_RESULT}">
|
|
미등록
|
|
</c:when>
|
|
<c:otherwise>
|
|
${info.CHECK_RESULT}
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</a>
|
|
</td>
|
|
<td rowspan="2" class="base ${info.PART_NO}" data_PART="${info.PART_NO}"><a href="#" class="oeFile file_${info.OE_FILE_CNT eq 0?'empty_':''}icon" data-TARGET_OBJID="${info.PART_OBJID}"></a></td>
|
|
<td rowspan="2" class="base ${info.PART_NO}" data_PART="${info.PART_NO}"><a href="#" class="file_${info.REL_TASK_CNT eq 0?'empty_':''}icon taskLink" data-OBJID="${info.EO_APPLY_OBJID}"></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="sub2 sub2_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}"><a href="#" class="btnModifyConfirm" data-TARGET_OBJID="${info.PART_OBJID}" data-OBJID="${info.EO_APPLY_OBJID}" data-TARGET_TYPE="JIG">설비(I/F)</a></td>
|
|
<td title="${info.JIG_MODIFY_DOC_WRITE_TYPE}" class="sub2 sub2_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}">${info.JIG_MODIFY_DOC_WRITE_TYPE}</td>
|
|
<td title="${info.JIG_EO_APPLY_TYPE_NEW eq 'on'?'대상':''}" class="sub2 sub2_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}">${info.JIG_EO_APPLY_TYPE_NEW eq 'on'?'대상':''}</td>
|
|
<td title="${info.JIG_EO_APPLY_TYPE_DISUSE eq 'on'?'대상':''}" class="sub2 sub2_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}">${info.JIG_EO_APPLY_TYPE_DISUSE eq 'on'?'대상':''}</td>
|
|
<td title="${info.JIG_EO_APPLY_TYPE_MODIFY eq 'on'?'대상':''}" class="sub2 sub2_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}">${info.JIG_EO_APPLY_TYPE_MODIFY eq 'on'?'대상':''}</td>
|
|
<td title="${info.JIG_VAATZ_NO}" class="sub2 sub2_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}">${info.JIG_VAATZ_NO}</td>
|
|
<td title="${info.JIG_VAATZ_CONFIRM_DATE}" class="sub2 sub2_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}">${info.JIG_VAATZ_CONFIRM_DATE}</td>
|
|
<td class="sub2 sub2_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}">
|
|
<c:if test="${info.JIG_MODIFY_DOC_WRITE_TYPE eq 'Y'}">
|
|
${info.VAATZ_TARGET_DATE}
|
|
</c:if>
|
|
</td>
|
|
<td class="sub2 sub2_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}">
|
|
<c:if test="${info.JIG_MODIFY_DOC_WRITE_TYPE eq 'Y'}">
|
|
<c:choose>
|
|
<c:when test="${info.JIG_STATUS eq 'complete'}">
|
|
-
|
|
</c:when>
|
|
<c:otherwise>
|
|
${info.VAATZ_LIMIT_DATE_CNT}
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</c:if>
|
|
</td>
|
|
<td class="sub2 sub2_${info.PART_NO} ${info.PART_NO}" data_PART="${info.PART_NO}">
|
|
<c:choose>
|
|
<c:when test="${info.JIG_STATUS eq 'complete'}">
|
|
등록완료
|
|
</c:when>
|
|
<c:when test="${info.JIG_STATUS eq 'confirmDateNoRegist'}">
|
|
승인일 미등록
|
|
</c:when>
|
|
<c:when test="${info.JIG_STATUS eq 'vaatzNoRegist'}">
|
|
Vaatz 미등록
|
|
</c:when>
|
|
<c:when test="${info.JIG_STATUS eq 'noRegist'}">
|
|
수정승인서 미등록
|
|
</c:when>
|
|
<c:when test="${info.JIG_STATUS eq 'noTarget'}">
|
|
미대상
|
|
</c:when>
|
|
<c:otherwise>
|
|
${info.JIG_STATUS}
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</td>
|
|
</tr>
|
|
</c:forEach>
|
|
</c:when>
|
|
<c:otherwise>
|
|
<tr>
|
|
<td align="center" colspan="28">조회된 정보가 없습니다.</td>
|
|
</tr>
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</tbody>
|
|
</table>
|
|
<%--
|
|
<div class="plm_scroll_table" style="width:2116px; height:650px;">
|
|
<table class="plm_table">
|
|
<colgroup>
|
|
<col width="2%">
|
|
<col width="3%">
|
|
<col width="3%">
|
|
<col width="5%">
|
|
<col width="5%">
|
|
<col width="5%">
|
|
<col width="10%">
|
|
<col width="*">
|
|
<col width="*">
|
|
<col width="*">
|
|
<col width="*">
|
|
<col width="*">
|
|
<col width="*">
|
|
<col width="2%">
|
|
<col width="2%">
|
|
<col width="2%">
|
|
<col width="4%">
|
|
<col width="4%">
|
|
<col width="4%">
|
|
<col width="4%">
|
|
<col width="4%">
|
|
<col width="4%">
|
|
<col width="3%">
|
|
<col width="3%">
|
|
</colgroup>
|
|
<tbody>
|
|
<c:choose>
|
|
<c:when test="${!empty LIST}">
|
|
|
|
</c:when>
|
|
<c:otherwise>
|
|
<td align="center" colspan=""></td>
|
|
</c:otherwise>
|
|
</c:choose>
|
|
<tr>
|
|
<td rowspan="2"></td>
|
|
<td rowspan="2">HMC</td>
|
|
<td rowspan="2">JS</td>
|
|
<td rowspan="2">DASH</td>
|
|
<td rowspan="2"></td>
|
|
<td rowspan="2">65111-K9000</td>
|
|
<td rowspan="2">PNL ASSY-CTR FLR SIDE L/R</td>
|
|
<td rowspan="2">HK9H0086</td>
|
|
<td rowspan="2">17.06.07</td>
|
|
<td rowspan="2">P1</td>
|
|
<td rowspan="2">적용 완</td>
|
|
<td>금형</td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td>○</td>
|
|
<td>Y</td>
|
|
<td>DB20171203</td>
|
|
<td>2017.02.03</td>
|
|
<td>17.01.02</td>
|
|
<td></td>
|
|
<td rowspan="2"></td>
|
|
<td rowspan="2"><a href="#" class="file_empty_icon"></a></td>
|
|
<td rowspan="2"><a href="#" class="registBtn blue_btn" style="color:#fff;">등록</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>JIG</td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
--%>
|
|
</div>
|
|
</section>
|
|
<div class="pdm_page">
|
|
<input type="hidden" name="page" id="page" value="${nPage}">
|
|
<c:if test="${!empty LIST}">
|
|
<div class="page_pro">
|
|
<table>
|
|
<tr>
|
|
<c:choose>
|
|
<c:when test="${nPage > 1}">
|
|
<td><a href="javascript:fnc_goPrev('${prevPage}');">prev</a></td>
|
|
</c:when>
|
|
<c:otherwise>
|
|
<td class="no_more_page">prev</td>
|
|
</c:otherwise>
|
|
</c:choose>
|
|
<c:forEach var="v" begin="${nPage>5?nPage-5:1}"
|
|
end="${nPage>5?nPage+4:10}" step="1" varStatus="status">
|
|
<c:if test="${status.index -1 < maxPage}">
|
|
<c:choose>
|
|
<c:when test="${status.index eq nPage}">
|
|
<td><a href="#" class="now_page">${nPage}</a></td>
|
|
</c:when>
|
|
<c:otherwise>
|
|
<td><a href="javascript:fnc_goPage('${status.index}');">${status.index}</a></td>
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</c:if>
|
|
</c:forEach>
|
|
<c:choose>
|
|
<c:when test="${nPage < maxPage}">
|
|
<td><a href="javascript:fnc_goNext('${nextPage}');">next</a></td>
|
|
</c:when>
|
|
<c:otherwise>
|
|
<td class="no_more_page">next</td>
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</tr>
|
|
</table>
|
|
<c:if test="${!empty LIST}">
|
|
<p id="adminPageCount">총 ${totalCount}건</p>
|
|
</c:if>
|
|
</div>
|
|
</c:if>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html> |