| Désignation | Quantité | Prix Unitaire | Total |
|---|---|---|---|
|
{{ prestation.nom }} {{ prestation.description|nl2br }} |
{% if prestation.quantite == null %}Forfait {% else %} {{ prestation.quantite }} {% endif %} | {% if prestation.quantite == null %} {{ prestation.forfaitHT|number_format(2, ',', '.') }} € {% else %} {{ prestation.prixUnitaire|number_format(2, ',', '.') }} € {% endif %} | {% if prestation.forfaitHT == null %} {% set total = prestation.prixUnitaire * prestation.quantite %}{{ total|number_format(2, ',', '.') }} {% set totalPrestaHT = totalPrestaHT + total %} € {% else %} {{ prestation.forfaitHT|number_format(2, ',', '.') }} {% set totalPrestaHT = totalPrestaHT + prestation.forfaitHT %} € {% endif %} |
| Total HT | {{ totalPrestaHT|number_format(2, ',', '.') }} € | ||
| TVA | {{ tva|number_format(2, ',', '.') }} % | ||
| Total TTC | {{ totalPrestaTTC|number_format(2, ',', '.') }} € |