{% extends "layouts/base.html" %} {% load static %} {% block title %} Facture d'avoir {% endblock %} {% block stylesheets %} {% endblock stylesheets %} {% block content %}
{% include 'includes/navigation.html' %}

Facture d'Avoir-{{ facture.num_facture_avoir|default:facture.id }}

{% csrf_token %}
{% csrf_token %}
{{facture.entrepot.agence.nom}}
{{facture.entrepot.agence.address}} {{facture.entrepot.agence.ville}}
FACTURE D’AVOIR
# {{ facture.num_facture_avoir|default:facture.id }}
Restant des crédits
{{facture.reste}} DA
Date : {{facture.date_facture_avoir}}
{% for detail_retour_facture in detail_retours_facture %} {% endfor %}
# Article & Description Quantité Taux Remise Taxe Montant
{{ facture.num_facture_avoir|default:facture.id}}
{% if detail_retour_facture.detail_retour %} {{detail_retour_facture.detail_retour.article_commandee.article.nom_article}} {% else %} {{detail_retour_facture.article.nom_article}} {% endif %}
{% if detail_retour_facture.detail_retour %} {{detail_retour_facture.detail_retour.quantitee_renvoyee}} {% else %} {{detail_retour_facture.quantitee}} {% endif %}
{% if detail_retour_facture.detail_retour %} {{detail_retour_facture.detail_retour.article_commandee.article.unitee}} {% else %} {{detail_retour_facture.article.unitee}} {% endif %}
{{detail_retour_facture.taux}} {{detail_retour_facture.remise}}% {{detail_retour_facture.taxe}}% {{detail_retour_facture.montant}}
Sous-total {{facture.sous_total}}
Frais d’expédition {{facture.frai_expedition}}
Ajustement {{facture.ajustement}}
Total {{facture.total}}DA
Restant des crédits {{facture.reste}}DA

{{facture.information_client}}


{{facture.condition_general}}

{% include 'includes/footer.html' %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}