status
.order-lookup-error{
color:red;
}
.order-lookup-header, .order-lookup-locations-wrapper {
margin-bottom: 20px;
}
.order-shipping-information{
margin-top:15px;
}
.order-lookup-billing {
float: left;
width: 40%;
margin-right: 20px;
}
.order-lookup-shipping {
float: left;
width: 40%;
margin-right: 20px;
}
.order-lookup-locations-wrapper {
clear: both;
}
.order-lookup-billing-title, .order-lookup-shipping-title{
font-weight:bold;
}
{% for order in orders %}
{{ order.name }}
{{ order.fulfillment_status}}
{{ order.w3_order_status }}
{{ order.created_at | date: 'MM-dd-yy' }}
View Details
{% endfor %}
/* lookup list CSS goes here */
Order Number: {{order_number}}
Shopify Order Status: {{fulfillment_status}}
W3 Order Status: {{w3_order_status}}
W3 Order Status: {{w3_order_status}}
Order Date: {{created_at}}
Last Updated: {{updated_at}}
Email Address: {{email}}
Shipping Information
{% for s in fulfillments %} Shipment: {{s.updated_at}} - {{s.tracking_company}} ({{s.tracking_number}})
{% endfor %}
{% for s in fulfillments %} Shipment: {{s.updated_at}} - {{s.tracking_company}} ({{s.tracking_number}})
{% endfor %}
Note: {{note}}
Billing Information
{{billing_address.first_name}} {{billing_address.last_name}}
{{billing_address.address1}}
{{billing_address.address2}}
{{billing_address.city}} {{billing_address.province_code}} {{billing_address.zip}}
{{billing_address.phone}}
Shipping Information
{{shipping_address.first_name}} {{shipping_address.last_name}}
{{shipping_address.address1}}
{{shipping_address.address2}}
{{shipping_address.city}} {{shipping_address.province_code}} {{shipping_address.zip}}
{{shipping_address.phone}}
Product | Quantity | Price | Total |
---|---|---|---|
{{p.name}} | {{p.quantity}} | {{p.price}} | {{p.price | times: p.quantity}} {{currency}} |
Subtotal | {{subtotal_price | round:2}} {{currency}} | ||
Tax | {{total_tax | round:2}} {{currency}} | ||
{{s.title}} | {{s.price | round:2}} {{currency}} | ||
Total Price | {{total_price | round:2}} {{currency}} |