{% extends 'base.html.twig' %} {% block body %}

Historique

{{ allSellings }} Clients

{{ chiffreAffaires }} Chiffre d'affaires

{% if allSellings %} {{ (chiffreAffaires / (allSellings))|round }} {% else %} ? {% endif %} € panier moyen

Exporter toutes vos données

en format csv en JSON

Statistiques de ventes

{{ statisticsFestivals |length }} Festival {% if statisticsFestivals |length >1 %} s {% endif %}


{{ recentSells |length }} Dernières ventes

{% for vente in recentSells %} {% endfor %}
date commentaire produits montant Actions
{{ vente.id }} {{ vente.date |date('Y-m-d H:i:s') }} {# {{ vente.comment }} #} {% if vente.products |length >1 %} {{ vente.products |length }} produits {% else %} {% if vente.products and vente.products.0 is defined %} {{ vente.products.0.name }} {% endif %} {% endif %} {{ vente.sum }}
{% endblock %}