{% extends "base.html" %} {% block title %} » Supplier Contracts » {{batch.contract.name}} » Batches » {{batch.reference}} {% endblock %} {% block nav %} » Supplier Contracts » {{batch.contract.name}} » Batches » {{batch.reference}} [edit] {% endblock %} {% block content %}
{% if batch_reports %} {% endif %}
Reference {{batch.reference}}
Description {{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

Bills [add]

{% if bills != None %}
{% for bill in bills %} {% endfor %}
View Reference Account Issued From To kWh Net VAT Gross Type
View {{bill.reference}} {{bill.account}} {{bill.issue_date|hh_format}} {{bill.start_date|hh_format}} {{bill.finish_date|hh_format}} {{bill.kwh}} {{bill.net}} {{bill.vat}} {{bill.gross}} {{bill.bill_type.code}}
{% else %}

Bills

{% endif %}
{% endblock %}