{% extends "base.html" %}
{% block title %}
» DC Contracts » {{ batch.contract.name }} » Batches »
{{ batch.reference }}
{% endblock %}
{% block nav %}
» DC Contracts »
{{batch.contract.name}} »
Batches
» {{batch.reference}}
[edit]
{% endblock %}
{% block content %}
{% if request.method == 'GET' and request.values.confirm_delete_bills %}
{% elif request.method == 'GET' and
request.values.confirm_delete_import_bills %}
{% elif request.method == 'GET' and
request.values.confirm_import_bills %}
{% else %}
Reference |
{{ batch.reference }} |
Description |
{{ batch.description }} |
Number Of Bills |
{{ bills|length }} |
{% if batch_reports %}
Custom Reports |
|
{% endif %}
Billing Files
[upload]
View |
Filename |
Upload Timestamp |
Parser Name |
{% for file in batch.files %}
View |
{{file.filename}} |
{{file.upload_timestamp|hh_format}}
|
{{file.parser_name}} |
{% endfor %}
Imports
View |
Id |
{% for id in importer_ids %}
View |
{{id}} |
{% endfor %}
View |
Reference |
Supply |
Account |
Issue Date |
From |
To |
kWh |
Net |
VAT |
Gross |
Type |
{% for bill in bills %}
View |
{{ bill.reference }} |
supply |
{{ 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}}
|
{% endfor %}
{% endif %}
{% endblock %}