Résumé des apports de sponsoring
Formule
{% if convention.document is null or convention.document.statut == 'Créée' %}
{% endif %}
Convention
{% if convention.document is null %}
{% endif %}
{% if convention.document is not null %}
Document
|
Statut
|
Crée le
|
|
|
{{convention.document.nom}}
|
{{convention.document.statut}}
|
{{convention.document.createdAt | date('d/m/Y H:i')}}
|
{% if convention.document.statut == 'Créée' or convention.document.statut == 'Éditée' %}
{% elseif convention.document.statut == 'En attente de signature' %}
{% else %}
{% endif %}
|
{% else %}
Aucune convention n'a pas été créée
{% endif %}
Apports
{% if convention.recu is null %}
{% endif %}
Factures
Document
|
Apport
|
Statut
|
Montant HT
|
Montant TTC
|
|
{% for facture in factures %}
{% if facture.statut == 'Temporaire' %}
{% set bg = 'primary' %}
{% else %}
{% set bg = 'success' %}
{% endif %}
|
{{facture.displayId}}
|
Apport de {{facture.apport.montant}} €
du {{facture.apport.createdAt | date('d/m/Y')}}
|
{{facture.statut}}
|
{{facture.totalHT}} €
|
{{facture.totalTTC}} €
|
{% if facture.statut == 'Temporaire' %}
{% else %}
{% endif %}
|
{% endfor %}