|
{{ aproduit.annee }}
|
{{ aproduit.nbr_ventes }}
|
{% if app.user.aDroit('achat_paiement') %}
{{ aproduit.ca_ventes|number_format(2, '.', ' ') }}
{% endif %}
|
{% if app.user.aDroit('achat_paiement') %}
{{ aproduit.total_paye|number_format(2, '.', ' ') }}
{% endif %}
|
{% if app.user.aDroit('achat_paiement') %}
{{ (aproduit.ca_ventes - aproduit.total_paye)|number_format(2, '.', ' ') }}
{% endif %}
|
{% set total_cmd = total_cmd + aproduit.nbr_ventes %}
{% set total_ca = total_ca + aproduit.ca_ventes %}
{% set total_paye = total_paye + aproduit.total_paye %}
{% endfor %}