{% extends 'base.html' %} {% block title %}Export Indy{% endblock %} {% block content %}
Selection des commandes
{% for j in jobs %} {% set prix_ttc = (j.final_price / (1 - j.discount_pct / 100)) if (j.discount_pct and j.discount_pct > 0 and j.discount_pct < 100) else (j.final_price or 0) %} {% set prix_ht_net = prix_ttc - (j.tva_amount or 0) %} {% set qty = j.order_qty or 1 %} {% set acro = j.client_acronyme or '' %} {% set default_nom = (acro ~ ' - ' ~ j.name) if acro else j.name %} {% endfor %}
Commande Prix HT
{{ j.name }}
{{ j.created_at[:10] }}{% if j.client_name %} · {{ j.client_name }}{% if acro %} {{ acro }}{% endif %}{% endif %}
{{ '%.2f'|format(prix_ht_net) }} €
Produits Indy 0
Nom produit (éditable) Nature Prix HT TVA % Unité
Sélectionnez des commandes
Les colonnes Nom, Nature, Prix HT, TVA et Unité sont éditables directement dans le tableau. Le CSV généré est compatible avec l'import Produits & Services d'Indy.
{% endblock %}