saeaStaffCollectB.html 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. </li>
  32. <li>报销总计:¥{{stList.rePrice}}</li>
  33. <li>同意支付:<span class="colGreen">¥{{stList.agPrice}}</span></li>
  34. <li>审批中:¥{{stList.skPrice}}</li>
  35. </ul>
  36. </form>
  37. </div>
  38. <div class="saeaList">
  39. <div class="entry">
  40. <table class="table table-bordered table-condensed table-hover">
  41. <tbody>
  42. <tr>
  43. <th class="taC"></th>
  44. <th width="110" class="taC">员工/月</th>
  45. <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/1">1月</a></th>
  46. <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/2">2月</a></th>
  47. <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/3">3月</a></th>
  48. <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/4">4月</a></th>
  49. <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/5">5月</a></th>
  50. <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/6">6月</a></th>
  51. <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/7">7月</a></th>
  52. <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/8">8月</a></th>
  53. <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/9">9月</a></th>
  54. <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/10">10月</a></th>
  55. <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/11">11月</a></th>
  56. <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/12">12月</a></th>
  57. <th class="taC" width="110">总计</th>
  58. </tr>
  59. <!-- loop companyHtml -->
  60. <tr>
  61. {{companyHtml' value.html}}
  62. </tr>
  63. <!-- endloop -->
  64. <tr><th></th>
  65. <td class="taR">合计</td>
  66. {{companyTotalHtml}}
  67. </tr>
  68. <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>
  69. </tbody>
  70. </table>
  71. </div>
  72. </div>
  73. </div>
  74. </div>
  75. <script type="text/javascript">autoFlashHeight();</script>
  76. </body>