{% extends 'base.html.twig' %} {% block body %}
| CLIENT | REFERENCE | DESIGNATION | DATE | FACTURE | MONTANT HT | MONTANT TTC | |
|---|---|---|---|---|---|---|---|
| {{ retour.vente.client }} |
{% for vp in retour.getRproduits() %}
{% if vp.getVenteProduit().getProduit().taxable %}{{ vp.getVenteProduit().getProduit().reference }} {% endif %} {% endfor %} |
{% for vp in retour.getRproduits() %}
{% if vp.getVenteProduit().getProduit().taxable %}{{ vp.getVenteProduit().getProduit().titre }} {% endif %} {% endfor %} |
{% if retour.dateRetour %}{{ retour.dateRetour|date('d-m-Y') }}{% endif %} | {{ retour.vente.getNumFacture() }} | -{{ retour.totalHt|number_format(2, ',', '') }} | -{{ retour.totalTtc|number_format(2, ',', '') }} | |
| TOTAUX | {{ nbr }} | -{{ total_ht|number_format(2, ',', '') }} | -{{ total_ttc|number_format(2, ',', '') }} |