Skip to Content
ReferenceLiquidObjectsCheckoutOrderDrop

OrderDrop

The order object represents the completed order in the checkout confirmation context. It exposes order details such as totals, line items, shipping, and payment status.

Usage Example

{%- comment -%} Show order summary on the confirmation page {%- endcomment -%} <h2>Order #{{ order.order_number }}</h2> <p>Status: {{ order.financial_status }}</p> <p>Total: {{ order.total_price | money_with_currency }}</p> {% for line in order.line_items %} <div>{{ line.title }} &times; {{ line.quantity }} = {{ line.line_price | money }}</div> {% endfor %}

id

Returns the order id.

is_completed

Returns true if order is received and completed-

order_number

Returns the order number.

reference_number

Returns the reference.

is_cancelled

Returns true if this order was cancelled.

is_cancellable

Returns true if the customer can cancel this order (unfulfilled, no returns).

created_at

Date when this order was created.

confirmed_at

Date when this order was confirmed.

fulfilled_at

Date when this order was fulfilled.

language

Returns the order language code.

currency

Returns the order currency code.

transfer_key

Returns the order transfer key.

customer

Customer linked to this order if any.

discounts

Order discount lines

tags

Order tags.

financial_status

Returns paid if order is paid, otherwise not_paid.

subtotal_price

Returns the subtotal.

total_price

Returns the total.

total_net_price

Returns the net total.

total_tax

Returns the total tax.

tax_lines

Returns the tax lines.

customer_note

Returns the customer note.

is_fulfilled

Returns true if order is fulfilled.

is_shipped

Returns true if order is shipped.

order_status

Returns the order status.

payment_methods

Returns the payment methods for this order.

payment_fee

Returns the total payment fee.

shipping_methods

Returns the shipping methods for this order.

shipping_price

Returns the total shipping costs.

drop_point

Returns the customer selected drop point. This is not necessarily the same where the order was shipped to.

items

Returns the order line items.

physical_items

Returns physical (non-digital, non-bundle) order line items.

shipping_address

Returns the shipping address for this order.

billing_address

Returns the billing address for this order.

shipments

Returns the shipments for this order.

returns

Returns the returns for this order.

return_access

Returns true if the customer has return access for this order.

receipt_url

Returns the link for the receipt.