@php /** * @name Pagina ordine\Riepilogo * @version 1.0.0 */ @endphp @php $change_status = call_setting('app.modules.customers.change'); @endphp

{{ __t('Riepilogo') }}

@if(is_customer() && $change_status) @if(!$order->is_mode('standard')) @php $col_mode_num = 12; if ($order->is_mode('change') || $order->is_mode('restock')){ $col_mode_num = 6; } @endphp
@if ($order->is_mode('change') || $order->is_mode('restock')) {!! ($order->is_mode('change')) ? __t('Cambio') : __t('Riassortimento') !!} @endif @if ($order->is_mode('return')) {{ __t('Reso') }} @endif
@if ($order->is_mode('change') || $order->is_mode('restock')) @endif @endif @endif
{{ __t('Stato') }}
{!! $order->get_order_status_html(false) !!}
{{ __t('Codice') }} {{ $order->get_sku() }}
{{ __t('Data') }} {{ $order->get_date_formatted() }}
@if(is_agent() && !empty($order->get_delivery_date_formatted()))
{{ __t('Data consegna') }} {{ $order->get_delivery_date_formatted() }}
@endif @if(is_agent())
{{ __t('Cliente') }} {{ $order->get_customer()->get_company_name() }}
@endif @if(!$order->is_mode('change') && !$order->is_mode('return'))
{{ __t('Pagamento') }} {{ $order->get_payment_name() }}
{{ __t('Indirizzo fatturazione') }} {{ $order->get_customer()->get_address()->get_formatted_address() }}
{{ __t('Destinazione') }} @if(!empty($order->get_destination())) {{ $order->get_destination()->get_formatted_address_full() }} @else {{ __t('Indirizzo fatturazione') }} @endif
@endif

{{ __t('Note') }}

@if ($order->get_gateway() == 'bacs') @php $payment_bacs = $payments->get_payment('bacs'); @endphp

{{ __t('Estremi di pagamento:') }}

{{ __t('IBAN:') }} {{ $payment_bacs->get_iban() }}

@if(!empty($payment_bacs->get_bank()))

{{ __t('Banca:') }} {{ $payment_bacs->get_bank() }}

@endif @if(!empty($payment_bacs->get_recipient()))

{{ __t('Intestatario:') }} {{ $payment_bacs->get_recipient() }}

@endif

{{ __t('Causale:') }} {{ $order->get_sku() }}

@endif
{!! $order->get_notes() !!}