{% extends "base.html" %} {% block contenido %} {% set status_value = plantilla.status %} {% set status_badge = 'bg-secondary' %} {% if status_value == 'approved' %}{% set status_badge = 'bg-primary' %} {% elif status_value == 'cancelled' %}{% set status_badge = 'bg-danger' %} {% elif status_value == 'completed' %}{% set status_badge = 'bg-success' %} {% endif %}
{{ plantilla.name }}
{{ plantilla.company }}
{{ plantilla.start_date }}
{{ _(plantilla.frequency) }}
{{ plantilla.ledger_id or _('Todos') }}
{{ plantilla.end_date }}
{{ plantilla.currency or _('Local') }}
{{ plantilla.last_applied_date or '-' }}
{{ plantilla.description or '-' }}
| {{ _('Cuenta') }} | {{ _('Débito') }} | {{ _('Crédito') }} | {{ _('Descripción') }} | {{ _('Detalle') }} |
|---|---|---|---|---|
| {{ linea.account_code }} | {{ "{:,.2f}".format(linea.debit) }} | {{ "{:,.2f}".format(linea.credit) }} | {{ linea.description or '-' }} |
-
-
-
-
| {{ _('Periodo') }} | {{ _('Fecha') }} | {{ _('Comprobante') }} | {{ _('Estado') }} |
|---|---|---|---|
| {{ app.accounting_period }} | {{ app.application_date }} | {% if app.journal_id %}{{ app.journal_id }}{% else %}-{% endif %} | {{ _(app.status) }} |
| {{ _('Sin aplicaciones registradas.') }} | |||