{% extends "shopyo_base/module_base.html" %} {% set active_page = info['display_string']+' dashboard' %} {% block pagehead %}
Status
Total Amount
${{ order.get_total_amount() }}
| Name | Barcode | Size | Color | Price | Qty | Total |
|---|---|---|---|---|---|---|
| {{ product.name }} | {{ product.barcode }} | {{ order_item.size or '-' }} | {{ order_item.color or '-' }} | ${{ product.selling_price }} | {{ order_item.quantity }} | ${{ product.selling_price * order_item.quantity }} |
| Total | ${{ order.get_total_amount() }} | |||||
Name
{{ order.billing_detail.first_name }} {{ order.billing_detail.last_name }}
{{ order.billing_detail.email }}
Phone
{{ order.billing_detail.phone }}
Address
{{ order.billing_detail.street }}{% if order.billing_detail.town_city %}, {{ order.billing_detail.town_city }}{% endif %}