{{ title | default('Balance General') }}
{{ entity | default('Empresa Demo S.A.') }} · Periodo: {{ period | default('al 31 mayo 2026') }}
ACTIVOS
{% for a in assets %}
| {{ a.name }} | ${{ "{:,.2f}".format(a.amount) }} |
{% endfor %}
| Total activos | ${{ "{:,.2f}".format(totals.assets | default(0)) }} |
PASIVOS
{% for l in liabilities %}
| {{ l.name }} | ${{ "{:,.2f}".format(l.amount) }} |
{% endfor %}
| Total pasivos | ${{ "{:,.2f}".format(totals.liabilities | default(0)) }} |
CAPITAL
{% for e in equity %}
| {{ e.name }} | ${{ "{:,.2f}".format(e.amount) }} |
{% endfor %}
| 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') }}