{% extends 'base_emine.html.twig' %} {% block title %} {{parent()}}-Tableau de bord-Consommation intrants {% endblock %} {% block content %} {% set mois1 = { '01': 'janvier', '02': 'février', '03': 'mars', '04': 'avril', '05': 'mais', '06': 'juin', '07': 'juillet', '08': 'août', '09': 'septembre', '10': 'octobre', '11': 'novembre', '12': 'décembre' } %} {% set mois2 = mois1[mois] %}

📊 Consommation intrants

Statistiques de la consommation intrants

{% if menu == 'ctcpm' %} {{ include('menu/ctcpm.html.twig') }} {% else %} {{ include('menu/autorite.html.twig') }} {% endif %}
Consommation mensuelle

Evolution mensuelle de la consommation de l'intrant en {{dateAnnnee|date('Y')}} {% if intrant is not null %}
{{intrant.nom}} {% endif %}

Consommation trimestrielle

Evolution trimestrielle de la consommation de l'intrant en {{dateAnnnee|date('Y')}} {% if intrant is not null %}
{{intrant.nom}} {% endif %}

Consommation semestrielle

Réalisation semestrielle de la taxe en {{dateAnnnee|date('Y')}} {% if intrant is not null %}
{{intrant.nom}} {% endif %}

Evolution

Evolution annuelle de la consommation de l'intrant {% if intrant is not null %}
{{intrant.nom}} {% endif %}

Consommateurs

15 premiers consommateurs de l'intrant {% if intrant is not null %}({{intrant.nom}}){% endif %}{{dateAnnnee|date('Y')}}

{% set compter = 0 %} {% set total = 0 %} {% for item in producteurs %} {% set total = total + item.quantite %} {% endfor %} {% for proprietaire_reel in producteurs %} {% set compter = compter + 1 %} {% else %} {% endfor %}
OPERATEUR PROJET CENTRE QUANTITé POURCENTAGE
{{ compter }} {{ proprietaire_reel.operateur }} {{ proprietaire_reel.projet }} {{ proprietaire_reel.centre }} {{ proprietaire_reel.quantite}} L {{((proprietaire_reel.quantite / total) * 100)|round(2, 'floor')}} %
Aucune information dans la base de données.
{% endblock %} {% block javascripts %} {{parent()}} {% endblock %}