{% extends 'base.html' %} {% block title %}Sells Report - Politory{% endblock %} {% block content %}

Sells Report

Sales Invoice Report
Print Report
TOTAL WEIGHT {{ total_weight|floatformat:2 }} kg
TOTAL AMOUNT Rs. {{ total_amount|floatformat:2 }}
RECEIVED AMOUNT Rs. {{ total_received|floatformat:2 }}
REMAINING AMOUNT Rs. {{ total_remaining|floatformat:2 }}
Sells Records
{{ records|length }} Records
{% for row in records %} {% empty %} {% endfor %} {% if records %} {% endif %}
# Sell # Purchase # Date Customer / Trader Vehicle Weight Rate Amount Received Remaining
{{ forloop.counter }} {{ row.sells_no|default:"-" }} {{ row.purchase_number|default:"-" }} {{ row.entry_date|date:"d-m-Y" }} {{ row.customer_name|default:"-" }} {{ row.vehicle_no|default:"-" }} {{ row.weight|default:"0" }} kg Rs. {{ row.rate|default:"0" }} Rs. {{ row.amount|default:"0" }} Rs. {{ row.received_amount|default:"0" }} Rs. {{ row.remaining_amount|default:"0" }}
No sells records found for selected filters.
GRAND TOTAL {{ total_weight|floatformat:2 }} kg Rs. {{ total_amount|floatformat:2 }} Rs. {{ total_received|floatformat:2 }} Rs. {{ total_remaining|floatformat:2 }}
{% endblock %}