chellow 1681477937.0.0__py3-none-any.whl → 1681482204.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of chellow might be problematic. Click here for more details.
- chellow/templates/e/era_supplier_bill_add.html +8 -15
- chellow/templates/e/supplier_bill_add.html +13 -16
- {chellow-1681477937.0.0.dist-info → chellow-1681482204.0.0.dist-info}/METADATA +1 -1
- {chellow-1681477937.0.0.dist-info → chellow-1681482204.0.0.dist-info}/RECORD +5 -5
- {chellow-1681477937.0.0.dist-info → chellow-1681482204.0.0.dist-info}/WHEEL +0 -0
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
<form action="/e/eras/{{era.id}}/add_supplier_bill" method="post">
|
|
27
27
|
<fieldset>
|
|
28
28
|
<legend>Add Import Supplier Batch And Bill</legend>
|
|
29
|
+
|
|
29
30
|
<fieldset>
|
|
30
31
|
<legend>Batch</legend>
|
|
31
32
|
<label>Reference</label>
|
|
@@ -33,25 +34,16 @@
|
|
|
33
34
|
<label>Description</label>
|
|
34
35
|
{{input_text('batch_description', placeholder=next_batch_description)}}
|
|
35
36
|
</fieldset>
|
|
36
|
-
|
|
37
|
+
|
|
37
38
|
<fieldset>
|
|
38
39
|
<legend>Bill</legend>
|
|
39
40
|
<label>Reference</label> {{input_text('bill_reference', size_20)}}
|
|
40
41
|
|
|
41
|
-
<label>Issue Date</label>
|
|
42
|
-
<fieldset>
|
|
43
|
-
{{input_date('issue')}}
|
|
44
|
-
</fieldset>
|
|
42
|
+
<label>Issue Date</label> {{input_date('issue')}}
|
|
45
43
|
|
|
46
|
-
<label>Start Date</label>
|
|
47
|
-
<fieldset>
|
|
48
|
-
{{input_date('start', start_date)}}
|
|
49
|
-
</fieldset>
|
|
44
|
+
<label>Start Date</label> {{input_date('start', start_date)}}
|
|
50
45
|
|
|
51
|
-
<label>Finish Date</label>
|
|
52
|
-
<fieldset>
|
|
53
|
-
{{input_date('finish')}}
|
|
54
|
-
</fieldset>
|
|
46
|
+
<label>Finish Date</label> {{input_date('finish')}}
|
|
55
47
|
|
|
56
48
|
<label>kWh</label> {{input_text('kwh', '0')}}
|
|
57
49
|
<label>Net</label> {{input_text('net', '0.00')}}
|
|
@@ -62,11 +54,12 @@
|
|
|
62
54
|
<select name="bill_type_id">
|
|
63
55
|
{% for bill_type in bill_types %}
|
|
64
56
|
<p>{{normal_bill_type_id}} {{bill_type.id}}</p>
|
|
65
|
-
{{input_option(
|
|
57
|
+
{{input_option(
|
|
58
|
+
'bill_type_id', bill_type.id, bill_type.code, normal_bill_type_id)}}
|
|
66
59
|
{% endfor %}
|
|
67
60
|
</select>
|
|
68
61
|
<label>Breakdown</label>
|
|
69
|
-
{{
|
|
62
|
+
{{input_textarea('breakdown', '{}', 10, 80, show_pos=True)}}
|
|
70
63
|
</fieldset>
|
|
71
64
|
<input type="submit" value="Add">
|
|
72
65
|
</fieldset>
|
|
@@ -29,22 +29,16 @@
|
|
|
29
29
|
<form action="/e/supplier_batches/{{batch.id}}/add_bill" method="post">
|
|
30
30
|
<fieldset>
|
|
31
31
|
<legend>Add A Bill</legend>
|
|
32
|
+
|
|
32
33
|
<label>MPAN Core</label> {{input_text('mpan_core')}}
|
|
34
|
+
|
|
33
35
|
<label>Reference</label> {{input_text('reference')}}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
</
|
|
38
|
-
|
|
39
|
-
<
|
|
40
|
-
<label>Start Date</label>
|
|
41
|
-
{{input_date('start', start_date)}}
|
|
42
|
-
</fieldset>
|
|
43
|
-
|
|
44
|
-
<fieldset>
|
|
45
|
-
<label>Finish Date</label>
|
|
46
|
-
{{input_date('finish')}}
|
|
47
|
-
</fieldset>
|
|
36
|
+
|
|
37
|
+
<label>Issue Date</label> {{input_date('issue')}}
|
|
38
|
+
|
|
39
|
+
<label>Start Date</label> {{input_date('start', start_date)}}
|
|
40
|
+
|
|
41
|
+
<label>Finish Date</label> {{input_date('finish')}}
|
|
48
42
|
|
|
49
43
|
<label>kWh</label> {{input_text('kwh', '0')}}
|
|
50
44
|
|
|
@@ -61,10 +55,13 @@
|
|
|
61
55
|
<select name="bill_type_id">
|
|
62
56
|
{% for bill_type in bill_types %}
|
|
63
57
|
<p>{{normal_bill_type_id}} {{bill_type.id}}</p>
|
|
64
|
-
{{input_option(
|
|
58
|
+
{{input_option(
|
|
59
|
+
'bill_type_id', bill_type.id, bill_type.code, normal_bill_type_id)}}
|
|
65
60
|
{% endfor %}
|
|
66
61
|
</select>
|
|
67
|
-
|
|
62
|
+
|
|
63
|
+
<label>Breakdown</label>
|
|
64
|
+
{{input_textarea('breakdown', '{}', 10, 80, show_pos=True)}}
|
|
68
65
|
|
|
69
66
|
<input type="submit" value="Add">
|
|
70
67
|
</fieldset>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: chellow
|
|
3
|
-
Version:
|
|
3
|
+
Version: 1681482204.0.0
|
|
4
4
|
Summary: Web Application for checking UK energy bills.
|
|
5
5
|
Project-URL: Homepage, https://github.com/WessexWater/chellow
|
|
6
6
|
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
@@ -200,7 +200,7 @@ chellow/templates/e/em_totals.html,sha256=D_H12qF6b8heVeSGzcl4u7xRvtPLUtM1zWYrwE
|
|
|
200
200
|
chellow/templates/e/energisation_status.html,sha256=hvD1qMpLYjmWWGIrv-5Ko3KbRL3a6MdQXcO3Fr4_cHA,478
|
|
201
201
|
chellow/templates/e/energisation_statuses.html,sha256=qwRIH7jqKA1MgajsWOeZAH89iRpOfsNW_fAqXymUQ3E,587
|
|
202
202
|
chellow/templates/e/era_edit.html,sha256=GXH7MQd6_53guCjX8j_Km7R-jyvkkYBk3Oi-cGxwblo,6396
|
|
203
|
-
chellow/templates/e/era_supplier_bill_add.html,sha256=
|
|
203
|
+
chellow/templates/e/era_supplier_bill_add.html,sha256=TgcIFuX-_sXXYFsn9yGT-QqMrZe6uLxWoJ-G0f-VELU,2050
|
|
204
204
|
chellow/templates/e/generator_type.html,sha256=En0lQSU_mc-QLMG5Hx-gDINVoqyfa4X9RYwopzpm33g,439
|
|
205
205
|
chellow/templates/e/generator_types.html,sha256=672cXDYewLAk32pzp6c8fi2P48FikxRrzTEtx_PlR7Y,535
|
|
206
206
|
chellow/templates/e/gsp_group.html,sha256=yzLHZHQPHZAQtjLBszWEc-htw8-MEhSu3kLo-KmW5n8,405
|
|
@@ -282,7 +282,7 @@ chellow/templates/e/supplier_batch_file_edit.html,sha256=g_1NKT3B79qKjbItZ4od7Vy
|
|
|
282
282
|
chellow/templates/e/supplier_batch_upload_file.html,sha256=OgMwjos4I7NZgEmAKzeY9Ssu05gQ6MpeCmJONCgctwg,8533
|
|
283
283
|
chellow/templates/e/supplier_batches.html,sha256=ij8LuHc2HzxovBn34aHCMra4pm3HimkkWZLeBYI4RpU,1164
|
|
284
284
|
chellow/templates/e/supplier_bill.html,sha256=PvSqFvgiMrARfXtIPPcaLa64yzCKWsL0feYXq2H6ceI,3797
|
|
285
|
-
chellow/templates/e/supplier_bill_add.html,sha256=
|
|
285
|
+
chellow/templates/e/supplier_bill_add.html,sha256=BsD-Zh7d9auiqJ61VPHiQrP8u8rTcw09mEKuKH9dxaA,2100
|
|
286
286
|
chellow/templates/e/supplier_bill_edit.html,sha256=oxZrMcMwrvluJSPxD4yfM9mWNeugoguAwT_ai9Ynl88,2732
|
|
287
287
|
chellow/templates/e/supplier_bill_import.html,sha256=XSDURJKvXvI3ee15VqYoUpmF8Ng61Puybwexzk1AFF0,4291
|
|
288
288
|
chellow/templates/e/supplier_bill_imports.html,sha256=9iTNGWKn9XjQTBP1Sepbo0QVNlgKh7EfizXapam7I6s,9356
|
|
@@ -348,6 +348,6 @@ chellow/templates/g/supply_note_edit.html,sha256=6UQf_qbhFDys3cVsTp-c7ABWZpggW9R
|
|
|
348
348
|
chellow/templates/g/supply_notes.html,sha256=WR3YwGh_qqTklSJ7JqWX6BKBc9rk_jMff4RiWZiF2CM,936
|
|
349
349
|
chellow/templates/g/unit.html,sha256=KouNVU0-i84afANkLQ_heJ0uDfJ9H5A05PuLqb8iCN8,438
|
|
350
350
|
chellow/templates/g/units.html,sha256=p5Nd-lAIboKPEOO6N451hx1bcKxMg4BDODnZ-43MmJc,441
|
|
351
|
-
chellow-
|
|
352
|
-
chellow-
|
|
353
|
-
chellow-
|
|
351
|
+
chellow-1681482204.0.0.dist-info/METADATA,sha256=uE-uqJb5xfHB4TbCOcf3L0PJTmc1_nOtWjzhRyHI0pY,12160
|
|
352
|
+
chellow-1681482204.0.0.dist-info/WHEEL,sha256=EI2JsGydwUL5GP9t6kzZv7G3HDPi7FuZDDf9In6amRM,87
|
|
353
|
+
chellow-1681482204.0.0.dist-info/RECORD,,
|
|
File without changes
|