Objet : {{ $commande->objet }}
|
Service Demandeur
{{ $commande->service->nom ?? 'N/A' }}
Demandé par : {{ $commande->demandeur->name ?? 'N/A' }} Le : {{ $commande->date_demande ? \Carbon\Carbon::parse($commande->date_demande)->format('d/m/Y') : 'N/A' }} |
Informations Fournisseur
{{ $commande->fournisseur->nom ?? 'N/A' }}
Réf : {{ $commande->reference_fournisseur ?? 'N/A' }} |
|
Imputation budgétaire :
{{ $commande->imputation_budgetaire }}
|
@endif
@if($commande->date_souhaitee)
Date de livraison souhaitée :
{{ \Carbon\Carbon::parse($commande->date_souhaitee)->format('d/m/Y') }}
|
@endif
| Désignation | Réf. Article | Qté | PU HT | Total HT |
|---|---|---|---|---|
| {{ $ligne->designation }} | {{ $ligne->reference ?? '-' }} | {{ number_format($ligne->quantite, 2, ',', ' ') }} {{ $ligne->unite }} | {{ number_format($ligne->prix_unitaire_ht, 2, ',', ' ') }} € | {{ number_format($ligne->quantite * $ligne->prix_unitaire_ht, 2, ',', ' ') }} € |
|
@if($commande->justification || $commande->description)
Notes / Justification :
@endif
{{ $commande->justification ?: $commande->description }} |
|