{% extends 'common/base.html' %} {% load static %} {% block title %} Sales Order List {% endblock %} {% block content %}
| Order ID | Customer | Order Amount | Shipping Cost | Payment Info | Order Status | Order Date | Action | ||
|---|---|---|---|---|---|---|---|---|---|
| {{ order.order_number }} |
Name: {{ order.shipping_person_name }} Mobile: {{ order.shipping_mobile }} Email: {{ order.shipping_email }} |
৳ {{ order.grand_total }} | ৳ {{ order.shipping_charge }} |
Payment Status:
{% if order.payment_status == "paid" %}
Paid
{% elif order.payment_status == "pending" %}
Pending
{% elif order.payment_status == "refund" %}
Refund
{% else %}
{{ order.payment_status }}
{% endif %}
Payment Method: {{order.get_payment_method_display}} |
{% if order.order_status == "1" %} Pending {% elif order.order_status == "2" %} Confirmed {% else %} Delivered {% endif %} | {{ order.order_date|date:"Y-m-d" }} | View Edit | ||
| No orders found. | |||||||||