{% 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.productsSold |length >1 %} {{ vente.productsSold |length }} produits {% else %} {% if vente.productsSold and vente.productsSold.0 is defined %} {{ vente.productsSold.0.name }} {% endif %} {% endif %} {{ vente.amount }}
{% include ':logged:history-script.html.twig' %}
{% endblock %}