@extends('layouts.base') @section('title', '统计') @section('content')
{{----}}
注!
①平台资金统计已付款、未退款、未关闭的订单实付金额
②酒店资金统计平台扣点之后、已付款、未关闭的订单实付金额
③消费者资金统计未冻结的队列

统计:    酒店总销售额:[{{$statistics['shop_price_total']}}]元   收银台资金:[{{$statistics['hotel_price_total']}}]元   消费者资金【应返还[{{$statistics['return_price_total']}}]元 实际返还:[{{$statistics['actual_return_price_total']}}]元】

{!! app\common\helpers\AddressHelper::tplLinkedAddress(['search[province_id]','search[city_id]','search[district_id]','search[street_id]'], [])!!}
@foreach($list as $row) @endforeach
酒店ID 酒店名称 酒店分类 累计实收金额 平台提成比(%) 累计应收金额 未结算金额 已结算金额 操作
{{$row->id}}
{{$row->hotel_name}}
{{$row->hasOneCategory->name}} 收银台:{{number_format($row->order_price, 2)}}
酒店:{{number_format($row->hotel_order_price, 2)}}
收银台:{{ $row->hasOneCashier->hasOneCashierGoods->shop_commission?:0 }}
酒店:{{ $row->shop_commission->value['shop_commission']?:0 }}
收银台:{{number_format($row->receivable_price, 2)}}
酒店:{{number_format($row->hotel_receivable_price, 2)}}
收银台:{{number_format($row->not_withdraw, 2)}}
酒店:{{number_format($row->hotel_not_withdraw, 2)}}
收银台:{{number_format($row->finish_withdraw, 2)}}
酒店:{{number_format($row->hotel_finish_withdraw, 2)}}
@include('order.modals')
{!! $pager !!}
@endsection('content')