PurResultContPopup.jsp 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <%--
  2. - Author(s) :
  3. - Date :
  4. - Description:
  5. --%>
  6. <%@page import="monfox.toolkit.snmp.agent.modules.SnmpV2Mib.SysOREntry"%>
  7. <%@ page contentType="text/html; charset=utf-8" %>
  8. <%@ page import="kr.co.udapsoft.common.*" %>
  9. <%@ page import="com.udapsoft.waf.system.*" %>
  10. <%@ page import="com.udapsoft.waf.common.*" %>
  11. <%@ page import="com.udapsoft.waf.common.ui.HTMLMaker" %>
  12. <%@ page import="com.udapsoft.waf.system.HandlerStorage" %>
  13. <%@ page import="kr.co.hsnc.common.util.*"%>
  14. <%@ page import="kr.co.hsnc.common.util.ValueObject" %>
  15. <%@ page import="kr.co.hsnc.common.sql.*" %>
  16. <%@ page import="kr.co.hsnc.common.sql.RowSet" %>
  17. <%@ page import="kr.co.hsnc.common.sql.util.*" %>
  18. <%@ page import="com.udapsoft.waf.common.ui.*" %>
  19. <%@ page import="com.udapsoft.waf.common.util.*" %>
  20. <%@ page import="kr.co.udapsoft.common.code.CommCodeManager" %>
  21. <%-- <%@ include file="/jsp/work/taglib.jsp" %> --%>
  22. <jsp:useBean id="ctx" class="com.udapsoft.waf.system.context.SessionContext" scope="session" />
  23. <%
  24. ctx.init(request, response);
  25. HandlerStorage storage = ctx.getHandlerStorage();
  26. ValueObject params = storage.getParams();
  27. ValueObject user = ctx.getUser();
  28. ValueObject SearchInfo = storage.getValueObject("SearchInfo");
  29. %>
  30. <%@ page contentType="text/html; charset=utf-8" %>
  31. <SCRIPT language="JavaScript">
  32. $(function(){
  33. $(".num").each(function(){
  34. $(this).val($(this).val().split(/(?=(?:\d{3})+(?:\.|$))/g).join(',')+" ");
  35. });
  36. });
  37. </SCRIPT>
  38. <STYLE>
  39. BODY {
  40. padding : 0 0 0 0;
  41. }
  42. </STYLE>
  43. <modular:search id="form1">
  44. <modular:key id="fevent" />
  45. </modular:search>
  46. <FORM name="form1" method="post">
  47. <INPUT type="hidden" name="fevent" id="fevent" value="">
  48. <TABLE cellspacing="1" cellpadding="0" class="search_table">
  49. <colgroup>
  50. <col width="100" />
  51. <col width="85%" />
  52. </colgroup>
  53. <TR height="25">
  54. <TD class="search_table_title" style="text-align:center">계약번호</TD>
  55. <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>
  56. </TR>
  57. <TR height="25">
  58. <TD class="search_table_title" style="text-align:center">계약명</TD>
  59. <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>
  60. </TR>
  61. <TR height="25">
  62. <TD class="search_table_title" style="text-align:center">계약금액</TD>
  63. <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>
  64. </TR>
  65. <TR height="25">
  66. <TD class="search_table_title" style="text-align:center">선급금 금액</TD>
  67. <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>
  68. </TR>
  69. </TABLE>
  70. </FORM>