Files
bns_system/WebContent/WEB-INF/view/projectConcept/projectConceptList.jsp
2025-09-16 14:04:11 +09:00

209 lines
6.9 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>
<script>
$(function(){
$(".btnTable").click(function(){
var url = $(this).attr("url");
document.dfmeaForm.action = url;
document.dfmeaForm.submit();
});
//등록 팝업
$(".btnRegist").click(function(){
window.open("businessChancePopup.html", "", "width=660, height=610");
});
$(".btnFile").click(function(){
window.open("businessChanceFilePopup.html", "", "width=466, height=380");
});
$(".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="" action="" method="post">
<div id="pageMinWidth">
<div class="plm_menu_name">
<h2>
<span>수주활동 조회</span>
</h2>
</div>
<section class="contents_page_basic_margin">
<div class="btn_wrap">
<div class="plm_btn_wrap">
<!--
<input type="button" value="QnA" class="plm_btns">
<input type="button" value="배포" class="plm_btns">
<input type="button" value="프로젝트 등록" class="plm_btns btnRegist">
-->
</div>
</div>
<div class="plm_table_wrap">
<table class="plm_table">
<colgroup>
<col width="2%">
<col width="2%">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
</colgroup>
<thead>
<tr class="plm_thead">
<td rowspan="2"><input type="checkbox"></td>
<td rowspan="2">No</td>
<td rowspan="2">견적번호</td>
<td rowspan="2">입찰결과</td>
<td colspan="2">고객사</td>
<td rowspan="2">차종</td>
<td rowspan="2">Type</td>
<td rowspan="2">Grade</td>
<td rowspan="2">입찰품목</td>
<td rowspan="2">견적요청일</td>
<td rowspan="2">견적마감일</td>
<td rowspan="2">제출일자</td>
<td colspan="2">견적담당자</td>
<td colspan="2">생산수량</td>
<td colspan="2">일정</td>
<td colspan="3">접수자료</td>
<td rowspan="2">상태</td>
</tr>
<tr class="plm_sub_thead">
<td>회사명</td>
<td>생산공장</td>
<td>성명</td>
<td>부서</td>
<td>총생산수량</td>
<td>연평균</td>
<td>모델고정</td>
<td>SOP</td>
<td>SR</td>
<td>도면DATA</td>
<td>타팀등록자료</td>
</tr>
</thead>
</table>
<table class="plm_table">
<colgroup>
<col width="2%">
<col width="2%">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
<col width="*">
</colgroup>
<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>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td><a href="#" class="btnFile">◆</a></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div class="plm_page">
<table>
<tr>
<td><a href="#" style="color:#f45c64;s">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>