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