Order Status Page
{{ 'customer.account.title' | t }}
{{ 'customer.order.title' | t: name: order.name }}
{%- assign order_date = order.created_at | time_tag: format: "date_at_time" -%}{{ 'customer.order.date_html' | t: date: order_date }}
{%- if order.cancelled -%}
{%- assign cancelled_at = order.cancelled_at | time_tag: format: "date_at_time" -%}
{%- endif -%}
{{ 'customer.order.cancelled_html' | t: date: cancelled_at }}
{{ 'customer.order.cancelled_reason' | t: reason: order.cancel_reason_label }}
{{ 'customer.order.product' | t }} | {{ 'customer.order.sku' | t }} | {{ 'customer.order.price' | t }} | {{ 'customer.order.quantity' | t }} | {{ 'customer.order.total' | t }} |
---|---|---|---|---|
{{ line_item.title | link_to: line_item.product.url }}
{%- if line_item.line_level_discount_allocations != blank -%}
{%- if line_item.fulfillment -%}
{%- assign created_at = line_item.fulfillment.created_at | time_tag: format: 'date' -%}
{{ 'customer.order.fulfilled_at_html' | t: date: created_at }}
{%- endif -%}
{%- if line_item.fulfillment.tracking_url -%}
{{ 'customer.order.track_shipment' | t }}
{%- endif -%}
{{ line_item.fulfillment.tracking_company }}
{%- if line_item.fulfillment.tracking_number -%} #{{ line_item.fulfillment.tracking_number }} {%- endif -%}
|
{{ line_item.sku }} |
|
{{ line_item.quantity }} |
{%- if line_item.original_line_price != line_item.final_line_price -%}
|
{{ 'customer.order.subtotal' | t }} | {{ order.line_items_subtotal_price | money }} | |||
{{ 'customer.order.discount' | t }} {% include 'icon-saletag' %}{{- discount_application.title -}} |
{% include 'icon-saletag' %}{{- discount_application.title -}}
-{{ discount_application.total_allocated_amount | money }}
|
{%- endfor -%}
|||
{{ 'customer.order.shipping' | t }} ({{ shipping_method.title }}) | {{ shipping_method.price | money }} | |||
{{ 'customer.order.tax' | t }} ({{ tax_line.title }} {{ tax_line.rate | times: 100 }}%) | {{ tax_line.price | money }} | |||
{{ 'customer.order.total' | t }} | {{ order.total_price | money_with_currency }} |
{{ 'customer.order.billing_address' | t }}
{{ 'customer.order.payment_status' | t }}: {{ order.financial_status_label }}
{{ order.billing_address | format_address }}{{ 'customer.order.shipping_address' | t }}
{{ 'customer.order.fulfillment_status' | t }}: {{ order.fulfillment_status_label }}
{{ order.shipping_address | format_address }}