12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!-- include 'header' -->
- <link rel=stylesheet href="<?= WEB_SITE_GLOBAL ?>css/fixedheadertable.css">
- <script src="<?= WEB_SITE_GLOBAL ?>js/jquery.fixedheadertable.js"></script>
- <script src="<?= WEB_SITE_GLOBAL ?>js/invoice.js"></script>
- <body>
- <div class="mainLayout">
- <div class="mainMenu">
- <div class="menuItem">
- <a href="#" class="mLogo">CLD</a>
- <ul>
- <!-- include 'menuReceipt' -->
- </ul>
- </div>
-
- </div>
- <div class="warpContent">
- <div class="subMenu fL">
- <div class="menuItem">
- <!-- include 'invoiceMenu' -->
- </div>
- </div>
- <div class="adminContent autoHeight">
- <legend>
- {{slist.0.category}} 全年开票收款汇总
- </legend>
- <div class="demandCate">
- <form action="/invoiceAggregateCategory/{{cidKey}}" id="up" method="get">
- <ul class="cateList">
- <li><select name="year" id="Y" onchange="receiptYear();">
- <!-- include 'year' -->
- </select></li>
- <li>开票总计:¥{{isList.statisticsYear.0.invoicePrice}}</li>
- <li>收款总计:¥{{isList.statisticsYear.0.receivablesPrice}}</li>
- <li>完成核销:¥{{isList.statisticsYear.0.accountPrice}}</li>
- </ul>
- </form>
- </div>
- <div class="saeaList">
- <div class="entry autoHeightI2" style="margin-bottom:0">
- <script type="text/javascript">$(document).ready(function() {
- $('#invoiceTable').fixedHeaderTable({ fixedColumns:2 });
- });</script>
- <table class="table table-bordered table-condensed table-hover">
- <thead>
- <tr><th class="taC">姓名</th><th class="taC">项目</th><th class="taC">1月</th><th class="taC">2月</th><th class="taC">3月</th><th class="taC">4月</th><th class="taC">5月</th><th class="taC">6月</th><th class="taC">7月</th><th class="taC">8月</th><th class="taC">9月</th><th class="taC">10月</th><th class="taC">11月</th><th class="taC">12月</th><th class="taC">年总计</th></tr>
- </thead>
- <tbody>
- {{html}}
-
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script type="text/javascript">autoFlashHeight();</script>
- </body>
|