Order #{{ order.number }}

Order date: {{ order.checkoutCompletedAt|date('j/m/Y') }}
Order status: {{ order.state|humanize }}
{% if order.shipments|length > 0 and (order.shipments|first).tracked %}
Tracking #: {{ (order.shipments|first).tracking }}
{% endif %} {% if order.hasAttribute('xero_id') %}
Tax Invoice: Download
{% endif %}
{% include 'partials/cart.html.twig' with {'editable': false, 'cart': order} %}

Deliver To {{ order.shippingAddress.fullName }}

Delivery Address

{% include 'partials/address.html.twig' with {'address': order.shippingAddress} %}

Delivery Method

{% for shipping in order.adjustments(constant('Canary\\CommerceBundle\\Entity\\Adjustment::TYPE_SHIPPING')) %}

{{ shipping.label }} ({{ shipping.amount|commerce_currency(order.currency, order.locale) }})

{% endfor %}

Payment Information

Billing Address

{% include 'partials/address.html.twig' with {'address': order.billingAddress, 'email': order.customer.email} %}

Payment Method

{{ order.lastTransaction.method.name }}

{% if order.lastTransaction.method.instructions and order.lastTransaction.state in ['new', 'processing', 'authorized'] %} {{ order.lastTransaction.method.instructions|raw }} {% endif %}
{% if order.notes %}

Notes

{{ order.notes }} {% endif %}