| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <!-- include 'header' -->
- <script type="text/javascript" src="<?= receipt ?>"></script>
- <script type="text/javascript" >
- </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>
-
-
- <select onchange="javascript:location.href=this.value;">
- <option value="/staffCollect">全年</option>
- <option value="/staffCollectMonthDetail/{{year}}/1/{{nature}}">1月</option>
- <option value="/staffCollectMonthDetail/{{year}}/2/{{nature}}">2月</option>
- <option value="/staffCollectMonthDetail/{{year}}/3/{{nature}}">3月</option>
- <option value="/staffCollectMonthDetail/{{year}}/4/{{nature}}">4月</option>
- <option value="/staffCollectMonthDetail/{{year}}/5/{{nature}}">5月</option>
- <option value="/staffCollectMonthDetail/{{year}}/6/{{nature}}">6月</option>
- <option value="/staffCollectMonthDetail/{{year}}/7/{{nature}}">7月</option>
- <option value="/staffCollectMonthDetail/{{year}}/8/{{nature}}">8月</option>
- <option value="/staffCollectMonthDetail/{{year}}/9/{{nature}}">9月</option>
- <option value="/staffCollectMonthDetail/{{year}}/10/{{nature}}">10月</option>
- <option value="/staffCollectMonthDetail/{{year}}/11/{{nature}}">11月</option>
- <option value="/staffCollectMonthDetail/{{year}}/12/{{nature}}">12月</option>
- </select>
-
-
- </li>
- <li><select name="nature" id="Y" onchange="receiptYear();">
- <option <!-- if {{nature}}=='ONJOB' --> selected <!-- endif --> value="ONJOB" >在职</option>
- <option <!-- if {{nature}}=='LEAVEJOB' --> selected <!-- endif --> value="LEAVEJOB">离职</option>
- </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">1月</th>
- <th class="taC" width="80">2月</th>
- <th class="taC" width="80">3月</th>
- <th class="taC" width="80">4月</th>
- <th class="taC" width="80">5月</th>
- <th class="taC" width="80">6月</th>
- <th class="taC" width="80">7月</th>
- <th class="taC" width="80">8月</th>
- <th class="taC" width="80">9月</th>
- <th class="taC" width="80">10月</th>
- <th class="taC" width="80">11月</th>
- <th class="taC" width="80">12月</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>
|