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

Total Collected

₹{{ summary.total_payments }}

Payment Count

{{ summary.count }}

Cash

₹{{ summary.by_mode.cash }}

UPI

₹{{ summary.by_mode.upi }}

Card

₹{{ summary.by_mode.card }}

{% if payments %}
{% for payment in payments %} {% endfor %}
Payment #Order #CustomerAmountModeDate
{{ payment.payment_number }} {{ payment.order.order_number }} {{ payment.order.customer.name }} ₹{{ payment.amount_paid }} {{ payment.get_payment_mode_display }} {{ payment.payment_date|date:"d M Y" }}
{% else %} {% include "partials/empty_state.html" with title="No payments match filters" %} {% endif %}
{% endblock %}