{% extends "base.html" %} {% block title %}Orders Report{% endblock %} {% block page_title %}Orders Report{% endblock %} {% block page_subtitle %}Filter and export order data{% endblock %} {% block content %} {% include "partials/breadcrumb.html" %}
{{ form.date_from }}
{{ form.date_to }}
{{ form.status }}
{{ form.payment_status }}
{{ form.customer }}
Clear
Export CSV Export Excel

Total Orders

{{ summary.total_orders }}

Grand Total

₹{{ summary.total_grand }}

Discount

₹{{ summary.total_discount }}

Paid

₹{{ summary.total_paid }}

Balance

₹{{ summary.total_balance }}

{% if orders %}
{% for order in orders %} {% endfor %}
Order #CustomerGrand TotalPaidBalanceStatus
{{ order.order_number }} {{ order.customer.name }} ₹{{ order.grand_total }} ₹{{ order.total_paid }} ₹{{ order.balance_amount }} {{ order.get_status_display }}
{% else %} {% include "partials/empty_state.html" with title="No orders match filters" %} {% endif %}
{% endblock %}