{% extends "base.html.twig" %} {% trans_default_domain 'core' %} {# {% block invoice_label %} {% endblock %} #} {% block actionheader %} {% endblock %} {% block searchform %}{% endblock %} {% block body %} {{ form_start(form) }}
{% block invoice_actions %}{% endblock %} {% block invoice_label %}{% endblock %}
Listado Nuevo {% if entity.anulado %} {% else %} {% include "Core/comprob.show.html.twig" with {'entity': entity} %} {% endif %} {# REVISAR IMPORTANTE SHARA
#}
{% if entity.anulado %}

A N U L A D O

{% endif %} {% include "Core/emisor.show.html.twig" with {'entity': entity} %}

Factura Reembolso

{{ entity.serie }}
{{ entity.label }}
{{ entity.issueDate |date("d/m/Y") }}
{{ entity.customer_name }}
{{ entity.customer_identification }}
{{ entity.invoicingAddress|nl2br }}
{{ entity.customer_email }}

Detalle

{# #} {% for item in entity.items %} {{ include('Item/show.html.twig', { 'item': item, 'currency': currency }) }} {% endfor %}
{% trans %}item.show.description{% endtrans %} {% trans %}item.show.quantity{% endtrans %} {% trans %}item.show.unitary_cost{% endtrans %} {% trans %}item.show.discount{% endtrans %}{% trans %}item.show.taxes{% endtrans %}{% trans %}item.show.total{% endtrans %}
{% trans %}abstract_invoice.show.subtotal{% endtrans %} {{ entity.baseAmount|localizedcurrency(currency, app.request.locale) }}
{% trans %}abstract_invoice.show.total_taxes{% endtrans %} {{ entity.taxAmount|localizedcurrency(currency, app.request.locale) }}
{% trans with {'%currency%': currency} %}abstract_invoice.show.total{% endtrans %} {{ entity.grossAmount|localizedcurrency(currency, app.request.locale) }}

Reembolsos

{% for item in entity.reembolsos %} {{ include('Item/showreembolso.html.twig', { 'item': item, 'currency': currency }) }} {% endfor %}
Identificación Proveedor Documento Serie Número Base Por. Iva Iva
{% trans %}abstract_invoice.show.subtotal{% endtrans %} {{ entity.baseReemboAmount|localizedcurrency(currency, app.request.locale) }}
{% trans %}abstract_invoice.show.total_taxes{% endtrans %} {{ entity.taxReemboAmount|localizedcurrency(currency, app.request.locale) }}
{% trans with {'%currency%': currency} %}abstract_invoice.show.total{% endtrans %} {{ entity.grossReemboAmount|localizedcurrency(currency, app.request.locale) }}
{% for item in entity.pagos %} {% endfor %}
Forma Pago Valor Plazo Tiempo
{{ item.formapago.name }} {{ item.valor|localizedcurrency(currency, app.request.locale) }} {{ item.plazo }} {{ item.tiempo}}

{{ entity.notes|nl2br }}

{% block invoice_edit_actions %}{% endblock %}
{% include "Core/email.show.html.twig" with {'entity': entity} %} {{ form_rest(form) }} {{ form_end(form) }} {% endblock %}