{% if valoration == "false" %}

RESUMEN DEL PEDIDO


Total de stocks incluidos en el pedido
{{ order.stocks | length }} stocks
Total de articulos incluidos en el pedido
{{ order.articles | length }} {% if order.articles | length == 1 %}artículo{% else %}artículos{% endif %}
{% if order.orderInfo.observations %}

OBSERVACIONES


{{ order.orderInfo.observations }}
{% endif %}
{% else %} {% if valoration != "distro" %}
Número de pedido: {{ order.numOfOrder }}

DESGLOSE POR EMPRESAS


{% for company in companies %} {{ render(url('apportionment_by_companies', {'order' : order.id, 'company' : company.id })) }} {% endfor %}

RESUMEN DEL PEDIDO


Total de stocks incluidos en el pedido
{{ order.stocks | length }} stocks
Total de articulos incluidos en el pedido
{{ order.articles | length }} {% if order.articles | length == 1 %}artículo{% else %}artículos{% endif %}

TOTAL PEDIDO:

{{ render(controller('CoreBundle:OrderArticle:getTotalOrder', { 'orderId' : order.id })) | number_format(2, '.', '') }}€

{% if order.orderInfo.observations %}

OBSERVACIONES


{{ order.orderInfo.observations }}
{% endif %}
{% endif %} {% endif %}