{% extends 'base.html.twig' %} {% block title %} {{ reportName }} {% endblock %} {% block body %}
{{ include('reportes/filters.html.twig') }}
{% set totalMonto = 0 %} {% for nombreSet, results in dataset %}

{{ nombreSet |upper }}

{% for nombreColumna in results.columnas %} {% endfor %} {% for key, dato in results.datos %} {% if dato is iterable %} {% for datoColumn in dato %} {% if loop.index == results.columnas|length %} {% set totalMonto = totalMonto + datoColumn %} {% set datoColumn = datoColumn|number_format(2, ',', '.') %} {% endif %} {% endfor %} {% else %} {% set valor = dato %} {% if loop.index == results.columnas|length %} {% set totalMonto = totalMonto + dato %} {% endif %} {% if isNumeric(valor) %} {% set valor = valor|number_format(2, ',', '.') %} {% endif %} {% endif %} {% else %} {% endfor %}
{{ splitCamelCase(nombreColumna) }}
{{ datoColumn }}
{{ valor }} No existen datos
{% endfor %}

TOTAL ${{ totalMonto|number_format(2, ',', '.') }}

{% endblock %}