{% extends 'admin/hub/layout.html.twig' %} {% set hub_title = 'Taxes TVA' %} {% set hub_breadcrumbs = [ { label: 'Fournisseurs', url: path('app_fournisseurs_hub') }, { label: 'Factures', url: path('app_factures_hub') }, { label: 'Taxes TVA' } ] %} {% block title %}TVA deductible — Mercuriale.io{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block hub_content %}

TVA deductible — {{ data.period_label }}

{# Period selector #}
{# TVA summary stats #}
{{ data.totalHt|number_format(2, ',', ' ') }} € Total HT
{{ data.totalTva|number_format(2, ',', ' ') }} € TVA deductible
{# VAT breakdown table #}
Ventilation par taux
{% if data.lines is not empty %}
{% for line in data.lines %} {% endfor %}
Taux TVA Base HT TVA deductible
{{ line.taux }}% {{ line.montantHt|number_format(2, ',', ' ') }} € {{ line.montantTva|number_format(2, ',', ' ') }} €
Total {{ data.totalHt|number_format(2, ',', ' ') }} € {{ data.totalTva|number_format(2, ',', ' ') }} €
{% else %}
Aucune facture validee pour cette periode.
{% endif %}
{% endblock %}