@extends('layouts.app') @section('content')
@include('incs.contentheader')
{{ csrf_field() }}
@foreach ($scannedItems->order as $item) @endforeach
CREATED DATE MATERIAL DESCRIPTION QUANTITY ACTION
{{$item['created_date']}} {{$item['material_number']}} {{$item['description']}} {{$item['reserved_quantity']}}
MATERIAL NUMBER DESCRIPTION QUANTITY SOURCE TOTAL RESERVED TOTAL FULFILLED TOTAL RUNNING
@if(\App\Models\Permission::f2OrderAdmin(session('allUserAccesses')['f2 order reservation'])) @endif @if(\App\Models\Permission::canPostReservation(session('allUserAccesses')['f2 order reservation'])) @endif @foreach ($history->order as $history) @if(\App\Models\Permission::f2OrderAdmin(session('allUserAccesses')['f2 order reservation'])) @endif @if(\App\Models\Permission::canPostReservation(session('allUserAccesses')['f2 order reservation'])) @if($history['status']=="C"||$history['status']=="ST") @else @endif @endif @if($history['status']!="X") @if(\App\Models\Permission::canCancelReservation(session('allUserAccesses')['f2 order reservation']) && ($history['status']=="ST"||$history['status']=="P")) @elseif($history['status']=="C") @else @endif @else @endif @endforeach
CREATED DATECREATED BYMATERIAL DESCRIPTION RESERVED QUANTITY STATUS FULFILLED QUANTITYPOST QUANTITYACTION
{{$history['created_date']}}{{$history['created_by']}}{{$history['material_number']}} {{$history['description']}} {{$history['reserved_quantity']}} @if($history['status']=="C") {{$history['status_name']}} @elseif($history['status']=="P") {{$history['status_name']}} @elseif($history['status']=="X") {{$history['status_name']}} @elseif($history['status']=="ST") {{$history['status_name']}} @else {{$history['status_name']}} @endif {{$history['received_quantity']}}
@foreach ($summary->order as $summary) @endforeach
MATERIAL DESCRIPTION TOTAL RESERVED QUANTITY TOTAL FULFILLED QUANTITY TOTAL PENDING QUANTITY
{{$summary[0]}} {{$summary[1]}} {{$summary[2]}} {{$summary[3]}} {{$summary[4]}}
MATERIAL NUMBER DESCRIPTION SELLING SRP ORIGINAL SRP QUANTITY TO RESERVE STATUS REMARKS #
@endif
@endsection @section('script') @endsection