{% 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 == false %} {% include "Core/comprob.show.html.twig" with {'entity': entity} %} {% endif %} {# REVISAR IMPORTANTE SHARA
#}
{% if entity.anulado %}

ANULADO EN EL SISTEMA WEB

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

Factura

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

{% trans %}abstract_invoice.show.properties{% endtrans %}

{{ entity.claveAcceso }}
{{ entity.issueDate|localizeddate('none', 'none', app.request.locale, null, 'dd/MM/yyyy') }}
{{ entity.fechaAutorizacion }}
#}

{% trans %}abstract_invoice.show.items{% endtrans %}

{# #} {% 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) }}
{% 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 }}

{% if transportesocio is defined and transportesocio != null %}
DATOS TRANSPORTISTA
{{ transportesocio.Ptoemisionsocio }}
{{ transportesocio.Nombresocio }}
{{ transportesocio.Rucsocio }}
{{ transportesocio.Tpcontribuyentesocio }}
{{ entity.placa }}
{% endif %}
{% block invoice_edit_actions %}{% endblock %}
{% include "Core/email.show.html.twig" with {'entity': entity} %} {{ form_rest(form) }} {{ form_end(form) }}
{% endblock %}