{# @var order \Pimcore\Model\DataObject\OnlineShopOrder #} {% extends 'layouts/layout.html.twig' %} {% block content %}

{{ 'checkout.thank-you-order' | trans }}

{{ 'checkout.thank-you-order.txt' | trans | raw }}

{{ order.orderdate }}
{{ 'general.order' | trans }} {{ order.ordernumber }}
{{ 'general.orderItems' | trans }}
{% for orderItem in order.items %}
{{ orderItem.productName }} ({{ orderItem.productNumber }}) {{ orderItem.totalPrice | currency }}
{% endfor %}
{% if order.priceModifications %}
{{ 'general.priceModifications' | trans }}
{% for priceModification in order.priceModifications %}
{{ priceModification.name }} {{ priceModification.amount | currency }}
{% endfor %}
{% endif %} {% if order.giftItems %}
{{ 'general.giftItems' | trans }}
{% for orderItem in order.giftItems %}
{{ orderItem.productName }} ({{ orderItem.productNumber }})
{% endfor %}
{% endif %}
{{ 'general.totalPrice' | trans }} {{ order.totalPrice | currency }}
{% endblock %}