{% extends "base.html" %} {% block title %} » DC Contracts » {{contract.name}} » Batches » {{importer_id}} {% endblock %} {% block nav %} DC Contracts » {{contract.name}} » Batches » {{importer_id}} {% endblock %} {% block content %}

Bill Import

{% if is_alive %}

Still running. Refresh the page to see latest progress.

{% endif %} {% if status %}

{{status}}

{% endif %} {% if failed_bills|length > 0 %} {% for bill in failed_bills %} {% endif %} {% endfor %}
Failed Bills
Error MPAN Core Account Reference Bill Type Code Issue Date Start Date Finish Date kWh Net VAT Gross Breakdown
{{bill.error}} {{bill.mpan_core}} {{bill.account}} {{bill.reference}} {{bill.bill_type_code}} {% if 'issue_date' in bill %} {{bill.issue_date|hh_format}} {% endif %} {% if 'start_date' in bill %} {{bill.start_date|hh_format}} {% endif %} {% if 'finish_date' in bill %} {{bill.finish_date|hh_format}}{{bill.kwh}} {{bill.net}} {{bill.vat}} {{bill.gross}} {% if 'breakdown' in bill %}
{{bill.breakdown|dumps}}
{% endif %}
{% endif %} {% if successful_bills|length > 0 %} {% for bill in successful_bills %} {% endfor %}
Successful Bills
Reference Account Bill Type MPAN Core Issue Date Start Date Finish Date kWh Net VAT Gross Breakdown
{{bill.reference}} {{bill.account}} {{bill.bill_type_code}} {{bill.mpan_core}} {{bill.issue_date|hh_format}} {{bill.start_date|hh_format}} {{bill.finish_date|hh_format}} {{bill.kwh}} {{bill.net}} {{bill.vat}} {{bill.gross}}
{{bill.breakdown|dumps}}
{% endif %} {% endblock %}