@extends('layouts.LayoutMaster')
@section('content')
@include('_partials.alerts')
- REF N° :
- {{$inboundDeliveryNote->ref}}
- Client :
- {{$inboundDeliveryNote->client->name}}
- Telephone :
- {{$inboundDeliveryNote->phone}}
- Status :
-
{{$inboundDeliveryNote->statusName()}}
- Address :
- {{$inboundDeliveryNote->address}}
- Ville :
- {{$inboundDeliveryNote->city->name}}
({{$inboundDeliveryNote->city->zone->name}})
-
@if ($inboundDeliveryNote->isWaiting() && Auth::user()->hasRole('picker'))
@endif
@if (Auth::user()->hasRole('client') && ($inboundDeliveryNote->isPending() || $inboundDeliveryNote->isWaiting()))
@endif
Id |
Nom |
Quantité |
@if (Auth::user()->hasRole('logistics'))
Quantité réel |
@endif
Action |
@foreach ($idnProducts as $product)
{{$product->id}} |
{{$product->name}} |
{{$product->pivot->quantity}} |
@if (Auth::user()->hasRole('logistics'))
@if (!$product->pivot->is_valid)
@else
{{$product->pivot->real_quantity}}
@endif
|
@endif
@if (Auth::user()->hasRole('client'))
@endif
|
@endforeach
@endsection
@section('page-script')
@endsection