{% extends 'app/base.html.twig' %} {% block title %}Mercuriale{% endblock %} {% block body %}

Mercuriale

Tarifs produits fournisseurs
Importer CSV / Excel Nouveau produit
{# ── Filtres ──────────────────────────────────────────────────────────────── #}
{% if fournisseurId or categorie or search %} {% endif %}
{# ── Tableau ───────────────────────────────────────────────────────────────── #}
{% if produits is empty %}
Aucun produit dans la mercuriale
{% else %}
{% for p in produits %} {% endfor %}
Produit Fournisseur Catégorie Unité Prix HT Prix TTC TVA Origine Label Bio Date
{{ p.nom_produit }} {% if not p.actif %}Inactif{% endif %} {{ fournisseursMap[p.fournisseur_id] ?? '—' }} {{ p.categorie ?: '—' }} {{ p.unite }} {{ p.prix_unitaire_ht|number_format(4, ',', ' ') }} € {{ p.prix_unitaire_ttc ? p.prix_unitaire_ttc|number_format(4, ',', ' ') ~ ' €' : '—' }} {{ p.taux_tva }} % {{ p.origine ?: '—' }} {% if p.label %} {{ p.label }} {% else %}—{% endif %} {% if p.bio %} {% else %}—{% endif %} {{ p.date_prix ? p.date_prix|date('d/m/Y') : '—' }}
{% endif %}
{% endblock %}