@if(Session::has('error'))
{{ Session::get('error') }}
@endif
Numéro réception {{ $reception->numero_mouvement }}
Date de réception {{ date('d-m-Y', strtotime($reception->date_mouvement)) }}
Stock destinataire {{ $reception->nom_stock }} ({{ $reception->code_stock }})
Référence transfert {{ $reception->piece_justificative }}
Description {{ $reception->description }}
⚠️ Information :
Ce dossier a été généré automatiquement suite à la validation d'un transfert depuis le stock source.
Veuillez vérifier les quantités reçues et accepter la réception pour mettre à jour votre stock.
Articles reçus
#
Article
Référence
Catégorie
Quantité reçue
PU (FBu)
Total (FBu)
@foreach($details as $index => $detail)
{{ $index + 1 }}
{{ $detail->nom_article ?? 'N/A' }}
{{ $detail->reference_article ?? '--' }}
{{ $detail->nom_categorie ?? '--' }}
{{ number_format($detail->quantite_detail, 0, ',', ' ') }}
{{ number_format($detail->pu_detail, 0, ',', ' ') }}
{{ number_format($detail->pt_detail, 0, ',', ' ') }}
@endforeach
TOTAL :
{{ number_format($totalQuantite, 0, ',', ' ') }}
{{ number_format($totalMontant, 0, ',', ' ') }} FBu
@if($reception->status_mouvement == 1)
Accepter la réception
@else
✓ Réception déjà acceptée
@endif