| Dossier affecté à |
{{ demande.superviseur.firstname }} {{ demande.superviseur.lastname }} |
| Nom Action |
{{ demande.nomAction }} |
| Type Action |
{{ demande.typeAction.nom }} |
| Lieu Action |
{{ demande.prestataire.nom }} |
| Période |
{{ demande.dateDebut|date('j M Y à h:i') }} |
| Nbre de pax |
{{ demande.nbrePax }} Personnes |
{% if demande.representants is not empty %}
| Représentant |
{% for userR in demande.representants %}
{{ userR.firstname }} {{ userR.lastname }}
{% endfor %}
|
{% endif %}
| Articles |
{% for variante in demande.variantesDemande %}
{{ variante.variante.article.designation1 }} : {{ variante.variante.prix }} DT
{% endfor %}
|
| 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 %}
Réunion à {{ demande.heureReunion|date('H:i') }}
{% endif %}
{% if demande.heurePause2 is not null %}
Pause Café Midi à {{ demande.heurePause2|date('H:i') }}
{% endif %}
{% if demande.heureDejeuner is not null %}
Déjeuner à {{ demande.heureDejeuner|date('H:i') }}
{% endif %}
{% if demande.heurePause3 is not null %}
Pause Café Après-Midi à {{ demande.heurePause3|date('H:i') }}
{% endif %}
{% if demande.heureDiner is not null %}
Dîner à {{ demande.heureDiner|date('H:i') }}
{% endif %}
|