{% extends "base.html" %} {% block contenido %}
{{ _('Cree un cierre mensual para ejecutar paso a paso las tareas del periodo. Por ahora el primer paso es aplicar comprobantes recurrentes aprobados.') }}
| {{ _('Compañía') }} | {{ _('Periodo') }} | {{ _('Estado') }} | {{ _('Creado') }} | {{ _('Acciones') }} |
|---|---|---|---|---|
| {{ run.company }} | {{ run_period.name if run_period else run.period_id }} | {{ run.run_status }} | {{ run.created }} | {{ _('Continuar') }} |
| {{ _('No hay cierres mensuales registrados.') }} | ||||
| {{ _('Plantilla') }} | {{ _('Descripción') }} | {{ _('Estado') }} |
|---|---|---|
| {{ template.name }} | {{ template.description or '-' }} | {% if template.id in applied_ids %} {{ _('Aplicada') }} {% else %} {{ _('Pendiente') }} {% endif %} |
| {{ _('No hay plantillas recurrentes aplicables.') }} | ||
| {{ _('Verificación') }} | {{ _('Estado') }} | {{ _('Detalle y causa') }} |
|---|---|---|
| {{ _(check.check_type) }} | {% if check.check_status in ('passed', 'skipped') %} {{ _(check.check_status) }} {% else %} {{ _(check.check_status) }} {% endif %} |
{{ check.message or _('Sin detalle disponible.') }}
{% if check.source_links %}
{{ _('Registros origen') }}:
{% for source in check.source_links %}
{% if source.url %}
{{ source.label }}
{% else %}
{{ source.label }}
{% endif %}
{% endfor %}
{% endif %}
|
| {{ _('Paso') }} | {{ _('Estado') }} | {{ _('Mensaje') }} |
|---|---|---|
| {{ check.check_type }} | {{ check.check_status }} | {{ check.message or '-' }} |
| {{ _('Aún no se han ejecutado pasos.') }} | ||