582 lines
21 KiB
Plaintext
582 lines
21 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 %>" />
|
|
<script>
|
|
$(document).ready(function(){
|
|
|
|
$("._table1").scroll(function () {
|
|
$("._table2").scrollLeft($("._table1").scrollLeft());
|
|
});
|
|
$("._table2").scroll(function () {
|
|
$("._table1").scrollLeft($("._table2").scrollLeft());
|
|
});
|
|
|
|
//날짜
|
|
_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);
|
|
});
|
|
|
|
//영업활동 등록 팝업
|
|
$(".btnRegist").click(function(){
|
|
var popup_width = 1200;
|
|
var popup_height = 730;
|
|
var params = "?actionType=regist"
|
|
var url = "/contractMgmt/contracMgmtFormPopup.do"+params;
|
|
//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 = 400;
|
|
var objId = $(this).attr("data-OBJID");
|
|
var params = "?OBJID="+objId;
|
|
//var url = "/project/wbsTaskProductGanttFormPopUp.do"+params;
|
|
var url = "/project/wbsTaskProductGantt.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=yes, resizable=yes");
|
|
});
|
|
|
|
|
|
//엔터 조회
|
|
$("input").keyup(function(e){
|
|
if(e.keyCode == 13){
|
|
$("#page").val("1");
|
|
fn_search();
|
|
}
|
|
});
|
|
|
|
|
|
//체크박스 전체선택/전체해제
|
|
$("#allCheck").click(function(){
|
|
if($("#allCheck").prop("checked")) {
|
|
$("input[type=checkbox]").prop("checked",true);
|
|
} else {
|
|
$("input[type=checkbox]").prop("checked",false);
|
|
}
|
|
});
|
|
|
|
|
|
//삭제
|
|
$("#btnDelete").click(function(){
|
|
fn_delete();
|
|
});
|
|
|
|
|
|
$("#btnExcel").click(function(){
|
|
document.form1.actionType.value = "excel";
|
|
document.form1.action = "/contractMgmt/contractList.do";
|
|
document.form1.submit();
|
|
});
|
|
|
|
});
|
|
|
|
|
|
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){
|
|
if(confirm("선택한 정보를 삭제하시겠습니까?")){
|
|
var param = $("#form1").serialize();
|
|
$.ajax({
|
|
type : "POST",
|
|
url : "/contractMgmt/deleteContractMngInfo.do",
|
|
data: param,
|
|
dataType:"json",
|
|
success:function(data){
|
|
if(data.result == 'true'){
|
|
Swal.fire("삭제되었습니다.");
|
|
fn_search();
|
|
};
|
|
}
|
|
,error: function(jqxhr, status, error){
|
|
}
|
|
});
|
|
}
|
|
}else{
|
|
Swal.fire("선택한 항목이 없습니다.");
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
//영업활동등록 상세
|
|
function fn_projectConceptDetail(objId){
|
|
var popup_width = 1200;
|
|
var popup_height = 800;
|
|
var url = "/contractMgmt/contracMgmtFormPopup.do?objId="+objId;
|
|
|
|
fn_centerPopup(popup_width, popup_height, url);
|
|
}
|
|
|
|
function fn_search(){
|
|
document.form1.action = "/project/projectMgmtTotalList.do";
|
|
document.form1.submit();
|
|
}
|
|
|
|
|
|
//코드값을 받아와서 동적으로 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();
|
|
|
|
|
|
/* <select name="outc_cd6" id="outc_cd6" type="select">
|
|
<option value="">선택</option>
|
|
</select> */
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
function saveexcelpop() {
|
|
|
|
var partLength = $("input[name=partCheckBox]:checked").length;
|
|
if(partLength == 0){
|
|
Swal.fire('선택된 영업정보가 없습니다.');
|
|
return;
|
|
}
|
|
if(partLength > 1){
|
|
Swal.fire('단건씩 선택해 주세요');
|
|
return;
|
|
}
|
|
|
|
var orderobjId ="";
|
|
$("input[name=partCheckBox]:checked").each(function(){
|
|
orderobjId = fnc_checkNull($(this).attr("data-objId").replace(" ",""));
|
|
});
|
|
|
|
var url = "/ordermgmt/openOrderExcelImportPopUp.do?orderobjId="+orderobjId;
|
|
var target = "openOrderExcelImportPopUp";
|
|
window.open(url, target,"width=1245, height=700, menubars=no, scrollbars=yes, resizable=yes");
|
|
}
|
|
|
|
|
|
//프로젝트의 form,detail 팝업을 보여준다.
|
|
function openProjectFormPopUp(objId){
|
|
window.open("","projectFormPopUp","width=1150, height=676");
|
|
var params = "?actionType=regist"
|
|
var url = "/project/projectFormPopUp.do"+params;
|
|
if("" != objId){
|
|
url = "/project/projectDetailPopUp.do";
|
|
}
|
|
var form = document.form1;
|
|
form.objId.value = objId;
|
|
form.action = url;
|
|
form.target = "projectFormPopUp";
|
|
form.submit();
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<form name="form1" id="form1" action="" method="post">
|
|
<input type="hidden" name="actionType" value="" />
|
|
<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">
|
|
</div>
|
|
</div>
|
|
<div id="plmSearchZon">
|
|
<table>
|
|
<tr>
|
|
<td><label for="Year">년도</label></td>
|
|
<td>
|
|
<select name="Year" id="Year" 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="" class="select2" autocomplete="off">
|
|
<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="" 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> --%>
|
|
|
|
<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>
|
|
</tr>
|
|
<tr>
|
|
<td class="align_r">
|
|
<label>셋업지</label>
|
|
</td>
|
|
<td>
|
|
<input type="text" name="setup" id="setup" style="width:150px;" 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="" class="select2" autocomplete="off">
|
|
<option value="">선택</option>
|
|
${code_map.pm_user_id}
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
|
|
<%-- <td><label for="result_cd">수주결과</label></td>
|
|
<td>
|
|
<select name="result_cd" id="result_cd" style="" class="select2" autocomplete="off">
|
|
<option value="">선택</option>
|
|
${code_map.result_cd}
|
|
</select>
|
|
</td> --%>
|
|
|
|
</table>
|
|
</div>
|
|
<section class="contents_page_basic_margin">
|
|
<!-- <div class="btn_wrap">
|
|
<div class="plm_btn_wrap">
|
|
<input type="button" value="삭제" class="plm_btns delete" id="btnDelete">
|
|
<input type="button" value="등록" class="plm_btns btnRegist create">
|
|
<input type="button" value="고객등록" class="plm_btns supplyMng create">
|
|
<input type="button" value="조회" class="plm_btns" id="btnSearch" name="btnSearch">
|
|
<input type="button" value="Excel Download" class="plm_btns" id="btnExcel">
|
|
</div>
|
|
</div> -->
|
|
|
|
<div class="in_table_scroll_wrap _table1" style="height:53px;width:99.4%;">
|
|
<table class="plm_table">
|
|
<colgroup>
|
|
<col width="90px"><!-- 프로젝트번호 -->
|
|
<col width="60px"><!-- 구분 -->
|
|
<col width="60px"><!-- 고객사-->
|
|
<col width="100px"><!-- 제품구분 -->
|
|
<col width="110px"><!-- -->
|
|
<col width="150px"><!-- 고객사프로젝트명-->
|
|
<col width="150px"><!-- 당사사프로젝트명-->
|
|
<col width="80px"><!-- 고객납기일-->
|
|
<col width="60px"><!-- 셋업지-->
|
|
<col width="60px"><!-- 설비방향 -->
|
|
<col width="60px"><!-- 설비대수-->
|
|
<col width="60px"><!-- 설비타입 -->
|
|
<col width="60px"><!-- 제작넘버 -->
|
|
<col width="70px"><!-- 담당자 -->
|
|
<col width="60px"><!-- 등록일 -->
|
|
<col width="80px"><!-- 첨부파일 -->
|
|
<!-- <col width="100px"> --><!-- 수주가 -->
|
|
<col width="60px"><!-- WBS -->
|
|
<!-- <col width="60px">배포일 -->
|
|
</colgroup>
|
|
<thead>
|
|
<tr class="plm_thead">
|
|
<td colspan="16">프로젝트정보</td>
|
|
<td colspan="1">일정관리</td>
|
|
</tr>
|
|
<tr class="plm_sub_thead">
|
|
<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>PM</td>
|
|
<td>예상납기일</td>
|
|
<!-- <td>수주가(원)</td> -->
|
|
<td>chart</td>
|
|
<!-- <td>배포일</td> -->
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
<div class="in_table_scroll_wrap _table2" style="height:500px;width:100%;">
|
|
<table class="plm_table">
|
|
<colgroup>
|
|
<col width="90px"><!-- 프로젝트번호 -->
|
|
<col width="60px"><!-- 구분 -->
|
|
<col width="60px"><!-- 고객사-->
|
|
<col width="100px"><!-- 제품구분 -->
|
|
<col width="110px"><!-- -->
|
|
<col width="150px"><!-- 고객사프로젝트명-->
|
|
<col width="150px"><!-- 당사사프로젝트명-->
|
|
<col width="80px"><!-- 고객납기일-->
|
|
<col width="60px"><!-- 셋업지-->
|
|
<col width="60px"><!-- 설비방향 -->
|
|
<col width="60px"><!-- 설비대수-->
|
|
<col width="60px"><!-- 설비타입 -->
|
|
<col width="60px"><!-- 제작넘버 -->
|
|
<col width="70px"><!-- 담당자 -->
|
|
<col width="60px"><!-- 등록일 -->
|
|
<col width="80px"><!-- 첨부파일 -->
|
|
<!-- <col width="100px"> --><!-- 수주가 -->
|
|
<col width="60px"><!-- WBS -->
|
|
</colgroup>
|
|
<c:choose>
|
|
<c:when test="${!empty LIST}">
|
|
<c:forEach var="info" items="${LIST}" varStatus="status">
|
|
<tr>
|
|
<td title="${info.PROJECT_NO}" style="text-align:left; padding-left: 5px;">${info.PROJECT_NO}</td><!-- 계약번호 -->
|
|
<td title="${info.CATEGORY_NAME}">${info.CATEGORY_NAME}</td><!-- 지역 -->
|
|
<td title="${info.AREA_NAME}">${info.AREA_NAME}</td><!-- 지역 -->
|
|
<td title="${info.CUSTOMER_NAME}">${info.CUSTOMER_NAME}</td><!-- 고객명 -->
|
|
<td title="${info.PRODUCT_NAME}">${info.PRODUCT_NAME}(${info.MECHANICAL_TYPE})</td><!-- 사업자등록번호 -->
|
|
<td title="${info.CUSTOMER_PROJECT_NAME}" style="text-align:left; padding-left: 5px;">${info.CUSTOMER_PROJECT_NAME}</td><!-- 사업자등록번호 -->
|
|
<td title="${info.PROJECT_NAME}" style="text-align:left; padding-left: 5px;">${info.PROJECT_NAME}</td><!-- 사업자등록번호 -->
|
|
<td title="${info.REQ_DEL_DATE}">${info.REQ_DEL_DATE}</td><!-- 사업자등록번호 -->
|
|
<td title="${info.LOCATION}">${info.LOCATION}</td><!-- 사업자등록번호 -->
|
|
<td title="${info.SETUP}">${info.SETUP}</td><!-- 사업자등록번호 -->
|
|
<td title="${info.FACILITY_NAME}">${info.FACILITY_NAME}</td><!-- 사업자등록번호 -->
|
|
<td title="${info.FACILITY_QTY}"><fmt:formatNumber value="${info.FACILITY_QTY}" pattern="#,###" /></td><!-- 계약체결금액 -->
|
|
<td title="${info.FACILITY_TYPE}">${info.FACILITY_TYPE}</td><!-- 사업자등록번호 -->
|
|
<td title="${info.FACILITY_DEPTH}">${info.FACILITY_DEPTH}</td><!-- 사업자등록번호 -->
|
|
<td title="${info.PM_USER_NAME}">${info.PM_USER_NAME}</td><!-- 사업자등록번호 -->
|
|
<td title="${info.CONTRACT_DEL_DATE}">${info.CONTRACT_DEL_DATE}</td><!-- 사업자등록번호 -->
|
|
<%-- <td title="${info.CONTRACT_PRICE}" style="text-align:right;padding-right: 10px;"><fmt:formatNumber value="${info.CONTRACT_PRICE}" pattern="#,###" /></td> --%><!-- 계약체결금액 -->
|
|
<td><input type="button" class="wbs" value="차트" data-OBJID="${info.OBJID}" style="float:none;"></td>
|
|
<!-- <td>배포일전체 -->
|
|
|
|
</tr>
|
|
</c:forEach>
|
|
</c:when>
|
|
<c:otherwise>
|
|
<tr>
|
|
<td colspan="30" align="center">조회된 데이터가 없습니다.</td>
|
|
</tr>
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</table>
|
|
</div>
|
|
<div class="pdm_page">
|
|
<input type="hidden" name="page" id="page" value="${nPage}">
|
|
<c:if test="${!empty LIST}">
|
|
<div class="page_pro">
|
|
<table align="center">
|
|
<tr>
|
|
<c:choose>
|
|
<c:when test="${nPage > 1}">
|
|
<td><a href="javascript:fnc_goPrev('${prevPage}');">prev</a></td>
|
|
<td> </td>
|
|
</c:when>
|
|
<c:otherwise>
|
|
<td class="no_more_page">prev</td>
|
|
<td> </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>
|
|
<td> </td>
|
|
</c:when>
|
|
<c:otherwise>
|
|
<td><a href="javascript:fnc_goPage('${status.index}');">${status.index}</a></td>
|
|
<td> </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>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html> |