{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}Sessions — {{ register.name }}{% endblock %} {% block content %}

Sessions de caisse

{{ register.name }}{% if register.location %} — {{ register.location }}{% endif %}

Retour
{% if sessions|length > 0 %}
{% for session in sessions %} {% endfor %}
Ouverture Fermeture Caissier Ventes CA Statut Ecart Actions
{{ session.openedAt|date('d/m/Y H:i') }} {{ session.closedAt ? session.closedAt|date('d/m/Y H:i') : '-' }} {{ session.openedBy.fullName|default(session.openedBy.email) }} {{ session.salesCount }} {{ session.totalSales|number_format(0, ',', ' ') }} {% if session.open %} Ouverte {% elseif session.suspended %} Suspendue {% else %} Fermée {% endif %} {% if session.difference is not null %} {{ session.difference > 0 ? '+' : '' }}{{ session.difference|number_format(0, ',', ' ') }} {% else %}-{% endif %}
{{ knp_pagination_render(sessions) }}
{% else %}

Aucune session

Cette caisse n'a pas encore eu de sessions.

{% endif %}
{% endblock %}