| Nom Action |
{{ demande.nomAction }} |
{#{% if demande.responsable is not empty %}
| Responsable |
{{ demande.responsable.firstname }} {{ demande.responsable.lastname }} |
{% endif %}
{% if demande.representant is not empty %}
| Représentant |
{{ demande.representant.firstname }} {{ demande.representant.lastname }} |
{% endif %}#}
| Titre |
{{ demande.typeAction.nom }} |
| Prestataire |
{{ demande.prestataire.nom }} |
| Date & Heue début |
{{ demande.dateDebut|date('j M Y à h:i') }} |
| Nbre de participant |
{{ demande.nbrePax }}
Participants
|
| Articles |
{% for variante in demande.variantesDemande %}
{{ variante.variante.article.designation1 }} :
{{ variante.variante.prix }}
DT
{% endfor %}
|
| Compte de Facturation |
{% if demande.compteFacturation is null %}
Pas de Compte de Facturation
{% else %}
{{ demande.compteFacturation.raisonSociale }}
{% endif %}
|
| Programme |
{% if (demande.heureReunion is null) and (demande.heureDejeuner is null) and (demande.heureDiner is null) and (demande.heurePause1 is null) and (demande.heurePause2 is null) and (demande.heurePause3 is null) %}
Pas de Programme
{% endif %}
{% if demande.heurePause1 is not null %}
Pause Café d'accueil : {{ demande.heurePause1|date('H:i') }}
{% endif %}
{% if demande.heureReunion is not null %}
Session 1: {{ demande.heureReunion|date('H:i') }}
{% endif %}
{% if demande.heureDejeuner is not null %}
Déjeuner : {{ demande.heureDejeuner|date('H:i') }}
{% endif %}
{% if demande.heureReunion is not null %}
Session 2: {{ demande.heureReunion2|date('H:i') }}
{% endif %}
{% if demande.heurePause2 is not null %}
Pause Café Midi : {{ demande.heurePause2|date('H:i') }}
{% endif %}
{% if demande.heureReunion is not null %}
Session 3: {{ demande.heureReunion3|date('H:i') }}
{% endif %}
{% if demande.heurePause3 is not null %}
Pause Café Après-Midi : {{ demande.heurePause3|date('H:i') }}
{% endif %}
{% if demande.heureReunion is not null %}
Session 4: {{ demande.heureReunion4|date('H:i') }}
{% endif %}
{% if demande.heureDiner is not null %}
Dîner : {{ demande.heureDiner|date('H:i') }}
{% endif %}
|