Files
schedule/templates/Export/export_offers.csv.twig

8 lines
281 B
Twig
Raw Permalink Normal View History

2020-10-06 16:25:16 +02:00
{% 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 %}