{!! Form::open(['action' => route('admin_sales_detail', [$current->id]), 'class' => 'modal-content', 'enctype' => 'multipart/form-data']) !!}
Die aktuelle Bestellung wurde getätigt von:
Rechnungsadresse:
@if($current->billing_company)
Firma: {{ $current->billing_company }}
@endif
{{ \App\Services\HTMLHelper::getSalutationLang($current->billing_salutation) }}
{{ $current->billing_firstname }}
{{ $current->billing_lastname }}
{{ $current->billing_address }}
@if($current->billing_address_2)
/ {{ $current->billing_address_2 }}
@else
@endif
{{ $current->billing_zipcode }}
{{ $current->billing_city }}
{{ $current->billing_email }}
{{ $current->billing_phone }}
{{ $current->billing_country->getLocated() }}
Lieferadresse:
@if($current->same_as_billing)
{{__('email.checkout_mail_same_address')}}
@else
@if($current->shipping_company)
Firma: {{ $current->shipping_company }}
@endif
{{ \App\Services\HTMLHelper::getSalutationLang($current->shipping_salutation) }}
{{ $current->shipping_firstname }}
{{ $current->shipping_lastname }}
{{ $current->shipping_address }}
@if($current->shipping_address_2)
/ {{ $current->shipping_address_2 }}
@else
@endif
{{ $current->shipping_zipcode }}
{{ $current->shipping_city }}
{{ $current->shipping_email }}
{{ $current->shipping_phone }}
{{ $current->shipping_country->getLocated() }}
@endif
Zugeordneter Vertriebspartner:
#{{$current->member->number}}
{{$current->member->getFullName()}}
@if(isset($current->member->account->zipcode)){{$current->member->account->zipcode}} @endif
@if(isset($current->member->account->city)){{$current->member->account->city}} @endif
{{$current->member->account->zipcode}} {{$current->member->account->city}}
@if($current->member->shop)
@if($current->member->isActive())
{{$current->member->shop->getSubdomain(false)}}
@else
{{$current->member->shop->getSubdomain(false)}}
@endif
@else
Keinen Shop eingerichtet
@endif
Bestellt im Shop:
@if($current->shopping_order && $current->shopping_order->user_shop)
#{{$current->shopping_order->user_shop->user->number}}
{{$current->shopping_order->user_shop->user->getFullName()}}
{{$current->shopping_order->user_shop->user->account->zipcode}} {{$current->shopping_order->user_shop->user->account->city}}
@if($current->shopping_order->user_shop)
@if($current->shopping_order->user_shop->user->isActive())
{{$current->shopping_order->user_shop->getSubdomain(false)}}
@else
{{$current->shopping_order->user_shop->getSubdomain(false)}}
@endif
@endif
@if(!$current->member_id)
@endif
@else
Keiner Bestellung / Shop zugeordnet
@endif
Ist das vielleicht dieser Kunde?
@foreach($possibles as $possible) @if(isset($possible[0])) @php($possible = $possible[0]) @endifRechnungsadresse:
@if($possible->billing_company)
Firma: {{ $possible->billing_company }}
@endif
{{ \App\Services\HTMLHelper::getSalutationLang($possible->billing_salutation) }}
{{ $possible->billing_firstname }}
{{ $possible->billing_lastname }} #{{$possible->number}}
{{ $possible->billing_address }}
@if($possible->billing_address_2)
/ {{ $possible->billing_address_2 }}
@else
@endif
{{ $possible->billing_zipcode }}
{{ $possible->billing_city }}
{{ $possible->billing_email }}
{{ $possible->billing_phone }}
{{ $possible->billing_country->getLocated() }}
Lieferadresse:
@if($possible->same_as_billing)
{{__('email.checkout_mail_same_address')}}
@else
@if($possible->shipping_company)
Firma: {{ $possible->shipping_company }}
@endif
{{ \App\Services\HTMLHelper::getSalutationLang($possible->shipping_salutation) }}
{{ $possible->shipping_firstname }}
{{ $possible->shipping_lastname }}
{{ $possible->shipping_address }}
@if($possible->shipping_address_2)
/ {{ $possible->shipping_address_2 }}
@else
@endif
{{ $possible->shipping_zipcode }}
{{ $possible->shipping_city }}
{{ $possible->shipping_email }}
{{ $possible->shipping_phone }}
{{ $possible->shipping_country->getLocated() }}
@endif
Zugeordneter Vertriebspartner:
@if($possible->member_id)
#{{$possible->member->number}}
{{$possible->member->getFullName()}}
{{$possible->member->account->zipcode}} {{$possible->member->account->city}}
@if($possible->member->shop)
@if($possible->member->isActive())
{{$possible->member->shop->getSubdomain(false)}}
@else
{{$possible->member->shop->getSubdomain(false)}}
@endif
@else
Keinen Shop eingerichtet
@endif
@else
Keinem Vertriebspartner zugeordnet
@endif