|
Bonjour, Voici le point hebdomadaire de votre restaurant.
{# ── Synthèse du mois en cours ── #}
Cumul mensuel ({{ annee }}-{{ '%02d'|format(mois) }})
|
CA du mois
{{ synthese.total_ventes|number_format(2, ',', ' ') }} €
|
|
Repas servis
{{ synthese.total_repas }}
|
|
Food cost
{{ synthese.ratio_cout_matiere|number_format(1, ',', ' ') }} %
|
| Achats du mois (nets) |
{{ synthese.achats_nets|number_format(2, ',', ' ') }} € |
| Coût par couvert |
{{ synthese.cout_par_couvert|number_format(2, ',', ' ') }} € |
| Résultat exploitation (cumulé mois) |
{{ synthese.resultat_exploitation >= 0 ? '+' : '' }}{{ synthese.resultat_exploitation|number_format(2, ',', ' ') }} €
|
{# ── Alertes stock ── #}
{% if alertesStock|length > 0 %}
⚠️ {{ alertesStock|length }} article{{ alertesStock|length > 1 ? 's' : '' }} sous le seuil d'alerte
| Article |
Qté |
Seuil |
{% for a in alertesStock %}
| {{ a.produit }} |
{{ a.quantite|number_format(2, ',', ' ') }} {{ a.unite ?? '' }} |
{{ a.seuil_alerte|number_format(2, ',', ' ') }} {{ a.unite ?? '' }} |
{% endfor %}
{% else %}
✅ Aucun article sous le seuil d'alerte cette semaine.
{% endif %}
|
{# Pied de page #}