{% extends "layouts/base.html" %} {% block title %} Transactions {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}
{% include 'includes/navigation.html' %}

  Détail Facture

{% csrf_token %}
{% csrf_token %}

{% if facture.status == 'BROUILLON' %}
Envoyer le facture

Facture a été créé. Vous pouvez le marquer comme envoyé. pour enregistre le paiement

{% elif facture.status == 'Envoyee' %}
Obtenez un paiement

commencez à accepter les paiements .

{% endif %}
{% if facture.status == 'BROUILLON' %} {% endif %} {% if facture.reste > 0 and facture.status != 'BROUILLON' and total_m < facture.total %}
{% csrf_token %} {% if facture.status == 'BROUILLON' %} {% else %} {% endif %}
{% endif %} {% if facture.status != 'BROUILLON' and facture.expiditions == 'Non expedie' %}
{% csrf_token %}
{% endif %}
{% if liste_paiements %} {% for paiement in liste_paiements %} {% endfor %} {% endif %}
{{paiement.id}}
{{paiement.date}}
{{paiement.facture.id}} {{paiement.mode_paiement}}
client
{{paiement.facture.client.nom}} {{paiement.facture.client.prenom}}
Montant
DZD {{paiement.montant}}
{% csrf_token %}
{{profile_organisation.nom}}
Constantine
FACTURE
# {{facture.id}}
Solde dû
{{facture.reste}} DZD
{% if facture.commande %} {% endif %}
Date de facture : {{facture.date|default:' '}}
Conditions : {{facture.commande.condition_de_paiement|default:' '}}
Date d’échéance : {{facture.date_echeance|default:' '}}
Numéro de commande : {{facture.commande.id|default:' '}}
{% for articlecommandeefacture in articlecommandeefacture %} {% endfor %}
# Article & Description Quantité Taux Remise Taxe Montant
{{articlecommandeefacture.id}}
{% if articlecommandeefacture.articleCommandee %} {{articlecommandeefacture.articleCommandee.article.nom_article}} {% else %} {{articlecommandeefacture.article.nom_article}} {% endif %}
{{articlecommandeefacture.qantite|add:0}}
{{articlecommandeefacture.taux}} {{articlecommandeefacture.remise|default:'0'|add:0}} {{articlecommandeefacture.taxe|default:'0'|add:0}} {{articlecommandeefacture.montant}}
{{facture.sous_total}}
{{facture.frais_expedition|default:'0'}}
{{facture.ajustement|default:'0'}}
{{facture.total}}DZD
{{facture.reste}}DZD

Merci de votre confiance.

Modèle : 'Standard Template' Modifier
{% include 'includes/footer.html' %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}