Ajout export commandes

This commit is contained in:
2020-10-06 16:25:16 +02:00
parent 6a92c43234
commit 354e2186c8
4 changed files with 61 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
{% block body %}
Client;Projet;Proposition;Ref;Qt;PU;Total;
{% for project in projects %}
{% for offer in project.offers %}
{{ project.customer }};{{project.name}};{{offer.name}};{{offer.ref}};{{offer.quantity}};{{offer.pu}};{{offer.total}}
{% endfor %}
{% endfor %}
{% endblock %}