{% extends "shopyo_base/module_base.html" %} {% set active_page = info['display_string']+' dashboard' %} {% block pagehead %}Order #{{ order.get_ref() }}{% endblock %} {% block sidebar %}{%include info['module_name']+'/blocks/sidebar.html'%}{%endblock%} {% block module_content %}

Order {{ order.get_ref() }}

{{ order.get_std_formatted_time() }}

Status

{{ order.status }}

Total Amount

${{ order.get_total_amount() }}

Items

{% for order_item in order.order_items %} {% set product = order_item.get_product() %} {% endfor %}
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() }}

Customer Details

Name

{{ order.billing_detail.first_name }} {{ order.billing_detail.last_name }}

Email

{{ 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 %}

{% endblock %}