saeaStaffCollect.html 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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"><a href="#" class="mLogo">CLD</a>
  7. <ul>
  8. <!-- include 'menuReceipt' -->
  9. </ul>
  10. </div>
  11. </div>
  12. <div class="warpContent">
  13. <div class="subMenu fL">
  14. <div class="menuItem">
  15. <ul>
  16. <!-- include 'receipt_menu' -->
  17. </ul>
  18. </div>
  19. </div>
  20. <div class="adminContent autoHeight" style="height: 821px;"><legend>
  21. <div class="fL"></div>
  22. 员工每月报销单汇总</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="#"
  27. class="now">按员工</a></li>
  28. <li><select name="year" id="Y" onchange="receiptYear();">
  29. <!-- include 'year' -->
  30. </select>
  31. <select name="month" id="M" onchange="receiptYear();">
  32. {{monthHtml}}
  33. </select></li>
  34. <li><b>{{month}}月</b>报销总计:¥{{stList.rePrice}}</li>
  35. <li><b>{{month}}月</b>同意支付:<span class="colGreen">¥{{stList.agPrice}}</span></li>
  36. <li><b>{{month}}月</b>审批中:¥{{stList.skPrice}}</li>
  37. </ul>
  38. </form>
  39. </div>
  40. <div class="saeaList">
  41. <div class="entry">
  42. <table class="table table-bordered table-condensed table-hover">
  43. <tbody>
  44. <!-- loop htmlArray -->
  45. <tr>
  46. <th class="taC" width="110">{{htmlArray' key}}</th>
  47. <th class="taC" width="110">日常相关费用</th>
  48. <th class="taC" width="110">差旅相关费用</th>
  49. <th class="taC" width="110">培训班费用</th>
  50. <th class="taC" width="110">其他</th>
  51. <th class="taC" width="110">报销金额调整</th>
  52. <th class="taC" width="110">合计</th>
  53. </tr>
  54. <!-- loop {{htmlArray' value}} -->
  55. <tr >
  56. <!-- if {{htmlArray' key' key}}=='合计' -->
  57. <th class="taR">
  58. {{htmlArray' key' key}}
  59. </th>
  60. <!-- else -->
  61. <th>
  62. <a href="/staffCollectDetail/{{htmlArray' key' key}}">{{htmlArray' key' key}}</a>
  63. </th>
  64. <!-- endif -->
  65. {{htmlArray' value' value}}
  66. </tr>
  67. <!-- endloop -->
  68. <!-- endloop -->
  69. <tr class="warning">
  70. <td class="taR"><b>{{year}}年{{month}}月费用合计</b></td>
  71. <td class="colGreed taR" colspan="11"><b style="font-size: 24px">¥{{stList.agPrice}}</b></td>
  72. </tr>
  73. </tbody>
  74. </table>
  75. </div>
  76. </div>
  77. </div>
  78. </div>
  79. <!--弹出-->
  80. <div class="modal hide fade" id="addCallout">
  81. <div class="modal-header">
  82. <h3>添加批注</h3>
  83. </div>
  84. <div class="modal-body">
  85. <form class="">
  86. <div class="control-group">
  87. <div class="controls clearfix"><label> 批注内容 </label> <textarea
  88. rows="8" class="span6"></textarea></div>
  89. </div>
  90. </form>
  91. </div>
  92. <div class="modal-footer"><a href="#" class="button btn-gray"
  93. data-dismiss="modal" aria-hidden="true">取消</a> <a href="#"
  94. class="button">确定</a></div>
  95. </div>
  96. <!--弹出内容--> <script type="text/javascript">
  97. autoFlashHeight();
  98. </script>
  99. </body>