Detalles del Pedido
{% if golden_rules_as_discount %}

Golden Rules como ítems de descuento en órdenes está activado. Se mostrará como descuento la diferencia de precio generada por golden rules aplicables.

{% endif %}
{% if products is empty %} Este producto no existe en su cuenta de Fulljaus {% else %} {% set totalproducts = 0 %} {% for p in products %} {% set subtotal = (p.unit_price_with_taxes * p.quantity) %} {% set totalproducts = totalproducts + subtotal %} {% set isCombo = p.productsCombo|length %} {% set editRoute = ""%} {% if p.isCombo == false and p.isParent == false %} {% set editRoute = path('ProductViewsController_simpleProductEditView', { 'id': p.productId }) %} {% endif %} {% if p.isCombo %} {% set editRoute = path('ProductViewsController_comboProductEditView', { 'id': p.productId }) %} {% endif %} {% if p.isParent %} {% set editRoute = path('ProductViewsController_variantProductEditView', { 'id': p.productId }) %} {% endif %} {% if isCombo %} {% include "AppBundle:Ordenes:edit/combo_product_billing.html.twig" with {'combo': p, 'index': loop.index, 'colspan': 6} %} {% endif %} {% endfor %} {% if discounts is not empty %} {% for d in discounts %} {% endfor %} {% endif %}
SKU Titulo Precio Unitario Cantidad Subtotal
{{ p.sku }} {% if isCombo %} {% endif %}{{ p.name }} {{ p.unit_price_with_taxes | number_format(2, '.', ',') }} {{ p.quantity }} {{ subtotal|number_format(2, '.', ',') }}{% if isCombo %} {% endif %}
- {{ d.sku_associated }} {{ d.name }} {{ d.unit_price_with_taxes | number_format(2, '.', ',') }} 1 {{ d.unit_price_with_taxes | number_format(2, '.', ',') }}
{% endif %}