{% extends 'base.html.twig' %} {% block title %}Achats fournisseurs{% endblock %} {% block body %}

Achats fournisseurs

CSV Nouvelle commande
{% for commande in pagination.items %} {% else %}{% endfor %}
DateFournisseurFactureStatutTotalCrédit
{{ commande.dateCommande|date('d/m/Y') }}{{ commande.fournisseur.nom }}{{ commande.numeroFacture ?: '-' }}{{ commande.statut }}{{ commande.montantTotal|montant_fr }}{{ commande.creditRestant|montant_fr }}{% if commande.statut == 'validee' and commande.creditRestant > 0 %} {% endif %}
Aucune commande d'achat.
Total de la page{{ total|montant_fr }}
{% include '_partials/_pagination.html.twig' %} {% endblock %}