Origine
| {{ strtoupper($document->documentType?->label ?? $document->type_code) }} : {{ strtoupper($document->title) }} | ||
| Correspondant ICAVI : {{ $document->correspondant }} @if($document->correspondant_tel) Tel : {{ $document->correspondant_tel }} @endif | ||
| {{ strtoupper($document->documentType?->label ?? '') }} N° {{ $document->reference }} Date : {{ $document->date_document->format('d/m/Y') }} | @if($document->date_livraison)Date livraison : {{ $document->date_livraison->format('d/m/Y') }} | @else@endif |
| REF | DÉSIGNATION | @if($isBL)QTÉ COMMANDÉE |
QTÉ LIVRÉE |
UM | @elseQUANTITÉ | PRIX UNITAIRE |
MONTANT HT |
@endif
|---|---|---|---|---|---|---|---|
| {{ str_pad($line->ligne_ordre, 3, '0', STR_PAD_LEFT) }} |
{{ $line->designation }}
@if($line->notes_ligne)
{{ $line->notes_ligne }}
@endif
@if($line->reference_prod && str_contains(strtolower($line->designation), 'origine'))
Origine France
@endif
|
@if($isBL)
{{ number_format($line->quantite, 0, ',', ' ') }} | {{ number_format($line->quantite, 0, ',', ' ') }} | {{ $line->unite ?? 'Unité' }} | @else{{ number_format($line->quantite, 0, ',', ' ') }} | {{ number_format($line->prix_unitaire, 0, ',', ' ') }} | {{ number_format($line->montant_ht, 0, ',', ' ') }} | @endif
| @if($isBL) | @else | @endif | |||||
| TOTAL HT | {{ number_format($document->sous_total, 0, ',', ' ') }} | ||||||
| Remise ({{ $document->remise_globale }}%) | -{{ number_format($document->remise_montant, 0, ',', ' ') }} | ||||||
| TVA ({{ number_format($document->tva_taux, 2) }}%) | {{ number_format($document->tva_montant, 0, ',', ' ') }} | ||||||
| TOTAL TTC | {{ number_format($document->total_ttc, 0, ',', ' ') }} | ||||||