{% extends "portal/base_portal.html" %} {% block contenido %}

{{ _('Portal del Cliente') }}

{{ _('Bienvenido a su portal de servicios de lectura. Aquí puede consultar sus cotizaciones, pedidos, remisiones y facturas.') }}

{{ _('Cotizaciones de Venta') }}

{{ quotations|length }}
{% for item in quotations %} {% else %} {% endfor %}
{{ _('Cotizaciones de Venta') }}
{{ _('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.docstatus_badge(item.docstatus) }} {{ _('Ver') }}
{{ _('No se encontraron cotizaciones.') }}

{{ _('Órdenes de Venta') }}

{{ orders|length }}
{% for item in orders %} {% else %} {% endfor %}
{{ _('Órdenes de Venta') }}
{{ _('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.docstatus_badge(item.docstatus) }} {{ _('Ver') }}
{{ _('No se encontraron órdenes de venta.') }}

{{ _('Notas de Entrega / Remisiones') }}

{{ deliveries|length }}
{% for item in deliveries %} {% else %} {% endfor %}
{{ _('Notas de Entrega / Remisiones') }}
{{ _('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.docstatus_badge(item.docstatus) }} {{ _('Ver') }}
{{ _('No se encontraron notas de entrega.') }}

{{ _('Facturas de Venta') }}

{{ invoices|length }}
{% for item in invoices %} {% else %} {% endfor %}
{{ _('Facturas de Venta') }}
{{ _('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.docstatus_badge(item.docstatus) }} {{ _('Ver') }}
{{ _('No se encontraron facturas.') }}
{% endblock %}