{% block content %}

Factura rectificativa

{{ refund.seller_company }}

{{ refund.address }}

{{ refund.postal_code }} , {{ refund.seller_city }}, {{ refund.seller_state }}

CIF: {{ refund.cif }}

Telf: {{ refund.phone1 }}

Email: {{ refund.email }}


Cliente

{{ refund.billing_first_name ~ ' ' ~ refund.billing_last_name }}

{{ refund.billing_address_one ~ ' ' ~ refund.billing_address_two }}

{{ refund.billing_post_code ~ ', ' ~ refund.billing_city ~ ', ' ~ refund.billing_country }}

Telf: {{ refund.billing_phone }}

Email: {{ refund.billing_email }}

Número de factura

{{ refund.number_invoice }}

Número de pedido

{{ refund.order_id }}

Fecha

{{ refund.date_created|date('d/m/Y') }}

Importe

-{{ refund.amount }}€

{% set total_tax = 0 %} {% set subtotal = 0 %} {% for item in items %} {% set subtotal = subtotal + item.refund_total %} {% set total_tax = total_tax + item.total_tax %} {% endfor %}

Descripción

Cantidad

Subtotal

Impuesto

{{ item.sku ~ ' ' ~ item.name }}

{{ item.quantity }}

{{ item.refund_total }}€

{{ item.total_tax }}€

Subtotal

{{ subtotal }}

Iva

{{ total_tax }}€

Envío

{{ refund.ref_shipping + refund.ref_shipping_tax }}€

Total

-{{ refund.amount }}€

{% endblock %}