123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- @extends('admin/master')
- @section('content')
- <body>
- <div class="page-container">
- <div>
- <div>
- <input class="input-text" style="width:6%;text-align:center" type="text" value="所属团队"/>
- <select style="width:10%;text-align:center" id='team_id' name="team_id">
- <option value="0" @if($team_id=='') selected @endif>-- 选择团队 --</option>
- @foreach($teamlist as $v)
- <option value="{{$v['id']}}" @if($team_id==$v['id']) selected @endif>{{$v['name']}}</option>
- @endforeach
- </select>
- <input class="input-text" style="width:6%;text-align:center" type="text" value="开始时间"/>
- <input id="stime" type="text" onfocus="WdatePicker({ dateFmt:'yyyy-MM-dd' })" autocomplete="off" class="input-text Wdate" style="width:12%;text-align:center;margin-left: -5px" name="stime" value="{{$stime?$stime:''}}">
- <input class="input-text" style="width:6%;text-align:center" type="text" value="结束时间"/>
- <input id="etime"type="text" onfocus="WdatePicker({ dateFmt:'yyyy-MM-dd' })" autocomplete="off" class="input-text Wdate" style="width:12%;text-align:center;margin-left: -5px" name="etime" value="{{$etime?$etime:''}}">
-
- <a class="btn btn-primary radius" style="margin-left: 5px" onclick="user_search()" href="javascript:;">搜索</a>
- <a class="btn btn-primary radius" onclick="statistics_export()" href="javascript:;"><i class="Hui-iconfont"></i> 导出数据</a>
-
- </div>
- </div>
-
- <div class="mt-20">
- <table class="table table-border table-bordered table-bg table-hover table-sort">
- <thead>
- <tr class="text-c">
- <th width="5%">团队</th>
- <th width="5%">时间</th>
- <th width="4%">总单数</th>
- <th width="5%">成交金额</th>
- <th width="4%">微信支付金额</th>
- <th width="4%">付款码支付金额</th>
- <th width="4%">个体户支付金额</th>
- <th width="5%">充值卡支付金额</th>
- <th width="4%">售后单数</th>
- <th width="5%">售后金额</th>
- <th width="4%">微信退补单数</th>
- <th width="4%">微信退补差价</th>
- <th width="5%">微信实际金额</th>
- <th width="4%">付款码退补单数</th>
- <th width="4%">付款码退补差价</th>
- <th width="5%">付款码实际金额</th>
- <th width="4%">个体户退补单数</th>
- <th width="4%">个体户退补差价</th>
- <th width="5%">个体户实际金额</th>
- <th width="4%">充值卡退补单数</th>
- <th width="4%">充值卡退补差价</th>
- <th width="5%">充值卡实际金额</th>
- <th width="4%">发货单数</th>
- <th width="5%">货品成本</th>
- <th width="5%">物流成本</th>
- <th width="5%">毛利</th>
-
- </tr>
- </thead>
- <tbody>
- @if($result)
- @foreach($result as $a)
- <tr class="text-c" style=" text-align:center;">
- <td>{{$a['team_name']}}</td>
- <td>{{$a['ctime']}}</td>
- <td>{{$a['order_count']}}</td>
- <td>{{$a['receivedAmount']}}</td>
- <td>{{$a['wx_money']}}</td>
- <td>{{$a['zfm_money']}}</td>
- <td>{{$a['gth_money']}}</td>
- <td>{{$a['vip_money']}}</td>
- <td>{{$a['aftersale_count']}}</td>
- <td>{{$a['aftersale_fee']}}</td>
- <td>{{$a['wx_refund_count']}}</td>
- <td>{{$a['wx_refund_price']}}</td>
- <td>{{$a['wx_true_amount']}}</td>
- <td>{{$a['zfm_refund_count']}}</td>
- <td>{{$a['zfm_refund_price']}}</td>
- <td>{{$a['zfm_true_amount']}}</td>
- <td>{{$a['gth_refund_count']}}</td>
- <td>{{$a['gth_refund_price']}}</td>
- <td>{{$a['gth_true_amount']}}</td>
- <td>{{$a['czk_refund_count']}}</td>
- <td>{{$a['czk_refund_price']}}</td>
- <td>{{$a['czk_true_amount']}}</td>
- <td>{{$a['send_count']}}</td>
- <td>{{$a['cost']}}</td>
- <td>{{$a['freight_cost']}}</td>
- <td>{{$a['profit']}}</td>
- </tr>
- @endforeach
- @endif
- </tbody>
- </table>
- </div>
- <div id="page" class="page_div"></div>
- </div>
-
- <!--_footer 作为公共模版分离出去-->
- <script type="text/javascript" src="/admin/lib/jquery/1.9.1/jquery.min.js"></script>
- <script type="text/javascript" src="/admin/lib/layer/2.4/layer.js"></script>
- <script type="text/javascript" src="/admin/static/h-ui/js/H-ui.min.js"></script>
- <script type="text/javascript" src="/admin/static/h-ui.admin/js/H-ui.admin.js"></script>
- <script type="text/javascript" src="/admin/lib/page/paging.js"></script>
- <script type="text/javascript" src="/admin/lib/My97DatePicker/4.8/WdatePicker.js"></script>
- <!--/_footer 作为公共模版分离出去-->
- <!--/_footer 作为公共模版分离出去-->
- <script type="text/javascript">
- function user_search(){
- var stime = $('#stime').val();
- var etime = $('#etime').val();
- var team_id = $('#team_id').val();
- //var page = {{$page}};
- location.href = 'teamFinanceTotal?stime='+stime+'&etime='+etime+'&team_id='+team_id;
- }
- //导出
- function statistics_export(){
- var stime = $('#stime').val();
- var etime = $('#etime').val();
- var team_id = $('#team_id').val();
- location.href = '/admin/statistics/teamFinanceTotal_export?stime='+stime+'&etime='+etime+'&team_id='+team_id;
- }
-
- /*分页*/
-
- $("#page").paging({
- pageNo:{{$page}},
- totalPage: {{$pages}},
- totalSize: {{$count}},
- callback: function(num) {
- var stime = $('#stime').val();
- var etime = $('#etime').val();
- var team_id = $('#team_id').val();
- location.href='teamFinanceTotal?page='+num+'&stime='+stime+'&etime='+etime+'&team_id='+team_id;
- }
- })
-
- </script>
-
- </body>
- @endsection
|