Import AI Orders - KWT
{{-- Alert Messages --}}
@if(session('messages')) @if(!empty(session('messages.errors')))
    @foreach(session('messages.errors') as $error)
  • {{ $error }}
  • @endforeach
@endif @if(!empty(session('messages.saved')))

Saved Orders:

    @foreach(session('messages.saved') as $saved)
  • {{ $saved }}
  • @endforeach
@endif @endif @if($errors->all()) @endif
{{-- --}}
@if($this->results)
@foreach($this->results as $l => $line) @endforeach
Season Date PO Number Invoice Number Customer Ref Qty Erdos Price RT Price Invoice Value % Commission Drops
{{ $line['season'] }} {{ $line['date']->format('d/m/y') }} {{ $line['po_number'] }} {{ $line['invoice_no'] }} {{ $line['product_id'] }} {{ $line['quantity'] }} {{ number_format($line['unit_price'] ?? 0, 2) }} {{ number_format($line['rt_price'] ?? 0, 2) }} {{ number_format($line['total_value'] ?? 0, 2) }} {{ number_format($line['commission_percent'] ?? 0, 2) }} {{ number_format($line['commission'] ?? 0, 2) }} @if($line['match']) @foreach($line['match'] as $d=>$drop) @endforeach
Drop Qty RT Invoice
{{$drop->id}} {{$drop->shipment_line_sizes_sum_shipped_qty}}
@else No Drops Matched. @endif
@endif
@script @endscript