1
0

report_detail.jsp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <%@ include file="../common/header.jsp"%>
  2. <script type="text/javascript" language="javascript">
  3. <!--
  4. function doBack(){
  5. document.forms.report.action.value="list";
  6. document.forms.report.submit();
  7. }
  8. -->
  9. </script>
  10. <!-- CONTENT -->
  11. <form name="report" method="post" action="report.do">
  12. <input type="hidden" name="action" value =""/>
  13. <input type="hidden" name="clear" value =""/>
  14. <input type="hidden" name="code" value =""/>
  15. <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
  16. <tr>
  17. <td class="titleHeader"><bean:message key="project.report.key"/> - DETAIL</td>
  18. </tr>
  19. </table>
  20. <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
  21. <tr>
  22. <td align="center">
  23. <table width="100%" border="0" cellspacing="1" cellpadding="2">
  24. <tr align = "left">
  25. <td width="15%"><b><bean:message key="report.code.key" /></b></td>
  26. <td width="1%">:</td>
  27. <td width="34%">
  28. <bean:write name="report" property="code"/>
  29. </td>
  30. <td width="5%">&nbsp;</td>
  31. <td width="15%">&nbsp;</td>
  32. <td width="10">&nbsp;</td>
  33. <td width="30%">&nbsp;</td>
  34. </tr>
  35. <tr align = "left">
  36. <td width="15%"><b><bean:message key="report.name.key"/></b></td>
  37. <td width="1%">:</td>
  38. <td width="34%">
  39. <bean:write name="report" property="report"/>
  40. </td>
  41. <td width="5%">&nbsp;</td>
  42. <td width="15%">&nbsp;</td>
  43. <td width="10">&nbsp;</td>
  44. <td width="30%">&nbsp;</td>
  45. </tr>
  46. <tr align = "left">
  47. <td width="15%"><b><bean:message key="report.filter.key" /></b></td>
  48. <td width="1%">:</td>
  49. <td width="34%">
  50. <bean:write name="report" property="filter.name"/>
  51. </td>
  52. <td width="5%">&nbsp;</td>
  53. <td width="15%">&nbsp;</td>
  54. <td width="10">&nbsp;</td>
  55. <td width="30%">&nbsp;</td>
  56. </tr>
  57. <tr align = "left">
  58. <td width="15%"><b><bean:message key="report.category.key" /></b></td>
  59. <td width="1%">:</td>
  60. <td width="34%">
  61. <bean:write name="report" property="billerCategory.name"/>
  62. </td>
  63. <td width="5%">&nbsp;</td>
  64. <td width="15%">&nbsp;</td>
  65. <td width="10">&nbsp;</td>
  66. <td width="30%">&nbsp;</td>
  67. </tr>
  68. <tr align = "left">
  69. <td width="15%"><b><bean:message key="report.filename.key" /></b></td>
  70. <td width="1%">:</td>
  71. <td width="34%">
  72. <a href="report.do?action=downloadJasper&code=<bean:write name="report" property="code"/>"><bean:write name="report" property="filename"/></a>
  73. </td>
  74. <td width="5%">&nbsp;</td>
  75. <td width="15%">&nbsp;</td>
  76. <td width="10">&nbsp;</td>
  77. <td width="30%">&nbsp;</td>
  78. </tr>
  79. <tr align = "left">
  80. <td width="15%"><b><bean:message key="report.status.key" /></b></td>
  81. <td width="1%">:</td>
  82. <td width="34%">
  83. <bean:write name="report" property="status"/>
  84. </td>
  85. <td width="5%">&nbsp;</td>
  86. <td width="15%">&nbsp;</td>
  87. <td width="10">&nbsp;</td>
  88. <td width="30%">&nbsp;</td>
  89. </tr>
  90. <tr align = "left">
  91. <td width="15%"><b><bean:message key="report.modifiedBy.key" /></b></td>
  92. <td width="1%">:</td>
  93. <td width="34%">
  94. <bean:write name="report" property="modifiedBy"/>
  95. </td>
  96. <td width="5%">&nbsp;</td>
  97. <td width="15%">&nbsp;</td>
  98. <td width="10">&nbsp;</td>
  99. <td width="30%">&nbsp;</td>
  100. </tr>
  101. <tr align = "left">
  102. <td width="15%"><b><bean:message key="report.lastModified.key" /></b></td>
  103. <td width="1%">:</td>
  104. <td width="34%">
  105. <bean:write name="report" property="modifiedDate.time"/>
  106. </td>
  107. <td width="5%">&nbsp;</td>
  108. <td width="15%">&nbsp;</td>
  109. <td width="10">&nbsp;</td>
  110. <td width="30%">&nbsp;</td>
  111. </tr>
  112. <tr>
  113. <td width="15%"></td>
  114. <td width="1%"></td>
  115. <td width="34%">
  116. <input type="button" value=<bean:message key="button.back" /> onclick="doBack();" value="Back" />
  117. </td>
  118. <td colspan="4">&nbsp;</td>
  119. </tr>
  120. </table>
  121. </td>
  122. </tr>
  123. </table>
  124. </form>
  125. <!-- END CONTENT -->
  126. <%@ include file="../common/footer.jsp"%>