Pos. | Description | Quantities | Price | Total |
{{ loop.index }} |
{{ lineItem.label|u.wordwrap(80) }} {% if lineItem.payload.options is defined and lineItem.payload.options|length >= 1 %} {% for option in lineItem.payload.options %} {{ option.group }}: {{ option.option }} {% if lineItem.payload.options|last != option %} {{ " | " }} {% endif %} {% endfor %} {% endif %} {% if lineItem.payload.productNumber is defined %}Prod. No.: {{ lineItem.payload.productNumber|u.wordwrap(80) }}{% endif %} |
{{ lineItem.quantity }} | {{ lineItem.unitPrice|currency(currencyIsoCode) }} | {{ lineItem.totalPrice|currency(currencyIsoCode) }} |
{{ index }} |
{{ discountLineItem.label|u.wordwrap(80) }} {% if discountLineItem.payload.options is defined and discountLineItem.payload.options|length >= 1 %} {% for option in discountLineItem.payload.options %} {{ option.group }}: {{ option.option }} {% if discountLineItem.payload.options|last != option %} {{ " | " }} {% endif %} {% endfor %} {% endif %} {% if discountLineItem.payload.productNumber is defined %}Prod. No.: {{ discountLineItem.payload.productNumber|u.wordwrap(80) }}{% endif %} |
{{ discountLineItem.quantity }} | -{{ discount.discount|currency(currencyIsoCode) }} | -{{ discount.discount|currency(currencyIsoCode) }} |
Shipping costs: {{ order.deliveries.first.shippingCosts.totalPrice|currency(currencyIsoCode) }}
Net total: {{ order.amountNet|currency(currencyIsoCode) }}
{% for calculatedTax in order.price.calculatedTaxes %}
{% if order.taxStatus is same as('net') %}plus{% else %}including{% endif %} {{ calculatedTax.taxRate }}% VAT. {{ calculatedTax.tax|currency(currencyIsoCode) }}
{% endfor %}
{% if not displayRounded %}{% endif %}Total gross: {{ total|currency(currencyIsoCode,decimals=decimals) }}{% if not displayRounded %}{% endif %}
{% if displayRounded %}
Rounded total gross: {{ order.price.totalPrice|currency(currencyIsoCode,decimals=order.totalRounding.decimals) }}
{% endif %}
Selected shipping type: {{ delivery.shippingMethod.translated.name }}
{{ delivery.shippingMethod.translated.description }}
{% set billingAddress = order.addresses.get(order.billingAddressId) %}
Billing address:
{{ billingAddress.company }}
{{ billingAddress.firstName }} {{ billingAddress.lastName }}
{{ billingAddress.street }}
{{ billingAddress.zipcode }} {{ billingAddress.city }}
{{ billingAddress.country.translated.name }}
Shipping address:
{{ delivery.shippingOrderAddress.company }}
{{ delivery.shippingOrderAddress.firstName }} {{ delivery.shippingOrderAddress.lastName }}
{{ delivery.shippingOrderAddress.street }}
{{ delivery.shippingOrderAddress.zipcode}} {{ delivery.shippingOrderAddress.city }}
{{ delivery.shippingOrderAddress.country.translated.name }}
{% if order.orderCustomer.vatIds %}
Your VAT-ID: {{ order.orderCustomer.vatIds|first }}
In case of a successful order and if you are based in one of the EU countries, you will receive your goods exempt from turnover tax.
{% endif %}
You can check the current status of your order on our website under "My account" - "My orders" anytime: {{ rawUrl('frontend.account.order.single.page', { 'deepLinkCode': order.deepLinkCode }, salesChannel.domains|first.url) }}
If you have any questions, do not hesitate to contact us.