{% extends "base.html.twig" %} {% trans_default_domain 'core' %} {% 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 %} {% if entity.autorizado == true and entity.ambiente==2 %} {% trans %}abstract_invoice.show.delete{% endtrans %} {% else %} {% endif %} {% if entity.autorizado == false %} {% endif %} {% endif %} {# REVISAR IMPORTANTE SHARA
#}
{% if entity.anulado %}

ANULADO EN EL SISTEMA WEB

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

Guía Remisión

{{ entity.serie }}
{{ entity.label }}
{{ entity.issueDate |date("d/m/Y") }}
{{ entity.transportistaName }}
{{ entity.transportistaIdentification }}
{{ entity.transportistaPlaca|nl2br }}
{{ entity.transportistaEmail }}
{{ entity.direccionpPartida }}
{{ entity.feciniTransporte |date("d/m/Y") }}
{{ entity.fecfinTransporte |date("d/m/Y") }}

Destinatarios

{% for item in entity.destinatarios %}
{{ item.customername }}
{{ item.customerIdentification }}
{{ item.dirdestino }}
{{ item.motivotraslado }}
{{ item.ruta }}
{% for itemguia in item.items %} {% endfor %}
Descripción {% trans %}item.show.quantity{% endtrans %}
{{ itemguia.description }} {{ itemguia.quantity }}
{% endfor %}

{{ entity.notes|nl2br }}

{{ entity.note1|nl2br }}

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