{% extends "base.html" %} {% block title %} Gas Supplier Contracts » {{g_batch.g_contract.name}} » Batches > {{g_batch.reference}} {% endblock %} {% block nav %} Gas Supplier Contracts » {{g_batch.g_contract.name}} » Batches » {{g_batch.reference}} [edit] {% endblock %} {% block content %} {% if g_batch_reports %} {% endif %}
Reference {{g_batch.reference}}
Description {{g_batch.description}}
Number Of Bills {{ "{:,}".format(num_bills) }}
Sum net GBP {{ "£{:,}".format(sum_net_gbp) }}
Sum VAT GBP {{ "£{:,}".format(sum_vat_gbp) }}
Sum gross GBP {{ "£{:,}".format(sum_gross_gbp) }}
Sum kWh {{ "{:,}".format(sum_kwh) }}
Custom Reports

{% for i in range(max_reads) %} {% endfor %} {% for g_bill in g_bills %} {% for read in g_bill.g_reads %} {% endfor %} {% endfor %}
Bills [add]
View Reference Account Issued Start Date Finish Date Bill Type kWh Net GBP VAT GBP Gross GBP Breakdown{{i}} MSN {{i}} Unit {{i}} Correction Factor {{i}} Calorific Value {{i}} Prev Date {{i}} Prev Value {{i}} Prev Type {{i}} Pres Date {{i}} Pres Value {{i}} Pres Type
View {{g_bill.reference}} {{g_bill.account}} {{g_bill.issue_date|hh_format}} {{g_bill.start_date|hh_format}} {{g_bill.finish_date|hh_format}} {{g_bill.bill_type.code}} {{g_bill.kwh}} {{g_bill.net}} {{g_bill.vat}} {{g_bill.gross}} {{g_bill.breakdown}}{{read.msn}} {{read.g_unit.code}} {{read.correction_factor}} {{read.calorific_value}} {{read.prev_date|hh_format}} {{read.prev_value}} {{read.prev_type.code}} {{read.pres_date|hh_format}} {{read.pres_value}} {{read.pres_type.code}}
{% endblock %}