saeaStaffCollectB.html 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <!-- include 'header' -->
  2. <script type="text/javascript" src="<?= receipt ?>"></script>
  3. <script type="text/javascript" >
  4. </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. <ul>
  19. <!-- include 'receipt_menu' -->
  20. </ul>
  21. </div>
  22. </div>
  23. <div class="adminContent autoHeight" style="height: 821px;">
  24. <legend><div class="fL"></div>员工 全年报销单汇总</legend>
  25. <div class="demandCate">
  26. <form action="/staffCollect" id="up" method="post">
  27. <ul class="cateList">
  28. <li>
  29. <a href="/companyCategoryCollect">按办事处</a>
  30. <a href="/receiptSummaryStatisticsByAgency" >办事处明细</a>
  31. <a href="/staffCollect" class="now">按员工</a>
  32. </li>
  33. <li><select name="year" id="Y" onchange="receiptYear();">
  34. <!-- include 'year' -->
  35. </select>
  36. <select onchange="javascript:location.href=this.value;">
  37. <option value="/staffCollect">全年</option>
  38. <option value="/staffCollectMonthDetail/{{year}}/1/{{nature}}">1月</option>
  39. <option value="/staffCollectMonthDetail/{{year}}/2/{{nature}}">2月</option>
  40. <option value="/staffCollectMonthDetail/{{year}}/3/{{nature}}">3月</option>
  41. <option value="/staffCollectMonthDetail/{{year}}/4/{{nature}}">4月</option>
  42. <option value="/staffCollectMonthDetail/{{year}}/5/{{nature}}">5月</option>
  43. <option value="/staffCollectMonthDetail/{{year}}/6/{{nature}}">6月</option>
  44. <option value="/staffCollectMonthDetail/{{year}}/7/{{nature}}">7月</option>
  45. <option value="/staffCollectMonthDetail/{{year}}/8/{{nature}}">8月</option>
  46. <option value="/staffCollectMonthDetail/{{year}}/9/{{nature}}">9月</option>
  47. <option value="/staffCollectMonthDetail/{{year}}/10/{{nature}}">10月</option>
  48. <option value="/staffCollectMonthDetail/{{year}}/11/{{nature}}">11月</option>
  49. <option value="/staffCollectMonthDetail/{{year}}/12/{{nature}}">12月</option>
  50. </select>
  51. </li>
  52. <li><select name="nature" id="Y" onchange="receiptYear();">
  53. <option <!-- if {{nature}}=='ONJOB' --> selected <!-- endif --> value="ONJOB" >在职</option>
  54. <option <!-- if {{nature}}=='LEAVEJOB' --> selected <!-- endif --> value="LEAVEJOB">离职</option>
  55. </select>
  56. </li>
  57. <li>报销总计:¥{{stList.rePrice}}</li>
  58. <li>同意支付:<span class="colGreen">¥{{stList.agPrice}}</span></li>
  59. <li>审批中:¥{{stList.skPrice}}</li>
  60. </ul>
  61. </form>
  62. </div>
  63. <div class="saeaList">
  64. <div class="entry">
  65. <table class="table table-bordered table-condensed table-hover">
  66. <tbody>
  67. <tr>
  68. <th class="taC"></th>
  69. <th width="110" class="taC">员工/月</th>
  70. <th class="taC" width="80">1月</th>
  71. <th class="taC" width="80">2月</th>
  72. <th class="taC" width="80">3月</th>
  73. <th class="taC" width="80">4月</th>
  74. <th class="taC" width="80">5月</th>
  75. <th class="taC" width="80">6月</th>
  76. <th class="taC" width="80">7月</th>
  77. <th class="taC" width="80">8月</th>
  78. <th class="taC" width="80">9月</th>
  79. <th class="taC" width="80">10月</th>
  80. <th class="taC" width="80">11月</th>
  81. <th class="taC" width="80">12月</th>
  82. <th class="taC" width="110">总计</th>
  83. </tr>
  84. <!-- loop companyHtml -->
  85. <tr>
  86. {{companyHtml' value.html}}
  87. </tr>
  88. <!-- endloop -->
  89. <tr><th></th>
  90. <td class="taR">合计</td>
  91. {{companyTotalHtml}}
  92. </tr>
  93. <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>
  94. </tbody>
  95. </table>
  96. </div>
  97. </div>
  98. </div>
  99. </div>
  100. <script type="text/javascript">autoFlashHeight();</script>
  101. </body>