{% extends "layouts/base.html" %} {% block title %} Retour sur les ventes {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %} {% load auth_extras %}
{% include 'includes/navigation.html' %}

Tous les retours sur les ventes

Your web analytics dashboard template.

{% for retour in listes_retour%} {% if request.user|has_group:"admingestion" or request.user|has_group:"assistante" %} {% elif request.user|has_group:"operatrices" %} {% if request.user.id == retour.commande.user.id %} {% if retour.statut == "approuve" %} {% endif %} {% if retour.statut == "refuse" %} {% endif %} {% endif %} {% endif %} {% endfor %}
# Date Num vente Nom client Status Renvoyée Montant remboursé
{{retour.id}} {{retour.date_retour}} {{retour.commande.id}} {{retour.commande.client.nom}} {{retour.commande.client.prenom}} Approuvé {{retour.quantitee_renvoyee}} {{retour.total}}
{% csrf_token %}
 
{% csrf_token %}
 
{% csrf_token %}
{{retour.id}} {{retour.date_retour}} {{retour.numero_retour}} {{retour.commande.id}} {{retour.commande.client.nom}} {{retour.commande.client.prenom}} ApprouvéRéfusé{{retour.staut_reception}} {{retour.staut_remboursement}} {{retour.quantitee_renvoyee}} {{retour.montant_remboursee}}
{% csrf_token %}
 
{% csrf_token %}
 
{% csrf_token %}
{% include 'includes/footer.html' %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}