12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <%--
- - Author(s) :
- - Date :
- - Description:
- --%>
- <%@page import="monfox.toolkit.snmp.agent.modules.SnmpV2Mib.SysOREntry"%>
- <%@ page contentType="text/html; charset=utf-8" %>
- <%@ page import="kr.co.udapsoft.common.*" %>
- <%@ page import="com.udapsoft.waf.system.*" %>
- <%@ page import="com.udapsoft.waf.common.*" %>
- <%@ page import="com.udapsoft.waf.common.ui.HTMLMaker" %>
- <%@ page import="com.udapsoft.waf.system.HandlerStorage" %>
- <%@ page import="kr.co.hsnc.common.util.*"%>
- <%@ page import="kr.co.hsnc.common.util.ValueObject" %>
- <%@ page import="kr.co.hsnc.common.sql.*" %>
- <%@ page import="kr.co.hsnc.common.sql.RowSet" %>
- <%@ page import="kr.co.hsnc.common.sql.util.*" %>
- <%@ page import="com.udapsoft.waf.common.ui.*" %>
- <%@ page import="com.udapsoft.waf.common.util.*" %>
- <%@ page import="kr.co.udapsoft.common.code.CommCodeManager" %>
- <%-- <%@ 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 = ctx.getUser();
- ValueObject SearchInfo = storage.getValueObject("SearchInfo");
- %>
- <%@ page contentType="text/html; charset=utf-8" %>
- <SCRIPT language="JavaScript">
- $(function(){
- $(".num").each(function(){
- $(this).val($(this).val().split(/(?=(?:\d{3})+(?:\.|$))/g).join(',')+" ");
- });
- });
- </SCRIPT>
- <STYLE>
- BODY {
- padding : 0 0 0 0;
- }
- </STYLE>
- <modular:search id="form1">
- <modular:key id="fevent" />
- </modular:search>
- <FORM name="form1" method="post">
- <INPUT type="hidden" name="fevent" id="fevent" value="">
-
- <TABLE cellspacing="1" cellpadding="0" class="search_table">
- <colgroup>
- <col width="100" />
- <col width="85%" />
- </colgroup>
- <TR height="25">
- <TD class="search_table_title" style="text-align:center">계약번호</TD>
- <TD class="search_table_data" style="padding-left:5px;text-align:left;"><%= InputText.get("CON_DOC_NO", SearchInfo.get("CON_DOC_NO"), 90, 200, "desc=계약번호,persize,readonly") %></TD>
- </TR>
- <TR height="25">
- <TD class="search_table_title" style="text-align:center">계약명</TD>
- <TD class="search_table_data" style="padding-left:5px;text-align:left;"><%= InputText.get("BUILD_NAME", SearchInfo.get("BUILD_NAME"), 90, 200, "desc=계약명,persize,readonly") %></TD>
- </TR>
- <TR height="25">
- <TD class="search_table_title" style="text-align:center">계약금액</TD>
- <TD class="search_table_data" style="padding-left:5px;text-align:left;"><%= InputText.get("CON_AMT", SearchInfo.get("CON_AMT"), 50, 200, "desc=계약금액,persize,readonly,right,class=input num") %> 천원</TD>
- </TR>
- <TR height="25">
- <TD class="search_table_title" style="text-align:center">선급금 금액</TD>
- <TD class="search_table_data" style="padding-left:5px;text-align:left;"><%= InputText.get("PREPAY_AMT", SearchInfo.get("PREPAY_AMT"), 50, 200, "desc=선급금,persize,readonly,right,class=input num") %> 천원</TD>
- </TR>
- </TABLE>
- </FORM>
|