{% extends reportShell|default('base.html.twig') %} {% block title %}Resumen por proveedor{% endblock %} {% block page_title %}Resumen por proveedor{% endblock %} {% block stylesheets %} {% if reportShell|default('base.html.twig') == 'base.html.twig' %} {{ parent() }} {% endif %} {% include 'reporte/_styles.html.twig' %} {% endblock %} {% block breadcrumb %} {% endblock %} {% block report_title %}Resumen por proveedor{% endblock %} {% block report_subtitle %}Consolidado de cargos, abonos y saldo pendiente{% endblock %} {% block content %} {% set isExportView = reportShell|default('base.html.twig') != 'base.html.twig' %}
Proveedores con saldo {{ resumen|length }}
{% for total in totalesMoneda %}
Saldo total {{ total.moneda }} {{ total.moneda }} {{ total.saldo|number_format(2, '.', ',') }}
Cargos {{ total.moneda }} {{ total.cargos|number_format(2, '.', ',') }} | Abonos {{ total.moneda }} {{ total.abonos|number_format(2, '.', ',') }}
{% endfor %}
{{ block('report_body') }}
{% endblock %} {% block report_body %}
{% for row in resumen %} {% else %} {% endfor %} {% if totalesMoneda|length > 0 %} {% for total in totalesMoneda %} {% endfor %} {% endif %}
Proveedor Moneda Cargos Abonos Saldo
{{ row.proveedor }} {{ row.moneda }} {{ row.cargos }} {{ row.abonos }} {{ row.saldo }}
No hay datos para mostrar.
Total {{ total.moneda }} {{ total.moneda }} {{ total.moneda }} {{ total.cargos|number_format(2, '.', ',') }} {{ total.moneda }} {{ total.abonos|number_format(2, '.', ',') }} {{ total.moneda }} {{ total.saldo|number_format(2, '.', ',') }}
{% endblock %}