| Réference |
{{ demande.reference }} |
| Nom Action |
{{ demande.nomAction }} |
| Titre |
{{ demande.typeAction.nom }} |
| Prestataire |
{{ demande.prestataire.nom }} |
| Date |
{{ demande.dateDebut|date('j M Y') }} |
| Nbre de participant |
{{ demande.nbrePax }} Participants |
| Articles |
{% set total = 0 %}
| Nom |
Qte |
|
Prix |
{% for variante in demande.variantesDemande %}
| {{ variante.variante.article.designation1 }} |
{{ variante.quantity }} |
{{ variante.variante.prix }}DT |
{% set total = total+(variante.variante.prix*variante.quantity) %}
{% endfor %}
{% if demande.bonus is not empty %}
{% for bonus in demande.bonus %}
| {{ bonus.nom }} |
{{ bonus.quantity }} |
{{bonus.price }}DT |
{% set total = total+(bonus.price*bonus.quantity) %}
{% endfor %}
{% endif %}
| Total : |
|
{{ total }}DT |
|
| 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 %}
| Réunion 1 |
{{ demande.heureReunion|date('H:i') }} |
{% endif %}
{% if demande.heurePause2 is not null %}
| Pause Café Midi |
{{ demande.heurePause2|date('H:i') }} |
{% endif %}
{% if demande.heureReunion2 is not null %}
| Réunion 2 |
{{ demande.heureReunion2|date('H:i') }} |
{% endif %}
{% if demande.heureDejeuner is not null %}
| Déjeuner |
{{ demande.heureDejeuner|date('H:i') }} |
{% endif %}
{% if demande.heureReunion3 is not null %}
| Réunion 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.heureReunion4 is not null %}
| Réunion 4 |
{{ demande.heureReunion4|date('H:i') }} |
{% endif %}
{% if demande.heureDiner is not null %}
| Dîner |
{{ demande.heureDiner|date('H:i') }} |
{% endif %}
|
| Autre Prestation |
{{ demande.otherPrestation }}
|