saeaStaffCollectB.html 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <!-- include 'header' -->
  2. <script src="<?= WEB_SITE_GLOBAL ?>js/receipt.js"></script>
  3. <body>
  4. <div class="mainLayout">
  5. <div class="mainMenu">
  6. <div class="menuItem">
  7. <a href="#" class="mLogo">CLD</a>
  8. <ul>
  9. <!-- include 'menuReceipt' -->
  10. </ul>
  11. </div>
  12. </div>
  13. <div class="warpContent">
  14. <div class="subMenu fL">
  15. <div class="menuItem">
  16. <ul>
  17. <!-- include 'receipt_menu' -->
  18. </ul>
  19. </div>
  20. </div>
  21. <div class="adminContent autoHeight" style="height: 821px;">
  22. <legend><div class="fL"></div>员工 全年报销单汇总</legend>
  23. <div class="demandCate">
  24. <form action="/staffCollect" id="up" method="post">
  25. <ul class="cateList">
  26. <li><a href="/companyCategoryCollect">按办事处</a><a href="/staffCollect"
  27. class="now">按员工</a></li>
  28. <li><select name="year" id="Y" onchange="receiptYear();">
  29. <!-- include 'year' -->
  30. </select>
  31. <select onchange="javascript:location.href=this.value;">
  32. <option value="/staffCollect">全年</option>
  33. <option value="/staffCollectMonthDetail/{{year}}/1">1月</option>
  34. <option value="/staffCollectMonthDetail/{{year}}/2">2月</option>
  35. <option value="/staffCollectMonthDetail/{{year}}/3">3月</option>
  36. <option value="/staffCollectMonthDetail/{{year}}/4">4月</option>
  37. <option value="/staffCollectMonthDetail/{{year}}/5">5月</option>
  38. <option value="/staffCollectMonthDetail/{{year}}/6">6月</option>
  39. <option value="/staffCollectMonthDetail/{{year}}/7">7月</option>
  40. <option value="/staffCollectMonthDetail/{{year}}/8">8月</option>
  41. <option value="/staffCollectMonthDetail/{{year}}/9">9月</option>
  42. <option value="/staffCollectMonthDetail/{{year}}/10">10月</option>
  43. <option value="/staffCollectMonthDetail/{{year}}/11">11月</option>
  44. <option value="/staffCollectMonthDetail/{{year}}/12">12月</option>
  45. </select>
  46. </li>
  47. <li>报销总计:¥{{stList.rePrice}}</li>
  48. <li>同意支付:<span class="colGreen">¥{{stList.agPrice}}</span></li>
  49. <li>审批中:¥{{stList.skPrice}}</li>
  50. </ul>
  51. </form>
  52. </div>
  53. <div class="saeaList">
  54. <div class="entry">
  55. <table class="table table-bordered table-condensed table-hover">
  56. <tbody>
  57. <tr>
  58. <th class="taC"></th>
  59. <th width="110" class="taC">员工/月</th>
  60. <th class="taC" width="80">1月</th>
  61. <th class="taC" width="80">2月</th>
  62. <th class="taC" width="80">3月</th>
  63. <th class="taC" width="80">4月</th>
  64. <th class="taC" width="80">5月</th>
  65. <th class="taC" width="80">6月</th>
  66. <th class="taC" width="80">7月</th>
  67. <th class="taC" width="80">8月</th>
  68. <th class="taC" width="80">9月</th>
  69. <th class="taC" width="80">10月</th>
  70. <th class="taC" width="80">11月</th>
  71. <th class="taC" width="80">12月</th>
  72. <th class="taC" width="110">总计</th>
  73. </tr>
  74. <!-- loop companyHtml -->
  75. <tr>
  76. {{companyHtml' value.html}}
  77. </tr>
  78. <!-- endloop -->
  79. <tr><th></th>
  80. <td class="taR">合计</td>
  81. {{companyTotalHtml}}
  82. </tr>
  83. <tr class="warning"><th></th><td class="taR"><b>全年费用合计</b></td><td colspan="13" class="colGreed taR"><b style="font-size:24px">¥{{total}}</b></td></tr>
  84. </tbody>
  85. </table>
  86. </div>
  87. </div>
  88. </div>
  89. </div>
  90. <script type="text/javascript">autoFlashHeight();</script>
  91. </body>