{% layout settings.customer_layout %}
Payment Status: {{ order.financial_status }}
Fulfillment Status: {{ order.fulfillment_status }}
Product | SKU | Price | Quantity | Total |
---|---|---|---|---|
{{ line_item.title | link_to: line_item.product.url }}
{% if line_item.fulfillment %}
Fulfilled {{ line_item.fulfillment.created_at | date: "%b %d" }}
{% if line_item.fulfillment.tracking_number %}
{{ line_item.fulfillment.tracking_company }} #{{ line_item.fulfillment.tracking_number}}
{% endif %}
{% endif %}
|
{{ line_item.sku }} | {{ line_item.price | money }} | {{ line_item.quantity }} | {{ line_item.quantity | times: line_item.price | money }} |
Subtotal: | {{ order.subtotal_price | money }} | |||
{{ discount.code }} Discount: | {{ discount.savings | money }} | |||
Shipping ({{ shipping_method.title }}): | {{ shipping_method.price | money }} | |||
Tax ({{ tax_line.title }} {{ tax_line.rate | times: 100 }}%): | {{ tax_line.price | money }} | |||
Total: | {{ order.total_price | money }} {{ order.currency }} |