{% for variante in demande.variantesDemande %}
{{ variante.variante.article.designation1 }} : {{ 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 %}