ID: {{ order.id }}
{{ 'created'|translate }}: {{ order.createdAt|formatDatetime }}{{ 'title_delivery_address'|translate }}
{{ order.deliveryAddress.name }}
{{ order.deliveryAddress.street }}
{{ order.deliveryAddress.postalCode }}, {{ order.deliveryAddress.city }}
{{ order.deliveryAddress.country.translation(shop.currentLocale).name }}
{{ 'title_billing_address'|translate }}
{{ order.billingAddress.name }}
{{ order.billingAddress.street }}
{{ order.billingAddress.postalCode }}, {{ order.billingAddress.city }}
{{ order.billingAddress.country.translation(shop.currentLocale).name }}
TODO: Payment
Visa **** 4216
Shipping fee: $56
Total paid: $456
-
{% for product in order.orderItems %}
-
{{ product.productName }}
{{ product.quantity }} {{ product.unit }} = {{ product.totalPrice|money }}
{% endfor %}