quarterly-assessment-view.jsp 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <title>单位水表对应表打印预览</title>
  6. <!--框架必需start-->
  7. <script type="text/javascript" src="${ctx}/qui/libs/js/jquery.js"></script>
  8. <script type="text/javascript" src="${ctx}/qui/libs/js/framework.js"></script>
  9. <link href="${ctx}/qui/libs/css/import_basic.css" rel="stylesheet"
  10. type="text/css" />
  11. <link rel="stylesheet" type="text/css" id="skin" prePath="${ctx}/qui/" />
  12. <link rel="stylesheet" type="text/css" id="customSkin" />
  13. <!--框架必需end-->
  14. <style media=print type="text/css">
  15. .noprint {
  16. visibility: hidden
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div class="noprint"
  22. style="padding-top: 10px; padding-right: 200px; text-align: right;">
  23. <input type="button" value="打印" onclick="window.print();">
  24. </div>
  25. <table class="tableStyle" mode="list"
  26. style="width: 1200px; font-size: 16px;" align="center">
  27. <tr>
  28. <td>单位编号</td>
  29. <td>单位名称</td>
  30. <td>单位地址</td>
  31. <td>用户类型</td>
  32. <td>季度</td>
  33. <td>用水计划指标</td>
  34. <td>实际用水量</td>
  35. <td>实际收水量</td>
  36. <td>超用率</td>
  37. <td>应收金额</td>
  38. <td>实收金额</td>
  39. <td>是否销帐</td>
  40. <td>销帐日期</td>
  41. <td>付款方式</td>
  42. <td>用水单价</td>
  43. </tr>
  44. <#list list as p>
  45. <tr>
  46. <td>${p.orgNumber!''}</td>
  47. <td>${p.orgName!''}</td>
  48. <td>${p.address!'' }</td>
  49. <td>${p.userType!'' }</td>
  50. <td>${p.assessmentQuarter!'' }</td>
  51. <td>${p.waterPlanningIndex!'' }</td>
  52. <td>${p.actualUseWater!'0' }</td>
  53. <td>${p.actualClosingWater!'0' }</td>
  54. <td>${p.overWaterPercent!'0' }%</td>
  55. <td>${p.amountReceivable!'0' }</td>
  56. <td>${p.paidInAmount!'0' }</td>
  57. <td>${p.isWriteOff!'' }</td>
  58. <td>${p.writeOffDate!'' }</td>
  59. <td>${p.modeOfPayment!'' }</td>
  60. <td>${p.waterPrice!'0' }</td>
  61. </tr>
  62. </#list>
  63. </table>
  64. </body>
  65. </html>