{% if projet.statutProjet.nom == "En création" and projet.enabled != 1 %}
|
|
{% endif %}
{{ 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 %}
|
{% endfor %}