{% extends "base_frontoffice.html" %} {% block content %}

Listes Commande fournisseur

{% for commande in all_commande %} {% endfor %}
Fournisseur Numéro Date Montant Livraison Règlement Action
{{ commande.fournisseur.nom }} {{ commande.numero }} {{ commande.date_str }} {{ commande.montant_commande }} {{ commande.statut_livraison() }} {{ commande.statut_reglement()[0] }} {% if commande.statut_reglement()[1]=="NON REGLEE" %} {% endif %} {% if commande.statut_livraison()!= "100%" %} Livrer {% endif %} {% if current.account_type=="admin" %} MODIFIER {% endif %}
{% endblock %}