583 lines
22 KiB
Plaintext
583 lines
22 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
|
<%@ page import="com.pms.common.utils.*"%>
|
|
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
|
|
<%@ page import="java.util.*" %>
|
|
<%@include file= "/init.jsp" %>
|
|
<%
|
|
PersonBean person = (PersonBean)session.getAttribute(Constants.PERSON_BEAN);
|
|
String connector = person.getUserId();
|
|
|
|
%>
|
|
<!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}" />
|
|
<c:set var="now" value="<%=new java.util.Date() %>"/>
|
|
<c:set var="sysYear"><fmt:formatDate value="${now}" pattern="yyyy" /></c:set>
|
|
|
|
<c:set var="connector" value="<%=connector %>" />
|
|
|
|
<style>
|
|
/* 헤더의 배경색을 빨간색으로 변경 */
|
|
.tabulator-header {
|
|
background-color: red !important;
|
|
color: blue !important;
|
|
/* headerBackgroundColor */
|
|
}
|
|
.select2-selection__choice {
|
|
font-size: 11px;
|
|
background-color: #fff !important;
|
|
border: none !important;
|
|
margin-right: 0px !important;
|
|
}
|
|
.select2-selection__choice__remove {
|
|
display: contents !important;
|
|
}
|
|
.select2-container .select2-selection--multiple {
|
|
min-height: 20px !important;
|
|
}
|
|
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
|
margin-top: 3.5px !important;
|
|
}
|
|
.select2-selection__rendered {
|
|
height: 18px !important;
|
|
}
|
|
.select2-container .select2-selection--multiple .select2-selection__rendered {
|
|
overflow: auto !important;
|
|
}
|
|
</style>
|
|
<script>
|
|
$(document).ready(function(){
|
|
|
|
//날짜
|
|
_fnc_datepick();
|
|
|
|
$('.select2').select2();
|
|
|
|
$("#btnSearch").click(function(){
|
|
$("#page").val("1");
|
|
fn_search();
|
|
});
|
|
|
|
//SR자료등록 팝업
|
|
$(".File").click(function(){
|
|
var popup_width = 800;
|
|
var popup_height = 250;
|
|
|
|
var objId = $(this).attr("data-OBJID");
|
|
var docType =$(this).attr("data-docType");
|
|
var docTypeName = $(this).attr("data-docTypeName");
|
|
var params = "?targetObjId="+objId+"&docType="+docType+"&docTypeName="+docTypeName;
|
|
var url = "/projectConcept/FileRegistPopup.do"+params;
|
|
|
|
fn_centerPopup(popup_width, popup_height, url);
|
|
});
|
|
|
|
//영업활동 등록 팝업
|
|
$("#btnCreate").click(function(){
|
|
var popup_width = 1830;
|
|
var popup_height = 730;
|
|
var url = "/project/projectMgmtCreateList.do";
|
|
//window.open("/ordermgmt/ordermgmtUpdateFormPopup.do"+params, "", "width=650, height=750","menubars=no, scrollbars=yes, resizable=yes");
|
|
fn_centerPopup(popup_width, popup_height, url);
|
|
});
|
|
|
|
//wbs 등록
|
|
$(".wbs").click(function(){
|
|
var popup_width = 1800;
|
|
var popup_height = 800;
|
|
var objId = $(this).attr("data-OBJID");
|
|
var params = "?OBJID="+objId;
|
|
var url = "/project/wbsTaskProductFormPopUp.do"+params;
|
|
fn_centerPopup(popup_width, popup_height, url);
|
|
});
|
|
|
|
//고객 등록 팝업
|
|
$(".supplyMng").click(function(){
|
|
//window.open("/ordermgmt/ordermgmtUpdateFormPopup.do"+params, "", "width=650, height=750","menubars=no, scrollbars=yes, resizable=yes");
|
|
window.open("/contractMgmt/supplyMngPagingList.do", "", "width=1150, height=676","menubars=no, scrollbars=no, resizable=yes");
|
|
});
|
|
|
|
|
|
//엔터 조회
|
|
$("input").keyup(function(e){
|
|
if(e.keyCode == 13){
|
|
$("#page").val("1");
|
|
fn_search();
|
|
}
|
|
});
|
|
|
|
//삭제
|
|
$("#btnDelete").click(function(){
|
|
fn_delete();
|
|
});
|
|
|
|
|
|
$("#btnExcel").click(function(){
|
|
document.form1.actionType.value = "excel";
|
|
document.form1.action = "/contractMgmt/contractList.do";
|
|
document.form1.submit();
|
|
});
|
|
|
|
fn_search();
|
|
});
|
|
|
|
var columns = [
|
|
{headerHozAlign : 'center', hozAlign : 'left', width : '100', title : '프로젝트번호', field : 'PROJECT_NO' ,frozen:true,
|
|
formatter:fnc_createGridAnchorTag,
|
|
cellClick:function(e, cell){
|
|
var objid = fnc_checkNull(cell.getData().OBJID);
|
|
openProjectFormPopUp(objid);
|
|
}
|
|
},
|
|
|
|
{title:"프로젝트정보", headerHozAlign:'center', //고객정보
|
|
columns:[
|
|
{headerHozAlign : 'center', hozAlign : 'center', width : '80', title : '계약구분', field : 'CATEGORY_NAME' },
|
|
{headerHozAlign : 'center', hozAlign : 'center', width : '80', title : '차수', field : 'OVERHAUL_ORDER'},
|
|
{headerHozAlign : 'center', hozAlign : 'left', width : '120', title : '고객사', field : 'CUSTOMER_NAME' },
|
|
//{headerHozAlign : 'center', hozAlign : 'left', width : '90', title : '제품구분', field : 'PRODUCT_NAME' },
|
|
//{headerHozAlign : 'center', hozAlign : 'left', width : '90', title : '기계형식', field : 'MECHANICAL_TYPE' },
|
|
//{headerHozAlign : 'center', hozAlign : 'left', width : '200', title : '고객사프로젝트명', field : 'CUSTOMER_PROJECT_NAME' },
|
|
{headerHozAlign : 'center', hozAlign : 'left', width : '150', title : '프로젝트명', field : 'PROJECT_NAME' },
|
|
{headerHozAlign : 'center', hozAlign : 'center', width : '100', title : '고객납기일', field : 'REQ_DEL_DATE' },
|
|
{headerHozAlign : 'center', hozAlign : 'center', width : '90', title : '셋업지', field : 'SETUP' },
|
|
{headerHozAlign : 'center', hozAlign : 'center', width : '90', title : '설비방향', field : 'FACILITY_NAME' },
|
|
//{headerHozAlign : 'center', hozAlign : 'center', width : '90', title : '설비타입', field : 'FACILITY_TYPE' },
|
|
//{headerHozAlign : 'center', hozAlign : 'center', width : '90', title : '설비길이', field : 'FACILITY_DEPTH' },
|
|
{headerHozAlign : 'center', hozAlign : 'center', width : '90', title : 'PM', field : 'PM_USER_NAME' },
|
|
{headerHozAlign : 'center', hozAlign : 'center', width : '90', title : '제작공장', field : 'MANUFACTURE_PLANT_NAME' },
|
|
{headerHozAlign : 'center', hozAlign : 'center', width : '100', title : '예상납기일', field : 'CONTRACT_DEL_DATE' }
|
|
],
|
|
},
|
|
|
|
{
|
|
title:'현황', headerHozAlign:'center',
|
|
columns:[
|
|
{
|
|
title:"이슈(건수)", headerHozAlign:'center',
|
|
columns:[
|
|
{title: '발생', field: 'ISSUE_CNT',headerHozAlign: 'center', hozAlign: 'center', width:"6%",
|
|
formatter:fnc_createGridAnchorTag,
|
|
cellClick:function(e, cell){
|
|
var objid = fnc_checkNull(cell.getData().OBJID);
|
|
openIssueFormPopUp('all',objid);
|
|
}
|
|
},
|
|
{title: '조치', field: 'COMP_CNT', headerHozAlign: 'center', hozAlign: 'center', width:"6%",
|
|
formatter:fnc_createGridAnchorTag,
|
|
cellClick:function(e, cell){
|
|
var objid = fnc_checkNull(cell.getData().OBJID);
|
|
openIssueFormPopUp('complete',objid);
|
|
}
|
|
},
|
|
{title: '미결', field: 'MISS_CNT', headerHozAlign: 'center', hozAlign: 'center', width:"6%",
|
|
formatter:fnc_createGridAnchorTag,
|
|
cellClick:function(e, cell){
|
|
var objid = fnc_checkNull(cell.getData().OBJID);
|
|
openIssueFormPopUp('late',objid);
|
|
}
|
|
},
|
|
{title: '조치율', field: 'ISSUE_RATE', headerHozAlign: 'center', hozAlign: 'center', width:"6%"}
|
|
]
|
|
},
|
|
{
|
|
title:"투입원가(억원)", headerHozAlign:'center',
|
|
columns:[
|
|
{title: '목표가', field: 'TOTAL_COST_GOAL',headerHozAlign: 'center', hozAlign: 'right', width:"6%",
|
|
formatter:"money", formatterParams:{thousand:",", symbolAfter:"p", precision:false,},
|
|
cellClick:function(e, cell){
|
|
|
|
var projectObjId = fnc_checkNull(cell.getData().OBJID);
|
|
var productObjId = fnc_checkNull(cell.getData().PROD_REL_OBJID);
|
|
var milestoneObjId = fnc_checkNull(cell.getData().MILESTONE_OBJID);
|
|
|
|
fn_openInvestmentCostPricePopUp(projectObjId,productObjId,milestoneObjId);
|
|
}
|
|
},
|
|
{title: '투입금액', field: 'TOTAL_COST_ACTUAL', headerHozAlign: 'center', hozAlign: 'right', width:"6%",
|
|
formatter:"money", formatterParams:{thousand:",", symbolAfter:"p", precision:false,},
|
|
cellClick:function(e, cell){
|
|
|
|
var projectObjId = fnc_checkNull(cell.getData().OBJID);
|
|
var productObjId = fnc_checkNull(cell.getData().PROD_REL_OBJID);
|
|
var milestoneObjId = fnc_checkNull(cell.getData().MILESTONE_OBJID);
|
|
|
|
fn_openInvestmentCostPricePopUp(projectObjId,productObjId,milestoneObjId);
|
|
}
|
|
},
|
|
{title: '투입율(%)', field: 'TOTAL_INPUT_RATE', headerHozAlign: 'center', hozAlign: 'center', width:"6%",
|
|
formatter:"money", formatterParams:{thousand:",", symbolAfter:"p", precision:false,},
|
|
cellClick:function(e, cell){
|
|
|
|
var projectObjId = fnc_checkNull(cell.getData().OBJID);
|
|
var productObjId = fnc_checkNull(cell.getData().PROD_REL_OBJID);
|
|
var milestoneObjId = fnc_checkNull(cell.getData().MILESTONE_OBJID);
|
|
|
|
fn_openInvestmentCostPricePopUp(projectObjId,productObjId,milestoneObjId);
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
title:"진척율(%)", headerHozAlign:'center',
|
|
columns:[
|
|
{title: '전체공정', field: 'TOTAL_RATE',headerHozAlign: 'center', hozAlign: 'center', width:"6%", //ASSEMBLY_RATE
|
|
formatter : fnc_createGridAnchorTag, //fileFormatter
|
|
cellClick:function(e, cell){
|
|
var objid = fnc_checkNull(cell.getData().OBJID);
|
|
var categoryCd = fnc_checkNull(cell.getData().CATEGORY_CD);
|
|
wbs_popup(objid,categoryCd);
|
|
}
|
|
},
|
|
{title: '셋업', field: 'SETUP_RATE', headerHozAlign: 'center', hozAlign: 'center', width:"6%",
|
|
formatter:fnc_createGridAnchorTag,
|
|
cellClick:function(e, cell){
|
|
var objid = fnc_checkNull(cell.getData().OBJID);
|
|
setup_wbs_popup(objid);
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
title:"출고", headerHozAlign:'center',
|
|
columns:[
|
|
{title: '출고여부', field: 'RELEASE_STATUS_TITLE',headerHozAlign: 'center', hozAlign: 'center', width:"6%",
|
|
formatter:"money", formatterParams:{thousand:",", symbolAfter:"p", precision:false,},
|
|
cellClick:function(e, cell){
|
|
|
|
var projectObjId = fnc_checkNull(cell.getData().OBJID);
|
|
var productObjId = fnc_checkNull(cell.getData().PROD_REL_OBJID);
|
|
var milestoneObjId = fnc_checkNull(cell.getData().MILESTONE_OBJID);
|
|
|
|
fn_openInvestmentCostPricePopUp(projectObjId,productObjId,milestoneObjId);
|
|
}
|
|
},
|
|
{title: '출고일', field: 'RELEASE_DATE', headerHozAlign: 'center', hozAlign: 'center', width:"6%" }
|
|
]
|
|
}
|
|
]
|
|
}
|
|
];
|
|
|
|
//var grid;
|
|
function fn_search(){
|
|
var selectedValues = $("#project_no").val();
|
|
var projectNoParam = new Array();
|
|
//alert(selectedValues);
|
|
projectNoParam.push(selectedValues);
|
|
var checkArr = projectNoParam.join();
|
|
//alert("checkArr:"+checkArr)
|
|
$("#checkArr").val(checkArr);
|
|
_tabulGrid = fnc_tabul_search(_tabul_layout_fitColumns, _tabulGrid, "/project/projectMgmtGridList.do", columns, false);
|
|
|
|
_tabulGrid.headerBackgroundColor = "red";
|
|
}
|
|
|
|
function _fnc_datepick(){
|
|
var $dateinput = $("input.date_icon");
|
|
for(var i=0; i<$dateinput.length; i++){
|
|
$dateinput.eq(i).attr("size","10");
|
|
$dateinput.eq(i).datepicker({
|
|
changeMonth:true,
|
|
changeYear:true
|
|
});
|
|
}
|
|
}
|
|
|
|
function fn_delete(){
|
|
if(0 < $("input[name=chk_objId]:checked").length){
|
|
var checkArr = new Array();
|
|
var ngCnt = 0;
|
|
$("input[name=chk_objId]:checked").each(function(){
|
|
var objId = fnc_checkNull($(this).val().replace(" ",""));
|
|
|
|
// var currentStatus = $(this).attr("data-STATUS");
|
|
|
|
// if("결재중" == currentStatus || "결재완료" == currentStatus){
|
|
// ngCnt++;
|
|
// }
|
|
checkArr.push(objId);
|
|
});
|
|
|
|
if(confirm("선택한 정보를 삭제하시겠습니까?")){
|
|
var param = $("#form1").serialize();
|
|
$.ajax({
|
|
type : "POST",
|
|
url : "/project/deleteProjectMngInfo.do",
|
|
data: {"checkArr":checkArr.join()},
|
|
dataType:"json",
|
|
success:function(data){
|
|
Swal.fire(data.msg);
|
|
|
|
if(data.result){
|
|
fn_search();
|
|
};
|
|
}
|
|
,error: function(jqxhr, status, error){
|
|
}
|
|
});
|
|
}
|
|
}else{
|
|
Swal.fire("선택한 항목이 없습니다.");
|
|
}
|
|
}
|
|
|
|
function openIssueFormPopUp(status,projectobjid){
|
|
var popup_width = 1720;
|
|
var popup_height = 900;
|
|
var objId = objId;
|
|
var params = "?status="+status+"&project_no="+projectobjid;
|
|
var url = "/productionplanning/issuemgmtList.do"+params;
|
|
fn_centerPopup(popup_width, popup_height, url);
|
|
}
|
|
|
|
//영업활동등록 상세
|
|
function fn_projectConceptDetail(objId){
|
|
var popup_width = 1200;
|
|
var popup_height = 760;
|
|
var url = "/contractMgmt/contracMgmtFormPopup.do?objId="+objId;
|
|
|
|
fn_centerPopup(popup_width, popup_height, url);
|
|
}
|
|
|
|
//코드값을 받아와서 동적으로 selectbox 생성
|
|
function optionJobGroup(code){
|
|
var val=code;
|
|
var params = "";
|
|
var option="";
|
|
var combobox = $("#writer");
|
|
combobox.empty();
|
|
if(val!=""){
|
|
params += "codeId="+val;
|
|
$.ajax({
|
|
type : "POST",
|
|
url : "/projectConcept/makewrite.do",
|
|
data : params,
|
|
dataType:"json",
|
|
async: false,
|
|
success: function(data){
|
|
if(data.RESULT !=""){
|
|
option += "<option value=''>전체</option>";
|
|
option += data.RESULT;
|
|
combobox.append(option);
|
|
}
|
|
}
|
|
});
|
|
// Swal.fire(Number(lev-1));
|
|
//$("#code"+Number(lev-1)).val(code).prop("selected", true);
|
|
}else{
|
|
|
|
option += "<option value=''>전체</option>";
|
|
combobox.append(option);
|
|
}
|
|
}
|
|
|
|
|
|
//코드값을 받아와서 동적으로 selectbox 생성
|
|
function makeSelect(code){
|
|
var val=code;
|
|
var params = "";
|
|
var option="";
|
|
var combobox = $("#outc_cd6_td");
|
|
combobox.empty();
|
|
|
|
if(val!="" && val!="PLA03000"){
|
|
params += "codeId="+val;
|
|
$.ajax({
|
|
type : "POST",
|
|
url : "/ordermgmt/makeCodeselect.do",
|
|
data : params,
|
|
dataType:"json",
|
|
async: false,
|
|
success: function(data){
|
|
if(data.RESULT !=""){
|
|
option += "<select name='outc_cd6' id='outc_cd6' type='select'>"
|
|
option += "<option value=''>선택</option>";
|
|
option += data.RESULT;
|
|
option += "</select>";
|
|
combobox.append(option);
|
|
$("#outc_cd6").val("${param.outc_cd6}");
|
|
//$("#outc_cd6").select2();
|
|
}
|
|
}
|
|
});
|
|
}else{
|
|
if(val=="PLA03000"){
|
|
option += "<input type='text' name='outc_cd6' id='outc_cd6' value='${param.outc_cd6}'>"
|
|
combobox.append(option);
|
|
}else{
|
|
option += "<select name='outc_cd6' id='outc_cd6' type='select'>"
|
|
option += "<option value=''>선택</option>";
|
|
option += "</select>";
|
|
combobox.append(option);
|
|
//$("#outc_cd6").select2();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
//프로젝트의 form,detail 팝업을 보여준다.
|
|
function openProjectFormPopUp(objId){
|
|
var popup_width = 420;
|
|
var popup_height = 350;
|
|
var objId = objId;
|
|
var params = "?OBJID="+objId;
|
|
var url = "/project/projectmodifyPopUp.do"+params;
|
|
fn_centerPopup(popup_width, popup_height, url);
|
|
}
|
|
|
|
function wbs_popup(objId,categoryCd){
|
|
|
|
var popup_width = 1700;
|
|
var popup_height = 800;
|
|
var objId = objId;
|
|
var params = "?OBJID="+objId+"&CATEGORY_CD="+categoryCd+"&actionType=view";
|
|
//var url = "/project/wbsTaskProductGanttFormPopUp.do"+params;
|
|
var url = "/project/wbsTaskProductFormPopUp.do"+params;
|
|
fn_centerPopup(popup_width, popup_height, url);
|
|
}
|
|
|
|
function setup_wbs_popup(objId){
|
|
|
|
var popup_width = 1100;
|
|
var popup_height = 750;
|
|
var objId = objId;
|
|
var params = "?OBJID="+objId;
|
|
//var url = "/project/wbsTaskProductGanttFormPopUp.do"+params;
|
|
var url = "/project/wbsTaskProductSetupFormPopUp.do"+params;
|
|
fn_centerPopup(popup_width, popup_height, url);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body class="bodyNoScroll">
|
|
<form name="form1" id="form1" action="" method="post">
|
|
<input type="hidden" name="actionType" value="" />
|
|
<input type="hidden" name="checkArr" id="checkArr" value="" />
|
|
<input type="hidden" name="project_no_arrays" id="project_no_arrays" value="${param.project_no_arrays}" />
|
|
<div class="min_part_enroll">
|
|
<div class="content-box">
|
|
<div class="content-box-s">
|
|
<div class="plm_menu_name_gdnsi">
|
|
<h2>
|
|
<span>프로젝트관리_진행관리</span>
|
|
</h2>
|
|
<div class="btnArea">
|
|
<input type="button" value="조회" class="plm_btns" id="btnSearch" name="btnSearch">
|
|
<!-- 231122 막음(고도화에서 자동생성으로 변경)
|
|
<input type="button" value="프로젝트등록" class="plm_btns" id="btnCreate" name="btnSearch">
|
|
<input type="button" value="삭제" class="plm_btns" id="btnDelete" name="btnDelete"> -->
|
|
</div>
|
|
</div>
|
|
<div id="plmSearchZon">
|
|
<table>
|
|
<tr>
|
|
<td><label for="Year">년도</label></td>
|
|
<td>
|
|
<select name="Year" id="Year" style="width:190px;" class="select2" autocomplete="off">
|
|
<option value="">선택</option>
|
|
<c:forEach begin="${sysYear-4}" end="${sysYear}" var="req_year">
|
|
<option value="${req_year}"${param.Year eq req_year ? 'selected':'' }>${req_year}</option>
|
|
</c:forEach>
|
|
</select>
|
|
</td>
|
|
|
|
<td><label for="project_no">프로젝트번호</label></td>
|
|
<td>
|
|
<select name="project_no" id="project_no" style="width:370px;" class="select2" autocomplete="off" multiple="multiple">
|
|
<option value="">선택</option>
|
|
${code_map.project_no}
|
|
</select>
|
|
</td>
|
|
|
|
<td><label for="category_cd">계약구분</label></td>
|
|
<td>
|
|
<select name="category_cd" id="category_cd" style="" class="select2" autocomplete="off">
|
|
<option value="">선택</option>
|
|
${code_map.category_cd}
|
|
</select>
|
|
</td>
|
|
|
|
<td><label for="customer_objid">고객사</label></td>
|
|
<td>
|
|
<select name="customer_objid" id="customer_objid" style="width:200px" class="select2" autocomplete="off">
|
|
<option value="">선택</option>
|
|
${code_map.customer_cd}
|
|
</select>
|
|
</td>
|
|
|
|
<td><label for="product">제품구분</label></td>
|
|
<td>
|
|
<select name="product" id="product" style="" class="select2" autocomplete="off">
|
|
<option value="">선택</option>
|
|
${code_map.product_cd}
|
|
</select>
|
|
</td>
|
|
|
|
|
|
|
|
<%-- <td><label for="status_cd">진행사항</label></td>
|
|
<td>
|
|
<select name="status_cd" id="status_cd" style="" class="select2" autocomplete="off">
|
|
<option value="">선택</option>
|
|
${code_map.product_code}
|
|
</select>
|
|
</td> --%>
|
|
</tr>
|
|
<tr>
|
|
<td class="align_r">
|
|
<label>예상납기일</label>
|
|
</td>
|
|
<td>
|
|
<input type="text" name="contract_start_date" id="contract_start_date" style="width:90px;" autocomplete="off" value="${param.contract_start_date}" class="date_icon">~
|
|
<input type="text" name="contract_end_date" id="contract_end_date" style="width:90px;" autocomplete="off" value="${param.contract_end_date}" class="date_icon">
|
|
</td>
|
|
|
|
<td class="align_r">
|
|
<label>입고지</label>
|
|
</td>
|
|
<td>
|
|
<input type="text" name="location" id="location" style="width:150px;" autocomplete="off" value="${param.location}">
|
|
</td>
|
|
|
|
<td class="align_r">
|
|
<label>셋업지</label>
|
|
</td>
|
|
<td>
|
|
<input type="text" name="setup" id="setup" style="" autocomplete="off" value="${param.setup}">
|
|
</td>
|
|
|
|
<td><label for="pm_user_id">PM</label></td>
|
|
<td>
|
|
<select name="pm_user_id" id="pm_user_id" style="width:200px;" class="select2" autocomplete="off">
|
|
<option value="">선택</option>
|
|
${code_map.pm_user_id}
|
|
</select>
|
|
</td>
|
|
|
|
<%-- <td><label for="">출고여부</label></td>
|
|
<td>
|
|
<select name="pm_user_id" id="pm_user_id" style="width:200px" class="select2" autocomplete="off">
|
|
<option value="">선택</option>
|
|
${code_map.pm_user_id}
|
|
</select>
|
|
</td> --%>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<%@include file= "/WEB-INF/view/common/common_gridArea.jsp" %>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html> |