|
{% if type == 'commande' %}FACTURE {% else %} Bon De Commande {% endif %}
|
{% if type == 'commande' %}
{{commande.client.nom}} {{commande.client.prenom}}
{% else %}
{{commande.fournisseur.nom}} {{commande.fournisseur.prenom}}
{% endif %}
|
|
{% for articlecommande in articlecommandee %}
{% if articlecommande.article %}
1
|
{{articlecommande.article.nom_article}}
|
{{articlecommande.qantite_total}}
|
{{articlecommande.taux}}
|
{{articlecommande.montant}}
|
{% endif %}
{% endfor %}
Sous-total
|
{{commande.sous_total}}DZD |
{% if type == 'commande' %}
Frais d'expedition |
{{commande.frais_expedition|default:" "}} |
{% else %}
Remise |
{{commande.remise_bn_commande|default:" "}} |
{% endif %}
Ajustement |
{{commande.ajustement|default:" "}} |
Total |
{{commande.total}}DZD |
{{commande.note|default:'/'}}