invoiceAggregateCategory.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <body>
  5. <div class="mainLayout">
  6. <div class="mainMenu">
  7. <div class="menuItem">
  8. <a href="#" class="mLogo">CLD</a>
  9. <ul>
  10. <!-- include 'menuReceipt' -->
  11. </ul>
  12. </div>
  13. </div>
  14. <div class="warpContent">
  15. <div class="subMenu fL">
  16. <div class="menuItem">
  17. <!-- include 'invoiceMenu' -->
  18. </div>
  19. </div>
  20. <div class="adminContent autoHeight">
  21. <legend>
  22. {{slist.0.category}} 全年开票收款汇总
  23. </legend>
  24. <div class="demandCate">
  25. <ul class="cateList">
  26. <li><select>
  27. <!-- include 'year' -->
  28. </select></li>
  29. <li>开票总计:¥{{isList.statisticsYear.0.invoicePrice}}</li>
  30. <li>收款总计:¥{{isList.statisticsYear.0.receivablesPrice}}</li>
  31. <li>完成入账:¥{{isList.statisticsYear.0.accountPrice}}</li>
  32. </ul>
  33. </div>
  34. <div class="saeaList">
  35. <div class="entry autoHeightI2" style="margin-bottom:0">
  36. <script type="text/javascript">$(document).ready(function() {
  37. $('#invoiceTable').fixedHeaderTable({ fixedColumns:2 });
  38. });</script>
  39. <table class="table table-bordered table-condensed table-hover">
  40. <thead>
  41. <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>
  42. </thead>
  43. <tbody>
  44. {{html}}
  45. </tbody>
  46. </table>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. <script type="text/javascript">autoFlashHeight();</script>
  53. </body>