123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734 |
- <%--
- - FileName : OutSupplierApprList.jsp
- - Author(s) : Sung Min Lee
- - Date : 2014.06.17
- -
- - Description: 협력업체평가현황
- --%>
-
- <%@ page contentType="text/html; charset=utf-8" %>
- <%@ page import="com.udapsoft.waf.system.HandlerStorage" %>
- <%@ page import="com.udapsoft.waf.common.ui.*" %>
- <%@ page import="kr.co.hsnc.common.util.*"%>
- <%@ page import="kr.co.hsnc.common.sql.*" %>
- <%@page import="java.net.URLEncoder"%>
- <%@ include file="/jsp/work/taglib.jsp" %>
- <jsp:useBean id="ctx" class="com.udapsoft.waf.system.context.SessionContext" scope="session" />
- <%
- ctx.init(request, response);
- HandlerStorage storage = ctx.getHandlerStorage();
- ValueObject params = storage.getParams();
- ValueObject user = storage.getUser();
-
- ValueObject vo = storage.getValueObject("ResultDetail04BizVo");
- RowSet fileRowSet = storage.getRowSet("RESULT_PDF");
-
- String pageEvent = storage.getEvent();
- %>
- <script type="text/javascript">
- <!--
-
- $(document).on("keyup", "input:text[numberOnly]", function()
- {
- $(this).val( $(this).val().replace(/[^0-9]/gi,"") ); //숫자만입력 정규식...
- $(this).val($(this).val().split(/(?=(?:\d{3})+(?:\.|$))/g).join(',')); //콤마찍기 정규식...귀찮ㄹ타
- });
-
- $(document).on("keyup", "input:text[number]", function()
- {
- $(this).val( $(this).val().replace(/[^0-9]/gi,"") ); //숫자만입력 정규식...
- });
-
- $(document).ready(function(){
-
- if($("#p_page_gubun").val() == "info")
- {
- if($("#prog_stat_cd").val() == "20")
- {
- // $("#btn_issue_req").css("display", "inline");
- }
- else if($("#prog_stat_cd").val() == "30")
- {
- $("#btn_save_area").css("display", "none");
- }
- else if($("#prog_stat_cd").val() == "10")
- {
- $("#btn_issue_req").css("display", "none");
- $("#btn_save").css("display", "none");
- $("#btn_delete").css("display", "none");
- }
- else
- {
- // $("#btn_save").css("display", "none");
-
- $(':input').attr("readonly", false);
- $("#sub_amt").attr("readonly", "true");
- $("#reg_no").attr("readonly", "true");
- $("#isu_charge_nm").attr("readonly", "true");
- $("#isu_req_hp1").attr("readonly", "true");
- $("#isu_req_hp2").attr("readonly", "true");
- $("#isu_req_hp3").attr("readonly", "true");
- }
- }
-
- });
-
- $(function(){
-
- $.gridInit = function()
- {
- var init_sheet = {};
- init_sheet.Cfg = {SearchMode:2, MergeSheet:msHeaderOnly, Page:10};
-
- init_sheet.Cols = [
- {Header:"삭제", Type:"DelCheck", SaveName:"DEL_CHECK", Width:15, Align:"Center", Hidden:"True"}
-
- ];
-
-
- init_sheet.HeaderMode = {Sort:1};
- IBS_InitSheet(sheet1, init_sheet);
- sheet1.SetDataAutoTrim(0);
- // sheet1.SetEditable(false);
- sheet1.SetCountPosition(0);
-
- sheet1.FitColWidth();
- }
-
-
- $(".numberic").each(function(){
- $(this).val($(this).val().split(/(?=(?:\d{3})+(?:\.|$))/g).join(','));
- });
-
- $.callCalendar = function(id){
-
- var str_value = id;
- var re = new RegExp("_", "ig");
- var resultArray = str_value.match(re);
-
- if(resultArray.length == 1)
- {
- dlgCalendar(id);
- }
- else if(resultArray.length == 2)
- {
- id = id.substring(0, id.lastIndexOf("_"));
- dlgCalendar(id);
- }
- };
-
-
- $("[name=date_img]").click(function(){
- var id = $(this).attr("id").substring(0, $(this).attr("id").lastIndexOf("_"));
- dlgCalendar(id);
- });
-
-
- $("#btn_list").click(function(){
-
-
- $("#fevent").val("");
- if($("#p_page_gubun").val() == "target")
- {
- $("#form1").attr("action", "<%=params.get("p_List") %>");
- }
- else if($("#p_page_gubun").val() == "info")
- {
- $("#form1").attr("action", "<%=params.get("p_List") %>");
- }
-
- $("#form1").attr("target", "_self");
- $("#form1").attr("method", "post");
- $("#form1").submit();
-
- });
-
- //2016.1.25
- $("#btn_delete").click(function(){
- var f = document.form1;
-
- if(confirm( "반려 하시겠습니까?"))
- {
- $(':radio[name="p_reson"]:checked').val("91");
- $("#fevent").val("SAVE_STATUS");
- submitXmlRequest("/result/outside/ResultDetail01_form.screen", "SAVE_STATUS", f);
- }
-
- });
-
- $(':radio[name="p_reson"]').click(function(){
-
- if($(':radio[name="p_reson"]:checked').val() == "91" )
- {
- $("#reson_area").css("display", "table-row");
- $("#btn_save").text("반려");
- $("#p_return_reson").val("");
-
- $("#p_return_reson").removeClass();
- $("#p_return_reson").attr("readonly", false);
- $("#p_return_reson").focus();
- }
- else
- {
- $("#reson_area").css("display", "none");
- $("#btn_save").text("승인");
-
- $("#p_return_reson").val("");
- $("#p_return_reson").addClass("bg_gry");
- $("#p_return_reson").attr("readonly", true);
- }
- });
-
- $("#btn_preview").click(function(){
-
- var reportInfo = new ReportInfo();
-
- reportInfo.title = "한국정보통신공사협회 실적증명";
- reportInfo.reportName = "/report/mrd/buyer/supplier/info_application.mrd";
- reportInfo.set("<%=vo.get("corp_id")%>"); // $1
- reportInfo.set("<%=vo.get("sub_cont_mod_id")%>"); // $2
- reportInfo.set("<%=vo.get("acmp_yyyy")%>"); // $3
- reportInfo.set("<%=vo.get("soc_cd")%>"); // $4
-
- reportInfo.width = 1000; // Default: 1024
- reportInfo.height = 700; // Default: 768
- reportInfo.showPopup();
- $("#pdf").val("");
-
- });
-
- $("#btn_save").click(function(){
-
- var f = document.form1;
- fMakeItemInfo();
- if($(':radio[name="p_reson"]:checked').val() == undefined)
- {
- alert("발급 승인여부를 선택해 주세요.");
- return;
- }
-
- if(confirm($("#btn_save").text() + " 하시겠습니까?"))
- {
- if($(':radio[name="p_reson"]:checked').val() == "91" )
- {
- if($("#p_return_reson").val().trim() == "")
- {
- alert("반려사유를 입력해 주세요.");
- return $("#p_return_reson").focus();
- }
- $("#fevent").val("SAVE_STATUS");
- submitXmlRequest("/result/outside/ResultDetail01_form.screen", "SAVE_STATUS", f);
- }else{
- $("#fevent").val("SIGN_OK");
- submitXmlRequest("/result/outside/ResultDetail01_form.screen", "SIGN_OK", f);
- }
- }
-
- });
-
- });
-
- $(document).ready(function(){
-
-
- if($("#p_success_gubun").val() == "R")
- {
- $(':radio[name="p_reson"]').attr("disabled", true);
- $(':input').attr("readonly", true);
- $(':input[type="text"]').addClass("bg_gry");
- $(':input[type="text"]').addClass("input_blank");
- }
-
-
-
- if($(':radio[name="p_reson"]:checked').val() == "91" )
- {
- $("#reson_area").css("display", "table-row");
- $("#btn_save").text("반려");
-
- $("#p_return_reson").removeClass();
- $("#p_return_reson").attr("readonly", false);
- $("#p_return_reson").focus();
- }
- else
- {
- $("#reson_area").css("display", "none");
- $("#btn_save").text("승인");
-
- $("#p_return_reson").val("");
- $("#p_return_reson").addClass("bg_gry");
- $("#p_return_reson").attr("readonly", true);
- }
-
-
- if($("#p_page_gubun").val() == "info")
- {
- if($("#prog_stat_cd").val() == "20")
- {
- $("#btn_issue_req").css("display", "");
- $(':input').attr("readonly", true);
- $(':input[type="text"]').addClass("bg_gry");
- $(':input[type="text"]').addClass("input_blank");
- $("#btn_delete").css("display", "none");
- }
- else if($("#prog_stat_cd").val() == "30")
- {
- $("#btn_save").css("display", "none");
- }
- else
- {
- $("#btn_delete").css("display", "none");
- $("#btn_issue_req").css("display", "none");
- $("#btn_delete").css("display", "none");
-
-
- $("#issue_no").attr("readonly", "true");
- $("#lic_org").attr("readonly", "true");
- $("#lic_date").attr("readonly", "true");
- $("#lic_nm").attr("readonly", "true");
- $("#reg_no").attr("readonly", "true");
- $("#isu_charge_nm").attr("readonly", "true");
- $("#etc").attr("readonly", "true");
- $("#isu_req_hp1").attr("readonly", "true");
- $("#isu_req_hp2").attr("readonly", "true");
- $("#isu_req_hp3").attr("readonly", "true");
- }
-
-
- if($("#prog_stat_cd").val() == "91")
- {
- $("#p_return_reson").removeClass();
- $("#p_return_reson").attr("readonly", false);
- }
- else
- {
- $("#p_return_reson").val();
- }
- }
- else
- {
- $("#btn_issue_req").css("display", "none");
- }
-
-
-
-
- });
-
-
- function doResult(resultObj) {
- try
- {
- document.form1.isSubmit = false;
-
- if( resultObj.getRequestEvent() == "SAVE_STATUS")
- {
- if( resultObj.getSuccess() )
- {
- alert($("#btn_save").text() + " 되었습니다.");
- if($(':radio[name="p_reson"]:checked').val() == "91" )
- {
- location.href="/result/outside/ResultIngList.screen";
- }
- else
- {
- location.href="/result/outside/ResultFinishList.screen";
- }
- }
- else
- {
- // dlgErrorMsg(resultObj.getMessage);
- alert(resultObj.getValueObject().get("errMsg"));
- }
- }else if(resultObj.getRequestEvent() == "SIGN_OK"){
- if( resultObj.getSuccess() )
- {
- alert($("#btn_save").text() + " 되었습니다.");
- if($(':radio[name="p_reson"]:checked').val() == "91" )
- {
- location.href="/result/outside/ResultIngList.screen";
- }
- else
- {
- location.href="/result/outside/ResultFinishList.screen";
- }
- }
- else
- {
- alert("실패하였습니다.");
- //alert(resultObj.getValueObject().get("errMsg"));
- }
- }
- }
- catch(errorObject) {
- showErrorDlg("doResult()", errorObject);
- }
- }
-
- function fMakeItemInfo(){
-
- var sColumDelimiter = "┃";
- var sRowDelimiter = "↕";
- var sSumDelimiter = "╂";
- var sEncDelimiter = "⇔";
- var isNull = "NULL";
- //해시
- var sContHash = "";
- var sTemplate = "01";
- <%-- var sMainVendcd = "<%=vo.get("isu_vendcd") %>"; --%>
- var sMainVendcd = "1234567890"; // 원사업자번호
- var issue_no = "<%=vo.get("issue_no") %>";
- var reg_no = "<%=vo.get("reg_no") %>";
- var prv_trans_amt = "<%=vo.get("prv_trans_amt") %>";
- var cur_pay_amt = "<%=vo.get("cur_pay_amt") %>";
- var sub_amt = "<%=vo.get("sub_amt") %>";
- var cur_pay_namt = "<%=vo.get("cur_pay_namt") %>";
-
- sContHash=issue_no +sColumDelimiter
- +reg_no +sColumDelimiter
- +prv_trans_amt +sColumDelimiter
- +cur_pay_amt +sColumDelimiter
- +sub_amt +sColumDelimiter
- +cur_pay_namt +sRowDelimiter;
-
- $("#CONT_HASH").val(sContHash);
- //if(confirm("서명 하시겠습니까?")){
- // SignData();
- //}
- }
-
- function isEmptyVal( value ) {
- if(value.length == 0){
- return true;
- }
- if( value == "" ) {
- return true;
- }
- return false;
- }
-
-
- //-->
- </script>
- <modular:search id="form1">
- <modular:key id="fevent" />
- </modular:search>
- <form id="form1" name="form1" method="post" modular:type="search">
- <INPUT type="hidden" name="fevent" id="fevent" value="" />
- <input type="hidden" name="p_page_gubun" id="p_page_gubun" value="<%=params.get("p_page_gubun") %>" />
- <input type="hidden" name="p_sub_cont_mod_id" id="p_sub_cont_mod_id" value="<%=vo.get("sub_cont_mod_id") %>" />
- <input type="hidden" name="p_acmp_yyyy" id="p_acmp_yyyy" value="<%=vo.get("acmp_yyyy") %>" />
- <input type="hidden" name="p_corp_id" id="p_corp_id" value="<%=vo.get("corp_id") %>" />
- <input type="hidden" name="p_soc_cd" id="p_soc_cd" value= "<%=params.get("p_soc_cd") %>" />
- <input type="hidden" name="sub_cont_mod_id" id="sub_cont_mod_id" value="<%=vo.get("sub_cont_mod_id") %>" />
- <input type="hidden" name="acmp_yyyy" id="acmp_yyyy" value="<%=vo.get("acmp_yyyy") %>" />
- <input type="hidden" name="corp_id" id="corp_id" value="<%=vo.get("corp_id") %>" />
- <input type="hidden" name="soc_cd" id="soc_cd" value= "<%=params.get("p_soc_cd") %>" />
- <input type="hidden" name="dept_cd" id="dept_cd" value= "<%=vo.get("dept_cd") %>" />
- <input type="hidden" name="dept_nm" id="dept_nm" value= "<%=vo.get("dept_name") %>" />
- <input type="hidden" name="isu_vendcd" id="isu_vendcd" value= "<%=vo.get("isu_vendcd") %>" />
- <input type="hidden" name="con_amt" id="con_amt" value= "<%=vo.get("con_amt") %>" />
- <input type="hidden" name="prog_stat_cd" id="prog_stat_cd" value= "<%=vo.get("prog_stat_cd") %>" />
- <input type="hidden" name="p_success_gubun" id="p_success_gubun" value= "<%=params.get("p_success_gubun") %>" />
- <input type="hidden" name="p_yyyy" id="p_yyyy" value= "<%=params.get("p_yyyy") %>" />
- <input type="hidden" name="p_dept_nm" id="p_dept_nm" value= "<%=params.get("p_dept_nm") %>" />
- <input type="hidden" name="p_cont_nm" id="p_cont_nm" value= "<%=params.get("p_cont_nm") %>" />
- <input type="hidden" name="p_status" id="p_status" value= "<%=params.get("p_status") %>" />
- <input type="hidden" name="CONT_HASH" id="CONT_HASH" value= "" />
- <input type="hidden" name="PRV_PAY_AMT_O" id="PRV_PAY_AMT_O" value= "<%=vo.get("PRV_PAY_AMT_O") %>" />
- <input type="hidden" name="CUR_PAY_NAMT_O" id="CUR_PAY_NAMT_O" value= "<%=vo.get("CUR_PAY_NAMT_O") %>" />
- <div align="left" id="title" style="float: left;">
- <ul>
- <li>실적증명 상세(<%=vo.get("PROG_STAT_NM").equals("") ? "작성대상" : vo.get("PROG_STAT_NM")%>)</li>
- </ul>
- </div>
- <div style="float: right; margin-top: 16px;">
- <span class="btnSearch center"><a href="javascript:void(0);" id="btn_list">목록</a></span>
- <span class="btnSearch center" id="btn_preview_area"><a href="javascript:void(0);" id="btn_preview">미리보기</a></span>
- <span class="btnSearch center" id="btn_save_area"><a href="javascript:void(0);" id="btn_save">승인</a></span>
- <span class="btnSearch center"><a href="javascript:void(0);" id="btn_delete">반려</a></span>
- </div>
- <div style="float: left;" class="application-info magT10">
- <div class="application-sub-title">
- <span class="title">진행상태</span>
- </div>
- <div class="application-location">
- </div>
- </div>
- <table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%" class=form-table>
- <colgroup>
- <col width="15%" />
- <col width="*%" />
- </colgroup>
-
- <tr>
- <th style="text-align: left; width: 100px;" >발급 승인여부</th>
- <td style="text-align: left;" colspan="3">
- <span><input type="radio" name="p_reson" id="p_reson1" value="30" <%=vo.get("prog_stat_cd").equals("30") ? "checked=\"checked\"" : "" %> /> 승인</span>
- <span style="margin-left: 50px;"><input type="radio" name="p_reson" id="p_reson2" value="91" <%=vo.get("prog_stat_cd").equals("91") ? "checked=\"checked\"" : "" %> /> 반려</span>
- </td>
- </tr>
- <tr id="reson_area">
- <th style="text-align: left;">반려사유</th>
- <td colspan="3">
- <textarea name="p_return_reson" id="p_return_reson" rows="5" style="width: 100%;" ><%=vo.get("return_reson") %></textarea>
- </td>
- </tr>
- </table>
- <!-- 기성실적증명서 정보 -->
- <div style="float: left;" class="application-info magT10">
- <div class="application-sub-title">
- <span class="title">기성실적증명서 정보</span>
- </div>
- <div class="application-location">
- </div>
- </div>
- <table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%" class=form-table>
- <colgroup>
- <col width="15%" />
- <col width="35%" />
- <col width="15%" />
- <col width="35%" />
- </colgroup>
- <!-- 검색조건 영역, 테이터 영역 구분 여백 : 시작 -->
- <tr>
- <th style="text-align: left;">발 급 협 회</th>
- <td>
- 한국정보통신공사협회
- </td>
- <th style="text-align: left;">일 련 번 호</th>
- <td>
- <input type="text" name="issue_no" id="issue_no" value="<%=vo.get("issue_no") %>" />
- </td>
- </tr>
- </table>
- <!-- 신청인 -->
- <div style="float: left;" class="application-info magT10">
- <div class="application-sub-title">
- <span class="title">신청인</span>
- </div>
- <div class="application-location">
- </div>
- </div>
- <table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%" class=form-table>
- <colgroup>
- <col width="15%" />
- <col width="35%" />
- <col width="15%" />
- <col width="35%" />
- </colgroup>
- <!-- 검색조건 영역, 테이터 영역 구분 여백 : 시작 -->
- <tr>
- <th style="text-align: left;">상 호</th>
- <td>
- <input type="text" name="isu_vendnm" id="isu_vendnm" value="<%=vo.get("ISU_VENDNM") %>" class="bg_gry input_blank" readonly="readonly"/>
- </td>
- <th style="text-align: left;">면허번호</th>
- <td>
- <input type="text" name="reg_no" id="reg_no" value="<%=vo.get("reg_no") %>" style="width: 100%;" />
- </td>
- </tr>
- <tr>
- <th style="text-align: left;">대표자</th>
- <td>
- <input type="text" name="isu_pres_nm" id="isu_pres_nm" value="<%=vo.get("isu_pres_nm") %>" class="bg_gry input_blank" readonly="readonly"/>
- </td>
- <th style="text-align: left;">전화번호</th>
- <td>
- <input type="text" name="isu_phone" id="isu_phone" value="<%=vo.get("isu_phone") %>" class="bg_gry input_blank" readonly="readonly"/>
- </td>
- </tr>
- <tr>
- <th style="text-align: left;">영업소 소재지</th>
- <td colspan="3">
- <input type="text" name="isu_addr" id="isu_addr" value="<%=vo.get("ISU_ADDR") %>" class="bg_gry input_blank" readonly="readonly"/>
- </td>
- </tr>
- </table>
- <!-- 공사내역 -->
- <div style="float: left;" class="application-info magT10">
- <div class="application-sub-title">
- <span class="title">공사내역</span>
- </div>
- <div class="application-location">
- </div>
- </div>
- <table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%" class=form-table>
- <colgroup>
- <col width="15%" />
- <col width="35%" />
- <col width="15%" />
- <col width="35%" />
- </colgroup>
- <!-- 검색조건 영역, 테이터 영역 구분 여백 : 시작 -->
-
- <tr>
- <th style="text-align: left;">공사명</th>
- <td colspan="3">
- <input type="text" name="cont_nm" id="cont_nm" value="<%=vo.get("cont_nm") %>" class="bg_gry input_blank" readonly="readonly"/>
- </td>
- </tr>
-
- <tr>
- <th style="text-align: left;">계약연월</th>
- <td colspan="3">
- <input type="text" name="cont_cdate" id="cont_cdate" value="<%=vo.get("cont_cdate") %>" class="bg_gry input_blank" readonly="readonly" style="width: 80px;"/>
- <!-- <img alt="달력" id="cont_cdate_img" name="date_img" src="/img/buyer/icon/icon_calendar.gif" style="vertical-align: middle; cursor: pointer;"/> -->
- </td>
- </tr>
-
- <tr>
- <th style="text-align: left;">착공연월</th>
- <td>
- <input type="text" name="cont_sdate" id="cont_sdate" value="<%=vo.get("cont_sdate") %>" class="bg_gry input_blank" readonly="readonly" style="width: 80px;" />
- <!-- <img alt="달력" id="cont_sdate_img" name="date_img" src="/img/buyer/icon/icon_calendar.gif" style="vertical-align: middle; cursor: pointer;"/> -->
- </td>
-
- <th style="text-align: left;">준공연월</th>
- <td>
- <input type="text" name="cont_edate" id="cont_edate" value="<%=vo.get("cont_edate") %>" class="bg_gry input_blank" readonly="readonly" style="width: 80px;" />
- </td>
- </tr>
-
- <tr>
- <th style="text-align: left;">계약금액(총계약금액)</th>
- <td>
- <input type="text" name="cont_tamt" id="cont_tamt" value="<%=vo.get("cont_tamt") %>" style="text-align: right; width: 200px;" numberOnly="true" class="numberic bg_gry input_blank" readonly="readonly"/> 천원
- (<input type="text" name="cont_tamt_o" id="cont_tamt_o" value="<%=vo.get("cont_tamt_O") %>" style="text-align: right; width: 70px;" class="numberic bg_gry input_blank" readonly="readonly" /> )
- </td>
-
- <th style="text-align: left;">전년도 이월공사행</th>
- <td>
- <input type="text" name="prv_trans_amt" id="prv_trans_amt" value="<%=vo.get("prv_trans_amt") %>" style="text-align: right; width: 200px;" numberOnly="true" class="numberic bg_gry input_blank" readonly="readonly"/> 천원
- </td>
- </tr>
-
- <tr>
- <th style="text-align: left;">당년도 계약액</th>
- <td>
- <input type="text" name="cur_cont_amt" id="cur_cont_amt" value="<%=vo.get("cur_cont_amt") %>" style="text-align: right; width: 200px;" numberOnly="true" class="numberic bg_gry input_blank" readonly="readonly"/> 천원
- </td>
-
- <th style="text-align: left;">당년도 기성액(총기성액)</th>
- <td>
- <input type="text" name="cur_pay_amt" id="cur_pay_amt" value="<%=vo.get("cur_pay_amt") %>" style="text-align: right; width: 200px;" numberOnly="true" class="numberic bg_gry input_blank" readonly="readonly"/> 천원
- (<input type="text" name="cur_pay_amt_o" id="cur_pay_amt_o" value="<%=vo.get("cur_pay_amt_O") %>" style="text-align: right; width: 70px;" class="numberic bg_gry input_blank" readonly="readonly" /> )
- </td>
- </tr>
-
- <tr>
- <th style="text-align: left;">하도급금액</th>
- <td>
- <input type="text" name="sub_amt" id="sub_amt" value="<%=vo.get("sub_amt") %>" style="text-align: right; width: 200px;" numberOnly="true" class="numberic" /> 천원
- </td>
-
- <th style="text-align: left;">당년도 미기성액</th>
- <td>
- <input type="text" name="cur_pay_namt" id="cur_pay_namt" value="<%=vo.get("cur_pay_namt") %>" style="text-align: right; width: 200px;" numberOnly="true" class="numberic bg_gry input_blank" readonly="readonly"/> 천원
- </td>
- </tr>
- </table>
- <div id="sheetDiv" style="visibility: hidden;">
- <script>createIBSheet("sheet1","100%", "0px;");</script>
- </div>
- <!-- 공사내역 -->
- <div style="float: left;" class="application-info magT10">
- <div class="application-sub-title">
- <span class="title">발급요청자 정보</span>
- </div>
- <div class="application-location">
- </div>
- </div>
- <table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%" class=form-table>
- <colgroup>
- <col width="15%" />
- <col width="*" />
- </colgroup>
- <!-- 검색조건 영역, 테이터 영역 구분 여백 : 시작 -->
- <tr>
- <th style="text-align: left;">담당자명</th>
- <td>
- <input type="text" name="isu_charge_nm" id="isu_charge_nm" value="<%=vo.get("isu_charge_nm") %>" />
- </td>
- <th style="text-align: left;">휴대전화</th>
- <td>
- <input type="text" name="isu_req_hp1" id="isu_req_hp1" value="<%=vo.get("isu_req_hp1") %>" style="width: 80px;" maxlength="3" number="true"/> -
- <input type="text" name="isu_req_hp2" id="isu_req_hp2" value="<%=vo.get("isu_req_hp2") %>" style="width: 120px;" maxlength="4" number="true"/> -
- <input type="text" name="isu_req_hp3" id="isu_req_hp3" value="<%=vo.get("isu_req_hp3") %>" style="width: 120px;" maxlength="4" number="true"/>
- </td>
- </tr>
- </table>
- <%if(vo.get("prog_stat_cd").equals("30")){ %>
- <div id="file_area" style="width: 100%;">
- <!-- 공사내역 -->
- <div style="float: left;" class="application-info magT10">
- <div class="application-sub-title">
- <span class="title">첨부파일</span>
- </div>
- <div class="application-location">
- </div>
- </div>
- <table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%" class=form-table>
- <colgroup>
- <col width="15%" />
- <col width="*" />
- </colgroup>
- <!-- 검색조건 영역, 테이터 영역 구분 여백 : 시작 -->
- <tr>
- <th style="text-align: left;">첨부파일</th>
- <td colspan="3">
- <div id="auto_attach_file_view" class="attach_file_view">
- <ul>
- <%
- for(int i=0; i<fileRowSet.size(); i++)
- {
- %>
- <li>
- <a href="/common/file/FileDownloadServlet?mode=fpDown&filePath=<%=fileRowSet.getRow(i).get("FILE_PATH")%>&fileName=<%=URLEncoder.encode(fileRowSet.getRow(i).get("FILE_NAME"), "UTF-8")%>&fileRealName=<%=fileRowSet.getRow(i).get("REAL_FILE_NAME")%>"><%=i+1%> : <%=fileRowSet.getRow(i).get("FILE_NAME")%> (<%=fileRowSet.getRow(i).get("FILE_SIZE").trim() %>)</a>
- </li>
- <%
- }
- %>
- </ul>
- </div>
- </td>
- </tr>
- </table>
- </div>
- <%} %>
- </form>
|