@extends('layouts.master') @section('content')

Réception de transfert N° {{ $reception->numero_mouvement }}

← Retour
@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

@foreach($details as $index => $detail) @endforeach
# Article Référence Catégorie Quantité reçue PU (FBu) Total (FBu)
{{ $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, ',', ' ') }}
TOTAL : {{ number_format($totalQuantite, 0, ',', ' ') }} {{ number_format($totalMontant, 0, ',', ' ') }} FBu
@if($reception->status_mouvement == 1) @else ✓ Réception déjà acceptée @endif
@endsection