billerCategory_create.jsp 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <%@ include file="../common/header.jsp" %>
  2. <script type="text/javascript" language="javascript">
  3. <!--
  4. function doCreate(){
  5. var x = window.confirm("<bean:message key="confirm.create" />");
  6. if (x) {
  7. document.forms.billerCategory.action.value="create_ok";
  8. document.forms.billerCategory.post.value = "true";
  9. document.forms.billerCategory.submit();
  10. doDisable(document.forms.billerCategory, "button");
  11. }
  12. }
  13. function doBack(){
  14. document.forms.billerCategory.action.value="list";
  15. document.forms.billerCategory.clear.value="true";
  16. document.forms.billerCategory.submit();
  17. }
  18. -->
  19. </script>
  20. <!-- CONTENT -->
  21. <FORM name="billerCategory" method="post" action="billerCategory.do">
  22. <input type="hidden" name="action">
  23. <input type="hidden" name="post">
  24. <input type="hidden" name="clear">
  25. <input type="hidden" name="itemFocus">
  26. <!-- <td width="640" valign="top"> -->
  27. <!-- td width="80%" valign="top"-->
  28. <!-- <td valign="top">
  29. --> <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
  30. <td class="titleHeader" align="left"><bean:message key="project.billerCategory.key"/> - CREATE</td>
  31. </table>
  32. <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
  33. <tr>
  34. <td align="center">
  35. <table width="100%" border="0" cellspacing="1" cellpadding="2">
  36. <tr><td colspan="7"><html:errors/></td></tr>
  37. <tr>
  38. <td width="15%"><b><bean:message key="billerCategory.code.key"/> <font color="#FF0000">*</font></b></td>
  39. <td width="1%">:</td>
  40. <td width="34%">
  41. <html:text name="billerCategory" property="code" maxlength="50"/>
  42. </td>
  43. <td width="5%">&nbsp;</td>
  44. <td width="15%">&nbsp;</td>
  45. <td width="10">&nbsp;</td>
  46. <td width="30%">&nbsp;</td>
  47. </tr>
  48. <tr>
  49. <td width="15%"><b><bean:message key="billerCategory.name.key"/> <font color="#FF0000">*</font></b></td>
  50. <td width="1%">:</td>
  51. <td width="34%">
  52. <html:text name="billerCategory" property="name" maxlength="50"/>
  53. </td>
  54. <td width="5%">&nbsp;</td>
  55. <td width="15%">&nbsp;</td>
  56. <td width="10">&nbsp;</td>
  57. <td width="30%">&nbsp;</td>
  58. </tr>
  59. <tr>
  60. <td width="15%"></td>
  61. <td width="1%"></td>
  62. <td width="84%">
  63. <input type="button" value="<bean:message key="button.back"/>" onclick="javascript:doBack();"/>
  64. &nbsp;<input type="button" value="Submit" onclick="javascript:doCreate();"/></td>
  65. <td colspan="4">&nbsp;</td>
  66. </tr>
  67. </table>
  68. </td>
  69. </tr>
  70. <tr>
  71. <td>&nbsp;</td>
  72. </tr>
  73. </table>
  74. </form>
  75. <!-- END CONTENT -->
  76. <%@ include file="../common/footer.jsp"%>