{# @author: Benjamin AMOUZOU #} {% extends 'exploitation/template-exploitation.html.twig'%} {% block titre_enfant %} Planning hebdomadaire {% endblock %} {% block contenu_principal_exploitation %}
{% include('template-message.html.twig') %}
Planning(s) hebdomadaire(s)  {#{total}#}
  Nouveau
Eléments de la recherche
{% set anneeDepart = 2021 %}



{% if plannings is not empty %}
{% for planning in plannings %}
{% set nombre = 0 %}{# Utile pour le rowspan edit #} {% set affiche = true %} {% for journee in planning.journees %} {% set nombre = nombre + journee.operations|length %} {% endfor %} {% for journee in planning.journees %} {% for operation in journee.operations %} {% if loop.index == 1 %} {% endif %} {% if affiche %} {% set affiche = false %} {% endif %} {% endfor %} {% endfor %}
Date Opération Heure Fournisseurs Statut Commentaire Nbre tours Action
{{journee.date|date('d/m/Y')}}{{operation.typeOperation.denomination}} {{operation.heureDebut|date('H:i')}} - {{operation.heureFin|date('H:i')}} {% for fournisseur in operation.fournisseurs %} {{fournisseur.denomination}}{% if loop.index != loop.last %};{% endif %} {% endfor %} {% for informel in operation.informels %} {{informel.denomination}}{% if loop.index != loop.last %};{% endif %} {% endfor %} {% if operation.statut.denomination is defined %} {% if operation.statut.denomination == 'Réalisé' %} {% else %} {% endif %} {% else %} {{'Néant'}} {% endif %} {% if operation.commentaire is not empty %}{{operation.commentaire}}{% else %}{{'Néant'}}{% endif %} {{operation.nbreTour}}   
{% endfor %}
{% else %}
Aucun planning !
{% endif %}
{#
{{ knp_pagination_render(activites, 'template-paginator.html.twig') }}
#}
{% endblock %}