{% extends 'base_emine.html.twig' %} {% block title %}{{parent()}}-Accueil{% 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] %}

📊 Stock

Statistiques du stock

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

Réalisation journalière sur le stock en {{mois2}} {{dateAnnnee|date('Y')}} {% if operateur is not null %}
{{operateur.denomination}} {% endif %}
{{commodite ? commodite.nom : ' '}}

Stock hebdomadaire

Réalisation hebdomadaire sur le stock en {{mois2}} {{dateAnnnee|date('Y')}} {% if operateur is not null %}
{{operateur.denomination}} {% endif %}
{{commodite ? commodite.nom : ' '}}

Stock mensuel

Réalisation mensuelle du stock en {{dateAnnnee|date('Y')}} {% if operateur is not null %}
{{operateur.denomination}} {% endif %}
{{commodite ? commodite.nom : ' '}}

Stock trimestriel

Réalisation trimestrielle du stock en {{dateAnnnee|date('Y')}} {% if operateur is not null %}
{{operateur.denomination}} {% endif %}
{{commodite ? commodite.nom : ' '}}

Stock semestriel

Réalisation semestrielle du stock en {{dateAnnnee|date('Y')}} {% if operateur is not null %}
{{operateur.denomination}} {% endif %}
{{commodite ? commodite.nom : ' '}}

Evolution

Evolution du stock durant les années {% if operateur is not null %}
{{operateur.denomination}} {% endif %}
{{commodite ? commodite.nom : ' '}}

Producteurs mensuels

15 premiers producteurs en {{mois2}} {{dateAnnnee|date('Y')}}
{{commodite ? commodite.nom : ' '}}

{% set compter = 0 %} {% set total = 0 %} {% for item in producteurs1 %} {% set total = total + item.quantite %} {% endfor %} {% for proprietaire_reel in producteurs1 %} {% set compter = compter + 1 %} {% else %} {% endfor %}
OPERATEUR QUANTITé STOCKÉE POURCENTAGE STOCKAGE VALEUR
{{ compter }} {{ proprietaire_reel.operateur }} {{ proprietaire_reel.quantite}} {{commodite ? commodite.filiere.unite : ' '}} {{((proprietaire_reel.quantite / total) * 100)|round(2, 'floor')}} % {{ proprietaire_reel.cout}} USD
Aucune information dans la base de données.
Producteurs annuels

15 premiers producteurs en {{anneeProd}}
{{commodite ? commodite.nom : ' '}}

{% 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 QUANTITé STOCKÉE POURCENTAGE STOCKAGE VALEUR
{{ compter }} {{ proprietaire_reel.operateur }} {{ proprietaire_reel.quantite}} {{commodite ? commodite.filiere.unite : ' '}} {{((proprietaire_reel.quantite / total) * 100)|round(2, 'floor')}} % {{ proprietaire_reel.cout}} USD
Aucune information dans la base de données.
{% endblock %} {% block javascripts %} {{parent()}} {% endblock %}