{% extends "base_frontoffice.html" %} {% block content %}
CAISSIERE: {{current.username}}
| TYPE | Numéro | Date | Client | Réf | Net à payer | Reste | Livraison | Status | Action |
|---|---|---|---|---|---|---|---|---|---|
| {{ commande.type_commande }} | {{ commande.numero }} | {{ commande.date_str }} | {{ commande.client.nom }} | {{ commande.ref }} | {{ commande.net_payer_str }} | {{ commande.montant_paye[3] }} | {{ commande.taux_livraison() }} | {{ commande.status }} | {% if commande.montant_paye[2]!="REGLEE" and commande.status!="ANNULE" %} {% endif %} {% if commande.taux_livraison()!="100% LIVRE" and commande.status!="ANNULE" %} Livrer {% endif %} {% if commande.montant_paye[2]!="REGLEE" and commande.taux_livraison()=="NON LIVRE" and commande.type_commande=="POUSSIN" and commande.status!="ANNULE" %} {% endif %} {% if not commande.status== "ANNULE" %} {% endif %} |