
Status : Préfacturation
Date : {{ $facture ->date_traitement }}
@if($facture->type_facturation == null)Type facture : A definir
@elseif($facture->type_facturation == 1)Type facture : Facture Normale
@elseif($facture->type_facturation == 2)Type facture : Créance
@elseType facture : Inconnu
@endif @endif| No | Désignation | Qté | PU | Montant HTVA | @if($facture->type_facturation == 2) @elseTVA | Montant TVAC | @endif
|---|---|---|---|---|---|---|
| {{++$key}} | {{$p->nom_piece}} | {{$p->quantite_piece}} | {{number_format($p->prix_vente, 0, ',', ' ')}} | {{number_format($p->prix_vente_total_htva, 0, ',', ' ')}} | @if($facture->type_facturation == 2) @else{{number_format($p->tva, 0, ',', ' ')}} | {{number_format($p->prix_vente_total_tvac, 0, ',', ' ')}} | @endif
| TOTAL | {{number_format($facture ->montant_htva, 0, ',', ' ')}} | @if($facture->type_facturation == 1){{ number_format($facture ->tva, 0, ',', ' ') }} | {{number_format($facture ->montant_tvac, 0, ',', ' ')}} | @endif|||