{{ title | default('Balance General') }}

{{ entity | default('Empresa Demo S.A.') }} · Periodo: {{ period | default('al 31 mayo 2026') }}

ACTIVOS

{% for a in assets %} {% endfor %}
{{ a.name }}${{ "{:,.2f}".format(a.amount) }}
Total activos${{ "{:,.2f}".format(totals.assets | default(0)) }}

PASIVOS

{% for l in liabilities %} {% endfor %}
{{ l.name }}${{ "{:,.2f}".format(l.amount) }}
Total pasivos${{ "{:,.2f}".format(totals.liabilities | default(0)) }}

CAPITAL

{% for e in equity %} {% endfor %}
{{ e.name }}${{ "{:,.2f}".format(e.amount) }}
Total capital${{ "{:,.2f}".format(totals.equity | default(0)) }}

VERIFICACIÓN

Total pasivos + capital${{ "{:,.2f}".format((totals.liabilities | default(0)) + (totals.equity | default(0))) }}

Reportia · reportia.4l3.org · {{ generated_at | default('2026-05-31') }}