{% load i18n %} {% load lfs_tags %}
{% trans "Your order has been sent" %}
{% trans 'General' %} | |||
---|---|---|---|
{% trans 'Customer name' %}: | {{ order.customer_firstname }} {{ order.customer_lastname }} | {% trans 'Date' %}: | {{ order.created|date:_("DATETIME_FORMAT") }} |
{% trans 'E-mail' %}: | {{ order.customer_email }} | {% trans 'State' %}: | {{ order.get_state_display }} |
{% trans 'Phone' %}: | {{ order.shipping_phone }} | {% trans 'Total' %}: | {{ order.price|currency }} |
{% trans 'Shipping address' %} | {% trans 'Invoice address' %} | {% trans 'Shipping method' %} | {% trans 'Payment method' %} |
---|---|---|---|
{{ order.shipping_firstname }}
{{ order.shipping_lastname }}
{{ order.shipping_company_name }}
{{ order.shipping_street }}
{{ order.shipping_zip_code }} {{ order.shipping_city }}
{{ order.shipping_country }}
{{ order.shipping_phone }}
{{ order.shipping_email }}
|
{{ order.invoice_firstname }}
{{ order.invoice_lastname }}
{{ order.invoice_company_name }}
{{ order.invoice_street }}
{{ order.invoice_zip_code }} {{ order.invoice_city }}
{{ order.invoice_country }}
{{ order.invoice_phone }}
{{ order.invoice_email }}
|
{{ order.shipping_method }}
|
{{ order.payment_method.name }}
{% ifequal order.payment_method.id 1 %}
{{ order.account_number }}
{{ order.bank_identification_code }}
{{ order.bank_name }}
{{ order.depositor }}
{% endifequal %}
{% ifequal order.payment_method.id 3 %}
{% endifequal %}
|
{% trans 'SKU' %} | {% trans 'Name' %} | {% trans 'Amount' %} | {% trans 'Price' %} | {% trans 'Total' %} |
---|---|---|---|---|
{{ item.product_sku }} |
{{ item.product_name }}
{% for property in item.product.get_displayed_properties %}
{{ property.title }} : {{ property.value }} {{ property.unit|safe }}
{% endfor %}
{% if item.product.is_configurable_product %}
{% for property in item.get_properties %}
{{ property.title }} : {{ property.value }} {{ property.unit|safe }} ({{ property.price|currency }})
{% endfor %}
{% endif %}
|
{{ item.product_amount }} {{ item.product.unit }} {% if item.product.active_packing_unit %} ({{ item|packages }} {{ item.product.packing_unit_unit }}) {% endif %} | {{ item.product_price_gross|currency }}{% if item.product.price_unit %} / {{ item.product.price_unit }}{% endif %} | {{ item.price_gross|currency }} |
{% trans 'Voucher' %} ({{ order.voucher_number }}) | 1 | - {{ order.voucher_price|currency }} | - {{ order.voucher_price|currency }} | |
{% trans 'Shipping' %} ({{ order.shipping_method }}) | 1 | {{ order.shipping_price|currency }} | {{ order.shipping_price|currency }} | |
{% trans 'Payment' %} ({{ order.payment_method }}) | 1 | {{ order.payment_price|currency }} | {{ order.payment_price|currency }} | |
{{ order.price|currency }} | ||||
{% trans 'Inclusive VAT' %}: {{ order.tax|currency }} |