1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!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>
- </tr>
- <#list list as p>
- <tr>
- <td>${p.orgName!''}</td>
- <td>${p.userType!'' }</td>
- <td>${p.assessmentQuarter!'' }</td>
- <td>${p.replyOfWater!'' }</td>
- <td>${p.actualUseWater!'0' }</td>
- <td>${p.actualClosingWater!'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>
- <td>${p.remark!'' }</td>
- </tr>
- </#list>
- </table>
- </body>
- </html>
|