{% extends "base.html" %} {% block contenido %} {% import "macros.html" as macros %} {%- if TESTING -%}
{%- endif -%}
{{ registro.document_no or registro.id }} {{ macros.document_status_for("payment_entry", registro, detail=True) }}
{% if registro.docstatus == 0 %}
{% elif registro.docstatus == 1 %}
{% endif %}
Número de Documento
{{ registro.document_no or "" }}
Compañía
{{ registro.company or "" }}
Fecha
{{ registro.posting_date or "" }}
Estado
{{ macros.document_status_for("payment_entry", registro, detail=True) }}
{% if registro.external_number %}
Número Externo
{{ registro.external_number }}
{% endif %}
{{ macros.document_flow_trace("payment_entry", registro) }} {% endblock %}