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