Files
wace_plm/WebContent/WEB-INF/view/project/standardWBSMngList.jsp
chpark da06c4684c Initial commit: WACE PLM with database initialization features
- Add Docker Compose configurations for dev, prod, and standalone environments
- Add database initialization scripts (init-db.sh, init-db-docker.sh)
- Add enhanced start-docker-linux.sh with DB init support
- Add comprehensive database initialization guide
- Support for automatic dbexport.pgsql import on first run
- Include safety checks for production environment
2025-08-29 15:46:08 +09:00

170 lines
5.6 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 PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
<script>
$(function(){
$(".btnTable").click(function(){
var url = $(this).attr("url");
document.dfmeaForm.action = url;
document.dfmeaForm.submit();
});
$(".btnChart").click(function(){
var url = $(this).attr("url");
var carType = $(this).attr("carType");
var productType = $(this).attr("productType");
var pageUrl = url+"_"+carType+"_"+productType+".html";
window.open(pageUrl, "" ,"width=1000, height=400");
});
datepick();
});
function datepick(){
var $dateinput = $("input");
for(var i=0; i<$dateinput.length; i++){
var id = $dateinput.eq(i).attr("id");
if(id != null)
if(id.indexOf("Date")>-1){
$dateinput.eq(i).attr("size","10");
$dateinput.eq(i).datepicker();
}else{
$dateinput.eq(i).attr("size","10");
}
}
}
</script>
</head>
<body>
<form name="dfmeaForm" action="" method="post">
<div id="pageMinWidth">
<div class="plm_menu_name">
<h2>
<span>표준WBS</span>
</h2>
</div>
<div id="plmSearchZon">
<table>
<tr>
<td><label for="">년도</label></td>
<td><input type="text"></td>
<td><label for="">차종</label></td>
<td><input type="text"></td>
<td><label for="">제품명</label></td>
<td><input type="text" style="width:200px;"></td>
<td><label for="">년도</label></td>
<td style="width:323px;">
<input type="text" id="fromDate" class="input_date" > ~ <input type="text" id="toDate" class="input_date" >
</td>
</tr>
</table>
</div>
<section class="contents_page_basic_margin">
<div class="btn_wrap">
<div class="plm_btn_wrap">
<input type="button" value="Excel download" class="plm_btns">
<input type="button" value="조회" class="plm_btns">
</div>
</div>
<div class="plm_table_wrap">
<table class="plm_table">
<colgroup>
<col width="1.5%">
<col width="4%">
<col width="4%">
<col width="11%">
<col width="11%">
<col width="20%">
<col width="4%">
<col width="5%">
<col width="5%">
<col width="6%">
<col width="*">
<col width="*">
<col width="4%">
<col width="5%">
<col width="4%">
<col width="3%">
</colgroup>
<thead>
<tr class="plm_thead">
<td rowspan="2"><input type="checkbox"></td>
<td colspan="2">단계</td>
<td colspan="3">TASK정보</td>
<td colspan="3">계획(plan)</td>
<td>실적</td>
<td colspan="2">담당자정보</td>
<td colspan="2">산출물</td>
<td rowspan="2">TFT장확인</td>
<td rowspan="2">비고</td>
</tr>
<tr class="plm_sub_thead">
<td>단계</td>
<td>완료시점</td>
<td>대분류</td>
<td>중분류</td>
<td>Task명</td>
<td>Duration</td>
<td>시작일</td>
<td>종료일</td>
<td>지연완료일</td>
<td>팀명</td>
<td>담당자</td>
<td>첨부</td>
<td>시스템/연계</td>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div class="plm_page">
<table>
<tr>
<td><a href="#">prev</a></td>
<td><a href="#">1</a></td>
<td><a href="#">2</a></td>
<td><a href="#">3</a></td>
<td><a href="#">4</a></td>
<td><a href="#">5</a></td>
<td><a href="#">next</a></td>
</tr>
</table>
<div class="page_pro">
<p class="page_counter">총 10건</p>
</div>
</div>
</section>
</div>
</form>
</body>
</html>