{% extends "base.html" %} {% block contenido %}
| {{ _('Documento') }} | {{ _('Caja') }} | {{ _('Fecha') }} | {{ _('Esperado') }} | {{ _('Contado') }} | {{ _('Diferencia') }} | {{ _('Estado') }} | {{ _('Acciones') }} |
|---|---|---|---|---|---|---|---|
| {{ item.document_no or item.id }} | {{ item.petty_cash_id }} | {{ item.reconciliation_date }} | {{ item.expected_cash }} | {{ item.counted_cash }} | {{ item.difference }} | {{ item.status }} | {% if item.status == 'borrador' %}{{ _('Editar') }} {% elif item.status == 'conciliado' and item.difference and not item.adjustment_journal_id %}{% endif %} |
| {{ _('No hay conciliaciones registradas.') }} | |||||||