Le projet que vous nous soumettez {% if projet.statutProjet.nom == "En création" and projet.enabled != 1 %} {% endif %}

{% set totalPresta = 0 %} {% if projet.prestations|length > 0 %} {% if projet.statutProjet.nom == "En création" and projet.enabled != 1 %}{% endif %} {% for prestation in projet.prestations %} {% if projet.statutProjet.nom == "En création" and projet.enabled != 1 %} {% endif %} {% endfor %} {% if projet.statutProjet.nom == "En création" %}{% endif %}
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 totalPresta = totalPresta + total %} € {% else %} {{ prestation.forfaitHT|number_format(2, ',', '.') }} {% set totalPresta = totalPresta + prestation.forfaitHT %} € {% endif %}
Total HT {{ totalPresta|number_format(2, ',', '.') }}
{% else %} {% include 'app/noResult.html.twig' %} {% endif %}