{% extends 'base.html' %} {% block title %}Purchase Report - Politory{% endblock %} {% block content %}
| # | Purchase # | Date | Vendor / Trader | Vehicle | Weight | Vendor Rate | Market Rate | Amount | Paid | Remaining | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ row.purchase_number|default:"-" }} | {{ row.date|date:"d-m-Y" }} | {{ row.vendor_name|default:"-" }} | {{ row.vehicle_number|default:"-" }} | {{ row.weight|default:"0" }} kg | Rs. {{ row.vendor_rate|default:"0" }} | Rs. {{ row.market_rate|default:"0" }} | Rs. {{ row.amount|default:"0" }} | Rs. {{ row.payed_amount|default:"0" }} | Rs. {{ row.remaining_amount|default:"0" }} | |
| No purchase records found for selected filters. | |||||||||||
| GRAND TOTAL | {{ total_weight|floatformat:0 }} kg | Rs. {{ total_amount|floatformat:0 }} | Rs. {{ total_paid|floatformat:0 }} | Rs. {{ total_remaining|floatformat:0 }} | |||||||