12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <!-- include 'header' -->
- <script src="<?= WEB_SITE_GLOBAL ?>js/receipt.js"></script>
- <body>
- <div class="mainLayout">
- <div class="mainMenu">
- <div class="menuItem">
- <a href="#" class="mLogo">CLD</a>
- <ul>
- <!-- include 'menuReceipt' -->
- </ul>
- </div>
- </div>
- <div class="warpContent">
- <div class="subMenu fL">
- <div class="menuItem">
- <ul>
- <!-- include 'receipt_menu' -->
- </ul>
- </div>
- </div>
- <div class="adminContent autoHeight" style="height: 821px;">
- <legend><div class="fL"></div>员工 全年报销单汇总</legend>
- <div class="demandCate">
- <form action="/staffCollect" id="up" method="post">
- <ul class="cateList">
- <li><a href="/companyCategoryCollect">按办事处</a><a href="/staffCollect"
- class="now">按员工</a></li>
- <li><select name="year" id="Y" onchange="receiptYear();">
- <!-- include 'year' -->
- </select>
- </li>
- <li>报销总计:¥{{stList.rePrice}}</li>
- <li>同意支付:<span class="colGreen">¥{{stList.agPrice}}</span></li>
- <li>审批中:¥{{stList.skPrice}}</li>
- </ul>
- </form>
- </div>
- <div class="saeaList">
- <div class="entry">
- <table class="table table-bordered table-condensed table-hover">
- <tbody>
- <tr>
- <th class="taC"></th>
- <th width="110" class="taC">员工/月</th>
- <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/1">1月</a></th>
- <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/2">2月</a></th>
- <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/3">3月</a></th>
- <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/4">4月</a></th>
- <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/5">5月</a></th>
- <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/6">6月</a></th>
- <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/7">7月</a></th>
- <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/8">8月</a></th>
- <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/9">9月</a></th>
- <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/10">10月</a></th>
- <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/11">11月</a></th>
- <th class="taC" width="80"><a href="/staffCollectMonthDetail/{{year}}/12">12月</a></th>
- <th class="taC" width="110">总计</th>
- </tr>
- <!-- loop companyHtml -->
- <tr>
- {{companyHtml' value.html}}
- </tr>
- <!-- endloop -->
-
- <tr><th></th>
- <td class="taR">合计</td>
- {{companyTotalHtml}}
- </tr>
- <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>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
-
- <script type="text/javascript">autoFlashHeight();</script>
- </body>
|