123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- @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='warehouse' name="warehouse">
- <option value="0" @if($warehouse==0) selected @endif>-- 选择仓库 --</option>
- @foreach($warehouseArr as $warehouseVal=>$warehouseName)
- <option value="{{$warehouseVal}}" @if($warehouse == $warehouseVal) selected @endif >{{$warehouseName}}</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>
- <br>
- <table class="table table-border table-bordered table-bg table-hover table-sort">
- <tr>
- <th width="7%">汇总信息</th>
- <th>
- <ul>
- <li>总单数:{{$total['order_count']}}
- 总货品成本:¥{{$total['goods_cost']}}
- 总物流成本:¥{{$total['freight_cost']}}
- </ul>
- </th>
- </tr>
- </table>
- <div class="mt-20">
- <table class="table table-border table-bordered table-bg table-hover table-sort">
- <thead>
- <tr class="text-c">
- <th width="8%">日期</th>
- <th width="8%">仓库</th>
- <th width="8%">单数</th>
- <th width="8%">货品成本</th>
- <th width="8%">物流成本</th>
- </tr>
- </thead>
- <tbody>
- @if($result)
- @foreach($result as $a)
- <tr class="text-c" style=" text-align:center;">
- <td>{{$a['send_time']}}</td>
- <td>{{$a['warehouse']}}</td>
- <td>{{$a['order_count']}}</td>
- <td>{{$a['goods_cost']}}</td>
- <td>{{$a['freight_cost']}}</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 warehouse = $('#warehouse').val();
- //var page = {{$page}};
- location.href = 'warehouseFinanceList?stime='+stime+'&etime='+etime+'&warehouse='+warehouse;
- }
- //导出
- function statistics_export(){
- var stime = $('#stime').val();
- var etime = $('#etime').val();
- var warehouse = $('#warehouse').val();
- location.href = '/admin/statistics/warehouseFinanceList_export?stime='+stime+'&etime='+etime+'&warehouse='+warehouse;
- }
-
- /*分页*/
-
- $("#page").paging({
- pageNo:{{$page}},
- totalPage: {{$pages}},
- totalSize: {{$count}},
- callback: function(num) {
- var stime = $('#stime').val();
- var etime = $('#etime').val();
- var warehouse = $('#warehouse').val();
- location.href='warehouseFinanceList?page='+num+'&stime='+stime+'&etime='+etime+'&warehouse='+warehouse;
- }
- })
-
- </script>
-
- </body>
- @endsection
|