invoiceAggregateCategory.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!-- include 'header' -->
  2. <link rel=stylesheet href="<?= WEB_SITE_GLOBAL ?>css/fixedheadertable.css">
  3. <script src="<?= WEB_SITE_GLOBAL ?>js/jquery.fixedheadertable.js"></script>
  4. <script src="<?= WEB_SITE_GLOBAL ?>js/invoice.js"></script>
  5. <body>
  6. <div class="mainLayout">
  7. <div class="mainMenu">
  8. <div class="menuItem">
  9. <a href="#" class="mLogo">CLD</a>
  10. <ul>
  11. <!-- include 'menuReceipt' -->
  12. </ul>
  13. </div>
  14. </div>
  15. <div class="warpContent">
  16. <div class="subMenu fL">
  17. <div class="menuItem">
  18. <!-- include 'invoiceMenu' -->
  19. </div>
  20. </div>
  21. <div class="adminContent autoHeight">
  22. <legend>
  23. {{slist.0.category}} 全年开票收款汇总
  24. </legend>
  25. <div class="demandCate">
  26. <form action="/invoiceAggregateCategory/{{cidKey}}" id="up" method="get">
  27. <ul class="cateList">
  28. <li><select name="year" id="Y" onchange="receiptYear();">
  29. <!-- include 'year' -->
  30. </select></li>
  31. <li>开票总计:¥{{isList.statisticsYear.0.invoicePrice}}</li>
  32. <li>收款总计:¥{{isList.statisticsYear.0.receivablesPrice}}</li>
  33. <li>完成核销:¥{{isList.statisticsYear.0.accountPrice}}</li>
  34. </ul>
  35. </form>
  36. </div>
  37. <div class="saeaList">
  38. <div class="entry autoHeightI2" style="margin-bottom:0">
  39. <script type="text/javascript">$(document).ready(function() {
  40. $('#invoiceTable').fixedHeaderTable({ fixedColumns:2 });
  41. });</script>
  42. <table class="table table-bordered table-condensed table-hover">
  43. <thead>
  44. <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>
  45. </thead>
  46. <tbody>
  47. {{html}}
  48. </tbody>
  49. </table>
  50. </div>
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. <script type="text/javascript">autoFlashHeight();</script>
  56. </body>