{% include 'portail_client/partials/header.html.twig' %}
|
|
FACTURE {% if facture.statut == 'Temporaire' %}TEMPORAIRE{% endif %} {{facture.displayId}} | |
|
{{societe.nom}}
|
Client
|
| Article | Quantité | Coût | Total | |
|---|---|---|---|---|
|
{{ligne.nom}}
{{ligne.description |raw }}
|
{{ligne.quantite}} | {{ligne.prixUnitaire|number_format(2, ',', ' ') }} € | {{ligne.prixTotal|number_format(2, ',', ' ') }} € | {% if facture.statut == 'Temporaire' %} {% endif %} |
| Sous-Total HT | {{facture.totalHT|number_format(2, ',', ' ') }} € | |
| Remise | {% if facture.remiseType is not null %}{{facture.remise|number_format(2, ',', ' ') }} {% if facture.remiseType == 'pourcentage' %} % {% else %} €{% endif %}{% endif %} | {% if facture.statut == 'Temporaire' %} {% if facture.remiseType is null %} {% else %} {% endif %} {% endif %} |
| Total après remise | {{facture.totalApresRemise|number_format(2, ',', ' ') }} € | |
| TVA (20%) | {{facture.tax|number_format(2, ',', ' ') }} € | |
| Total TTC | {{facture.totalTTC|number_format(2, ',', ' ') }} € | |
| Payé | {{facture.paiement|number_format(2, ',', ' ') }} € | |
| Solde dû | {{ (facture.totalTTC|default(0) - facture.paiement|default(0)) | number_format(2, ',', ' ') }} € |