@extends('layouts.base') @section('title','订单列表') @section('content')

订单管理

@section('form') @show
@section('search_bar') @if($route == 'order.list.waitSend')
@endif
{!! app\common\helpers\DateRange::tplFormFieldDateRange('search[time_range]', [ 'starttime'=>array_get($requestSearch,'time_range.start',0), 'endtime'=>array_get($requestSearch,'time_range.end',0), 'start'=>0, 'end'=>0 ], true)!!}
@show
@section('export') @if(app('plugins')->isEnabled('team-dividend')) @endif @show @if( $requestSearch['plugin'] != "fund") 自定义导出 @endif
{{--
--}} {{--
--}}
订单数: {{$list['total']}} 订单金额: {{$total_price}}元  @section('supplier_apply') @show
@section('is_plugin') @foreach ($list['data'] as $order_index => $order)
订单编号: {{$order['order_sn']}} @if($order['status']>\app\common\models\Order::WAIT_PAY && isset($order['has_one_order_pay'])) 支付单号: {{$order['has_one_order_pay']['pay_sn']}} @endif 下单时间: {{$order['create_time']}} @if( $order['has_one_refund_apply'] == \app\common\models\refund\RefundApply::WAIT_RECEIVE_RETURN_GOODS) @endif @if(!empty($order['has_one_refund_apply'])) @endif @if($order['has_many_first_order']) @endif @if(empty($order['status'])) 关闭订单 @endif
@foreach( $order['has_many_order_goods'] as $order_goods_index => $order_goods) @if( $order_goods_index == 0) @endif @endforeach
{{$order_goods['title']}} @if( !empty($order_goods['goods_option_title']))
{{$order_goods['goods_option_title']}} @endif
{{$order_goods['goods_sn']}}
原价: {{ number_format($order_goods['goods_price']/$order_goods['total'],2)}}
应付: {{ number_format($order_goods['price']/$order_goods['total'],2) }}
数量: {{$order_goods['total']}}
{{$order['belongs_to_member']['nickname']}}
{{$order['belongs_to_member']['realname']}}
{{$order['belongs_to_member']['mobile']}}

{{$order['has_one_dispatch_type']['name']}}
@if($order['change_price'] != 0) @endif @if($order['change_dispatch_price'] != 0) @endif @if($order['status'] == 0) @endif
商品小计: ¥{!! number_format( $order['goods_price'] ,2) !!}
运费: ¥{!! number_format( $order['dispatch_price'],2) !!}
卖家改价: ¥{!! number_format( $order['change_price'] ,2) !!}
卖家改运费: ¥{{ number_format( $order['change_dispatch_price'] ,2) }}
应收款: ¥{!! number_format( $order['price'] ,2) !!}
修改价格

查看详情
@include($include_ops)
@endforeach @show @include('order.modals')
{!! $pager !!}
@section('plugin_js') @show @endsection('content')