Electricity Bill


{% if bill_type == "Metered" %} Bill Number: {{ bill.metered_bill_id }} {% elif bill_type == "Unmetered" %} Bill Number: {{ bill.unmetered_bill_id }} {% endif %} Quarter Type: {{ bill.quarter_type }} Quarter Number: {{ bill.room_number }} Consumer Name: {{ bill.full_name }} Bill Date: {{ bill.issued_date }} Bill Due Date: {{ bill.due_date }} Bill Month: {{ bill.month }}

{% if bill_type == "Metered" %} Rate Code: {{ bill.meter_rate_name }} Previous Reading: {{ bill.previous_reading }} Current Reading: {{ bill.current_reading }} Total Units Consumed: {{ bill.units_consumed }} {% elif bill_type == "Unmetered" %} Rate Code: {{ bill.flat_rate_name }} {% endif %} Sanctioned Load (KW): {{ bill.sanctioned_load }}

Billing Calculations


Opening Balance (Rs): {{ bill.opening_balance }} Cost of Energy (Rs): {{ bill.energy_charges }} {% if bill_type == "Metered" %} Electricity Duty Charges (Rs): {{ bill.duty_charges }} {% endif %} Demand Charges (Rs): {{ bill.demand_charges }}

Grand Total (Rs): {{ bill.total_bill }}