chellow 1727166948.0.0__py3-none-any.whl → 1727260897.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/e/views.py +5 -6
- chellow/templates/e/read_add.html +2 -7
- {chellow-1727166948.0.0.dist-info → chellow-1727260897.0.0.dist-info}/METADATA +1 -1
- {chellow-1727166948.0.0.dist-info → chellow-1727260897.0.0.dist-info}/RECORD +5 -5
- {chellow-1727166948.0.0.dist-info → chellow-1727260897.0.0.dist-info}/WHEEL +0 -0
chellow/e/views.py
CHANGED
|
@@ -3749,7 +3749,7 @@ def pc_get(pc_id):
|
|
|
3749
3749
|
|
|
3750
3750
|
@e.route("/supplier_bills/<int:bill_id>/add_read")
|
|
3751
3751
|
def read_add_get(bill_id):
|
|
3752
|
-
read_types = g.sess.scalars(select(ReadType).order_by(ReadType.code))
|
|
3752
|
+
read_types = g.sess.scalars(select(ReadType).order_by(ReadType.code)).all()
|
|
3753
3753
|
estimated_read_type = ReadType.get_by_code(g.sess, "E")
|
|
3754
3754
|
tprs = g.sess.scalars(select(Tpr).order_by(Tpr.code))
|
|
3755
3755
|
bill = Bill.get_by_id(g.sess, bill_id)
|
|
@@ -3761,15 +3761,14 @@ def read_add_get(bill_id):
|
|
|
3761
3761
|
mpan_str = era.imp_mpan_core
|
|
3762
3762
|
msn = era.msn
|
|
3763
3763
|
|
|
3764
|
-
prev_read = (
|
|
3765
|
-
|
|
3764
|
+
prev_read = g.sess.scalars(
|
|
3765
|
+
select(RegisterRead)
|
|
3766
3766
|
.join(Bill)
|
|
3767
|
-
.
|
|
3767
|
+
.where(
|
|
3768
3768
|
Bill.supply == bill.supply, RegisterRead.present_date <= bill.finish_date
|
|
3769
3769
|
)
|
|
3770
3770
|
.order_by(RegisterRead.present_date.desc())
|
|
3771
|
-
|
|
3772
|
-
)
|
|
3771
|
+
).first()
|
|
3773
3772
|
if prev_read is not None:
|
|
3774
3773
|
previous_date = prev_read.present_date
|
|
3775
3774
|
previous_value = prev_read.present_value
|
|
@@ -33,9 +33,7 @@
|
|
|
33
33
|
</select>
|
|
34
34
|
<fieldset>
|
|
35
35
|
<legend>Previous Read</legend>
|
|
36
|
-
<
|
|
37
|
-
<label>Date</label> {{input_date('previous', previous_date)}}
|
|
38
|
-
</fieldset>
|
|
36
|
+
<label>Date</label> {{input_date('previous', previous_date)}}
|
|
39
37
|
<label>Value</label> {{input_text('previous_value', previous_value)}}
|
|
40
38
|
<label>Type</label>
|
|
41
39
|
<select name="previous_type_id">
|
|
@@ -46,10 +44,7 @@
|
|
|
46
44
|
</fieldset>
|
|
47
45
|
<fieldset>
|
|
48
46
|
<legend>Present Read</legend>
|
|
49
|
-
<
|
|
50
|
-
<label>Date</label>
|
|
51
|
-
{{input_date('present', None)}}
|
|
52
|
-
</fieldset>
|
|
47
|
+
<label>Date</label> {{input_date('present', None)}}
|
|
53
48
|
<label>Value</label> {{input_text('present_value', 0)}}
|
|
54
49
|
<label>Type</label>
|
|
55
50
|
<select name="present_type_id">
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: chellow
|
|
3
|
-
Version:
|
|
3
|
+
Version: 1727260897.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)
|
|
@@ -39,7 +39,7 @@ chellow/e/system_price.py,sha256=6w5J7bzwFAZubE2zdOFRiS8IIrVP8hkoIOaG2yCt-Ic,623
|
|
|
39
39
|
chellow/e/tlms.py,sha256=M33D6YpMixu2KkwSCzDRM3kThLgShg8exp63Obo75l8,8905
|
|
40
40
|
chellow/e/tnuos.py,sha256=XseYztPUsQXNKuBmystO2kzzwAG9ehCZgpGBTdgSk-A,4313
|
|
41
41
|
chellow/e/triad.py,sha256=lIQj7EdUrcFwEqleuHZXYU_bfzIwNOqUVVxB3NPQt4A,13710
|
|
42
|
-
chellow/e/views.py,sha256=
|
|
42
|
+
chellow/e/views.py,sha256=sXOg_V5PpZbY7Ufq2dv3NpjI8odYODQpSKdRbVz3XI4,220808
|
|
43
43
|
chellow/e/bill_parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
44
|
chellow/e/bill_parsers/activity_mop_stark_xlsx.py,sha256=UgWXDPzQkQghyj_lfgBqoSJpHB-t-qOdSaB8qY6GLog,4071
|
|
45
45
|
chellow/e/bill_parsers/annual_mop_stark_xlsx.py,sha256=-HMoIfa_utXYKA44RuC0Xqv3vd2HLeQU_4P0iBUd3WA,4219
|
|
@@ -269,7 +269,7 @@ chellow/templates/e/parties.html,sha256=gx0fhzcbiUBstkty8M11dYosRZZ4RgF6X3kdVOFS
|
|
|
269
269
|
chellow/templates/e/party.html,sha256=1Vmo6bu0NAV1wtLTn23xuLMsifL2ai3Ri1VaE-V772s,1915
|
|
270
270
|
chellow/templates/e/pc.html,sha256=p6JjmzvO_P4zumxH--E8BkZG0vYc9NNbRGOpOgkppLY,521
|
|
271
271
|
chellow/templates/e/pcs.html,sha256=k_eBu7f-dc1b5eXg7K0YpDxQpOrhIA1PV4FBJc0Zck0,560
|
|
272
|
-
chellow/templates/e/read_add.html,sha256=
|
|
272
|
+
chellow/templates/e/read_add.html,sha256=qMyvk3x8Otj1UjXB_TGeYs0lZ4ibG_nvbJI1m25hq8I,2220
|
|
273
273
|
chellow/templates/e/read_edit.html,sha256=JWnHn8Dcq3t_LUGLUV9IAMnhuacw38On7552kGn4QiU,3147
|
|
274
274
|
chellow/templates/e/read_type.html,sha256=volKteZB79famXrzN_Bgqy9JT9C4a50vXLkuZ0ObBq0,403
|
|
275
275
|
chellow/templates/e/read_types.html,sha256=CknHXNEkBnsAprqI66ftvnnMFBdR_kqI7o26rxjlrJA,473
|
|
@@ -366,6 +366,6 @@ chellow/templates/g/supply_note_edit.html,sha256=b8mB6_ucBwoljp03iy6AgVaZUhGw3-1
|
|
|
366
366
|
chellow/templates/g/supply_notes.html,sha256=6epNmZ3NKdXZz27fvmRUGeffg_oc1kmwuBeyRzQe3Rg,854
|
|
367
367
|
chellow/templates/g/unit.html,sha256=KouNVU0-i84afANkLQ_heJ0uDfJ9H5A05PuLqb8iCN8,438
|
|
368
368
|
chellow/templates/g/units.html,sha256=p5Nd-lAIboKPEOO6N451hx1bcKxMg4BDODnZ-43MmJc,441
|
|
369
|
-
chellow-
|
|
370
|
-
chellow-
|
|
371
|
-
chellow-
|
|
369
|
+
chellow-1727260897.0.0.dist-info/METADATA,sha256=Fl_5KRGl6naC3Y--RgiWnvZHPRYOvRKXfEk1usWIdKg,12204
|
|
370
|
+
chellow-1727260897.0.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
371
|
+
chellow-1727260897.0.0.dist-info/RECORD,,
|
|
File without changes
|