Date de création

{{ startdate|date("d-m-Y")}}

{{ employe.nom ~ ' ' ~ employe.prenom }}
{% if supps|length > 0 %}

Heures supplémentaires

{% for item in supps %} {% endfor %}
Date Jour Nombre d'heure
{{item.dateJour|date('d-m-Y')}} {{ item.nombreHeure }}H
{% endif %} {% if conges|length > 0 %}

Congés

{% for item in conges %} {% endfor %}
Intitule Date Debut Date Fin Nombre de jour
{{ item.intitue }} {{item.dateCongesDebut|date('d-m-Y')}} {{item.dateCongesfin|date('d-m-Y')}} {{ item.nbjour }} Jour
{% endif %} {% if details|length > 0 %}

LISTE DES PRESTATIONS

{% set i = 0 %} {% set duree = 0 %} {% for item in details %} {% set i = i + 1 %} {% set duree = duree + item.duree.dureMinute %} {% if item.type == "formule" %} {% set subitems = item|childVenteItem %} {% for sub in subitems %} {% endfor %} {% endif %} {% endfor %}
Numéro résa Utilisateur Prestation Duree Date réservée Genre Cabine Numéro de relax Employé
{{item.vente.numeReservation}} {{item.vente.utilisateur.username}} {{item.intituleProduit}} {{item.intituleDuree}} {{item.dateSoin|date('d-m-Y H:i')}} {{item.genre}} {{ (item.cabine) ? item.cabine.nomCabine : '' }} {{item.numeroderelax}} {% if item.employe %} {{ item.employe.nom ~' '~ item.employe.prenom }} {% else %} {% if item.venteDetailEmployes %} {% for item2 in item.venteDetailEmployes %} {{ item2.employer.nom ~' '~ item2.employer.prenom }}, {% endfor %} {% endif %} {% endif %}
{{sub.vente.numeReservation}} {{sub.vente.utilisateur.username}} {{sub.intituleProduit}} {{sub.intituleDuree}} {{sub.dateSoin|date('d-m-Y H:i')}} {{sub.genre}} {{ (sub.cabine) ? sub.cabine.nomCabine : '' }} {{sub.numeroderelax}} {% if sub.employe %} {{ sub.employe.nom ~' '~ sub.employe.prenom }} {% else %} {% if sub.venteDetailEmployes %} {% for item2 in sub.venteDetailEmployes %} {{ item2.employer.nom ~' '~ item2.employer.prenom }}, {% endfor %} {% endif %} {% endif %}
{% set total_hours = duree // 60 %} {% set total_minutes = duree % 60 %}

Total Heure: {{ total_hours }}h {{ total_minutes }}m

Total Prestations: {{i}}

{% endif %}