{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}Rapport Ventes{% endblock %} {% block content %}
Du {{ from|date('d/m/Y') }} au {{ to|date('d/m/Y') }}
| Date | Ventes | CA |
|---|---|---|
| {{ day.dateLabel }} | {{ day.count }} | {{ day.totalAmount|default('0')|number_format(0, ',', ' ') }} |
| Produit | Qté | CA |
|---|---|---|
|
{{ product.productName }}
{{ product.productSku }}
|
{{ product.totalQty }} | {{ product.totalRevenue|number_format(0, ',', ' ') }} |