{% 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 %}
Reference |
{{batch.reference}} |
Description |
{{batch.description}} |
Number Of Bills |
{{ bills|length }} |
{% if batch_reports %}
Custom Reports |
|
{% endif %}
View |
Reference |
Account |
Issued |
From |
To |
kWh |
Net |
VAT |
Gross |
Type |
{% for bill in bills %}
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}}
|
{% endfor %}
{% endblock %}