{% extends "base.html" %}
{% block title %}
» Supplier Contracts » {{bill.batch.contract.name}} »
Batches » {{bill.batch.reference}} » {{bill.reference}}
{% endblock %}
{% block nav %}
Supplier Contracts »
{{bill.batch.contract.name}} »
Batches »
{{bill.batch.reference}} »
Bill {{bill.id}}
[edit]
{% endblock %}
{% block content %}
Bill
Supply |
Reference |
Account |
Issue Date |
From |
To |
kWh |
Net |
VAT |
Gross |
Type |
Check |
Rate Scripts |
Supply
|
{{bill.reference}} |
{{bill.account}} |
{{bill.issue_date.strftime('%Y-%m-%d %H:%M')}} |
{{bill.start_date|hh_format }} |
{{bill.finish_date|hh_format }} |
{{bill.kwh}} |
{{bill.net}} |
{{bill.vat}} |
{{bill.gross}} |
{{bill.bill_type.code}}
|
Check |
{% if rate_scripts|length > 0 %}
{% endif %}
|
Edit |
MPAN |
Coefficient |
Units |
TPR |
Meter Serial Number |
Previous |
Present |
Date |
Value |
Type |
Date |
Value |
Type |
{% for read in register_reads %}
[edit] |
{{read.mpan_str}} |
{{read.coefficient}} |
{{read.units_as_str()}} |
{{read.tpr.code}} |
{{read.msn}} |
{{read.previous_date|hh_format}} |
{{read.previous_value}} |
{{read.previous_type.code}}
|
{{read.present_date|hh_format}} |
{{read.present_value}} |
{{read.present_type.code}}
|
{% endfor %}
Breakdown
element |
{% for col in column_list %}
{{col}} |
{% endfor %}
{% for row in row_list %}
{{row}} |
{% for col in column_list %}
{{grid[row][col]}} |
{% endfor %}
{% endfor %}
VAT Breakdown
VAT % |
Net GBP |
VAT GBP |
{% for k, v in vat_breakdown.items()|sort %}
{{k}}% |
{{ "£{:,}".format(v.net) }} |
{{ "£{:,}".format(v.vat) }} |
{% endfor %}
{{bill.breakdown}}
{% endblock %}