{% extends 'base.html.twig' %} {% block title %}Projet {% endblock %} {% block body %} {# {% include 'app/modal.html.twig' %} #}

Client {{ projet.client }} / Projet "{{ projet }}"

Ajouté le {{ projet.dateCreation|date('d/m/Y') }} | dernière modification {{ projet.dateDerniereModification|date('d/m/Y H:i') }}


Le projet soumis

{% set totalPresta = 0 %} {% if projet.prestations|length > 0 %} {% for prestation in projet.prestations %} {% endfor %}
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 }} € {% else %} {{ prestation.prixUnitaire }} € {% endif %} {% if prestation.forfaitHT == null %} {% set total = prestation.prixUnitaire * prestation.quantite %}{{ total }} {% set totalPresta = totalPresta + total %} € {% else %} {{ prestation.forfaitHT}} {% set totalPresta = totalPresta + prestation.forfaitHT %} € {% endif %}
Total HT {{ totalPresta }}
{% else %} {% include 'app/noResult.html.twig' %} {% endif %}

{% endblock %} {% block javascripts %} {% endblock %}