{% 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" %}
Total Collected
₹{{ summary.total_payments }}
Payment Count
{{ summary.count }}
Cash
₹{{ summary.by_mode.cash }}
UPI
₹{{ summary.by_mode.upi }}
Card
₹{{ summary.by_mode.card }}
| Payment # | Order # | Customer | Amount | Mode | Date |
|---|---|---|---|---|---|
| {{ 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" }} |