123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>单位水表对应表打印预览</title>
- <!--框架必需start-->
- <script type="text/javascript" src="${ctx}/qui/libs/js/jquery.js"></script>
- <script type="text/javascript" src="${ctx}/qui/libs/js/framework.js"></script>
- <link href="${ctx}/qui/libs/css/import_basic.css" rel="stylesheet"
- type="text/css" />
- <link rel="stylesheet" type="text/css" id="skin" prePath="${ctx}/qui/" />
- <link rel="stylesheet" type="text/css" id="customSkin" />
- <!--框架必需end-->
- <style media=print type="text/css">
- .noprint {
- visibility: hidden
- }
- </style>
- </head>
- <body>
- <div class="noprint"
- style="padding-top: 10px; padding-right: 200px; text-align: right;">
- <input type="button" value="打印" onclick="window.print();">
- </div>
- <table class="tableStyle" mode="list"
- style="width: 1200px; font-size: 16px;" align="center">
- <tr>
- <td>单位编号</td>
- <td>单位名称</td>
- <td>单位地址</td>
- <td>用户类型</td>
- <td>季度</td>
- <td>用水计划指标</td>
- <td>实际用水量</td>
- <td>实际收水量</td>
- <td>超用率</td>
- <td>应收金额</td>
- <td>实收金额</td>
- <td>是否销帐</td>
- <td>销帐日期</td>
- <td>付款方式</td>
- <td>用水单价</td>
- </tr>
- <#list list as p>
- <tr>
- <td>${p.orgNumber!''}</td>
- <td>${p.orgName!''}</td>
- <td>${p.address!'' }</td>
- <td>${p.userType!'' }</td>
- <td>${p.assessmentQuarter!'' }</td>
- <td>${p.waterPlanningIndex!'' }</td>
- <td>${p.actualUseWater!'0' }</td>
- <td>${p.actualClosingWater!'0' }</td>
- <td>${p.overWaterPercent!'0' }%</td>
- <td>${p.amountReceivable!'0' }</td>
- <td>${p.paidInAmount!'0' }</td>
- <td>${p.isWriteOff!'' }</td>
- <td>${p.writeOffDate!'' }</td>
- <td>${p.modeOfPayment!'' }</td>
- <td>${p.waterPrice!'0' }</td>
- </tr>
- </#list>
- </table>
- </body>
- </html>
|