{% extends 'base.html.twig' %} {% block title %} {{ reportName }} {% endblock %} {% block body %}

Cantidad {{ dataset | length }}

{{ include('reportes/filters.html.twig') }}
{% if columnas is defined %} {% for nombreColumna in columnas %} {% if nombreColumna != 'idCaso' %} {% endif %} {% endfor %} {% endif %} {% if columnas is defined %} {% set totalMonto = 0 %} {% for key, dato in dataset %} {% for nombreColumn in columnas %} {% set valor = dato[nombreColumn] %} {% if nombreColumn != 'idCaso' %} {% endif %} {% endfor %} {% else %} {% endfor %} {% endif %}
{{ splitCamelCase(nombreColumna) }}
{% if nombreColumn == 'NroCaso' %}

{{ valor }}

{% else %} {{ valor }} {% endif %}
No existen datos
{% if saldo is not empty %}

Total $ {{ saldo|number_format(2, ',', '.') }}

Saldo Socio $ {{ gananciaSocio|number_format(2, ',', '.') }}

{% endif %}
{% endblock %}