{% extends "portal/base_portal.html" %} {% block contenido %}
{{ _('Bienvenido a su portal de servicios de lectura. Aquí puede consultar sus solicitudes de cotización, órdenes de compra, recepciones de almacén, notas de débito y crédito, y facturas de compra.') }}
| {{ _('Número') }} | {{ _('Fecha') }} | {{ _('Total') }} | {{ _('Estado') }} | {{ _('Acción') }} |
|---|---|---|---|---|
| {{ item.document_no or item.id }} | {{ item.posting_date }} | {{ format_money_with_currency(item.grand_total, document_currency_code(item)) }} | {{ macros.document_status_for("purchase_quotation", item) }} | {{ _('Ver') }} |
| {{ _('No se encontraron solicitudes de cotización.') }} | ||||
| {{ _('Número') }} | {{ _('Fecha') }} | {{ _('Total') }} | {{ _('Estado') }} | {{ _('Acción') }} |
|---|---|---|---|---|
| {{ item.document_no or item.id }} | {{ item.posting_date }} | {{ format_money_with_currency(item.grand_total, document_currency_code(item)) }} | {{ macros.document_status_for("purchase_order", item) }} | {{ _('Ver') }} |
| {{ _('No se encontraron órdenes de compra.') }} | ||||
| {{ _('Número') }} | {{ _('Fecha') }} | {{ _('Total') }} | {{ _('Estado') }} | {{ _('Acción') }} |
|---|---|---|---|---|
| {{ item.document_no or item.id }} | {{ item.posting_date }} | {{ format_money_with_currency(item.grand_total, document_currency_code(item)) }} | {{ macros.document_status_for("purchase_receipt", item) }} | {{ _('Ver') }} |
| {{ _('No se encontraron recepciones.') }} | ||||
| {{ _('Número') }} | {{ _('Tipo') }} | {{ _('Fecha') }} | {{ _('Total') }} | {{ _('Estado') }} | {{ _('Acción') }} |
|---|---|---|---|---|---|
| {{ item.document_no or item.id }} | {% if item.document_type == 'purchase_credit_note' %} {{ _('Nota de Crédito') }} {% elif item.document_type == 'purchase_debit_note' %} {{ _('Nota de Débito') }} {% elif item.document_type == 'purchase_return' %} {{ _('Devolución') }} {% else %} {{ item.document_type }} {% endif %} | {{ item.posting_date }} | {{ format_money_with_currency(item.grand_total, document_currency_code(item)) }} | {{ macros.document_status_for(item.document_type or "purchase_invoice", item) }} | {{ _('Ver') }} |
| {{ _('No se encontraron notas de débito o crédito.') }} | |||||
| {{ _('Número') }} | {{ _('Fecha') }} | {{ _('Total') }} | {{ _('Estado') }} | {{ _('Acción') }} |
|---|---|---|---|---|
| {{ item.document_no or item.id }} | {{ item.posting_date }} | {{ format_money_with_currency(item.grand_total, document_currency_code(item)) }} | {{ macros.document_status_for("purchase_invoice", item) }} | {{ _('Ver') }} |
| {{ _('No se encontraron facturas.') }} | ||||