{% extends "base/module_base.html" %} {% set active_page = info['display_string']+' dashboard' %} {% block pagehead %}
| Time | {{order.get_std_formatted_time()}} | |||
| Status | {{order.status}} | |||
| Items | ||||
| Name | Barcode | Price | Quantity | Total |
| {{product.name}} | {{product.barcode}} | {{product.selling_price}} | {{order_item.quantity}} | {{product.selling_price * order_item.quantity}} |
| Total amount | {{order.get_total_amount()}} | |||
| Customer Name | {{order.billing_detail.first_name}} {{order.billing_detail.last_name}} | |||
| Street | {{order.billing_detail.street}} | |||
| Town/City | {{order.billing_detail.town_city}} | |||
| Phone | {{order.billing_detail.phone}} | |||
| {{order.billing_detail.email}} |