{% extends 'admin/hub/layout.html.twig' %} {% set hub_title = 'Facture ' ~ (facture.numeroFacture ?? facture.fichierOriginalNom ?? 'en cours') %} {% set hub_breadcrumbs = [ { label: 'Fournisseurs', url: path('app_fournisseurs_hub') }, { label: 'Factures', url: path('app_factures_hub') }, { label: facture.numeroFacture ?? 'En cours' } ] %} {% block title %}Facture {{ facture.numeroFacture }} — Mercuriale.io{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block hub_content %}
| Code | Designation | Unite | Qte | PU | TVA | Total |
|---|---|---|---|---|---|---|
| {{ ligne.codeArticle ?? '—' }} | {{ ligne.designation }} | {{ ligne.unite ?? '—' }} | {{ ligne.quantite }} | {{ ligne.prixUnitaire|number_format(4, ',', ' ') }} | {{ ligne.tauxTva ? ligne.tauxTva ~ '%' : '—' }} | {{ ligne.montantLigne|number_format(2, ',', ' ') }} € |
| Total HT | {{ facture.montantHt|number_format(2, ',', ' ') }} € | |||||