chellow 1755614564.0.0__tar.gz → 1759155233.0.0__tar.gz
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-1755614564.0.0 → chellow-1759155233.0.0}/PKG-INFO +2 -2
- chellow-1759155233.0.0/VERSION +1 -0
- chellow-1759155233.0.0/chellow/e/bill_importer.py +259 -0
- chellow-1759155233.0.0/chellow/e/bill_parsers/activity_mop_stark_xlsx.py +139 -0
- chellow-1759155233.0.0/chellow/e/bill_parsers/annual_mop_stark_xlsx.py +154 -0
- chellow-1759155233.0.0/chellow/e/bill_parsers/csv.py +189 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/bill_parsers/drax_edi.py +65 -88
- chellow-1759155233.0.0/chellow/e/bill_parsers/engie_edi.py +423 -0
- chellow-1759155233.0.0/chellow/e/bill_parsers/engie_xls.py +411 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/bill_parsers/haven_edi.py +189 -228
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/bill_parsers/haven_edi_tprs.py +67 -67
- chellow-1759155233.0.0/chellow/e/bill_parsers/nonsettlement_dc_stark_xlsx.py +170 -0
- chellow-1759155233.0.0/chellow/e/bill_parsers/settlement_dc_stark_xlsx.py +275 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/bill_parsers/sse_edi.py +107 -75
- chellow-1759155233.0.0/chellow/e/bill_parsers/sww_xls.py +173 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/computer.py +1 -1
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/views.py +626 -281
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/edi_lib.py +4 -27
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/models.py +92 -3
- chellow-1759155233.0.0/chellow/reports/report_111.py +746 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_247.py +96 -137
- chellow-1759155233.0.0/chellow/templates/e/dc_batch.html +138 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_batch_add.html +2 -3
- chellow-1759155233.0.0/chellow/templates/e/dc_batch_edit.html +62 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_batch_file.html +2 -3
- chellow-1759155233.0.0/chellow/templates/e/dc_batch_file_edit.html +52 -0
- chellow-1759155233.0.0/chellow/templates/e/dc_batch_upload_file.html +122 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_batches.html +2 -1
- chellow-1759155233.0.0/chellow/templates/e/dc_batches_edit.html +26 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_bill.html +27 -5
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_bill_add.html +4 -4
- chellow-1759155233.0.0/chellow/templates/e/dc_bill_edit.html +70 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_bill_import.html +1 -1
- chellow-1759155233.0.0/chellow/templates/e/dc_bill_import_contract.html +130 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_contract.html +1 -1
- chellow-1759155233.0.0/chellow/templates/e/dc_element.html +41 -0
- chellow-1759155233.0.0/chellow/templates/e/dc_element_add.html +36 -0
- chellow-1759155233.0.0/chellow/templates/e/dc_element_edit.html +49 -0
- chellow-1759155233.0.0/chellow/templates/e/dc_rate_script_edit.html +50 -0
- chellow-1759155233.0.0/chellow/templates/e/mop_batch.html +135 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_batch_add.html +2 -3
- chellow-1759155233.0.0/chellow/templates/e/mop_batch_edit.html +58 -0
- chellow-1759155233.0.0/chellow/templates/e/mop_batch_upload_file.html +122 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_batches.html +2 -1
- chellow-1759155233.0.0/chellow/templates/e/mop_batches_edit.html +26 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_bill.html +31 -8
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_bill_add.html +7 -27
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_bill_import.html +1 -1
- chellow-1759155233.0.0/chellow/templates/e/mop_bill_import_contract.html +130 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_contract.html +4 -5
- chellow-1759155233.0.0/chellow/templates/e/mop_element.html +41 -0
- chellow-1759155233.0.0/chellow/templates/e/mop_element_add.html +36 -0
- chellow-1759155233.0.0/chellow/templates/e/mop_element_edit.html +49 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_batch.html +3 -7
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_batch_add.html +2 -2
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_batch_edit.html +1 -1
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_batch_file.html +3 -5
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_batch_file_add.html +18 -11
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_batch_upload_file.html +83 -9
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_batches.html +4 -4
- chellow-1759155233.0.0/chellow/templates/e/supplier_batches_edit.html +26 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_bill.html +29 -6
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_bill_add.html +3 -3
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_bill_import.html +1 -1
- chellow-1759155233.0.0/chellow/templates/e/supplier_bill_import_contract.html +118 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_contract.html +1 -1
- chellow-1759155233.0.0/chellow/templates/e/supplier_element.html +45 -0
- chellow-1759155233.0.0/chellow/templates/e/supplier_element_add.html +36 -0
- chellow-1759155233.0.0/chellow/templates/e/supplier_element_edit.html +51 -0
- chellow-1759155233.0.0/chellow/templates/report_run_bill_check.html +157 -0
- chellow-1759155233.0.0/chellow/templates/report_run_row_bill_check.html +302 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/views.py +55 -65
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/pyproject.toml +8 -1
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/bill_parsers/test_activity_mop_stark_xlsx.py +5 -2
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/bill_parsers/test_annual_mop_stark_xlsx.py +14 -4
- chellow-1759155233.0.0/test/e/bill_parsers/test_bill_parser_csv.py +244 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/bill_parsers/test_bill_parser_drax_edi.py +54 -17
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/bill_parsers/test_bill_parser_engie_edi.py +179 -138
- chellow-1759155233.0.0/test/e/bill_parsers/test_bill_parser_engie_xls.py +330 -0
- chellow-1759155233.0.0/test/e/bill_parsers/test_bill_parser_haven_edi.py +1019 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/bill_parsers/test_bill_parser_haven_edi_tprs.py +74 -9
- chellow-1759155233.0.0/test/e/bill_parsers/test_bill_parser_nonsettlement_dc_stark_xlsx.py +267 -0
- chellow-1759155233.0.0/test/e/bill_parsers/test_bill_parser_settlement_dc_stark_xlsx.py +748 -0
- chellow-1759155233.0.0/test/e/bill_parsers/test_bill_parser_sse_edi.py +238 -0
- chellow-1759155233.0.0/test/e/bill_parsers/test_bill_parser_sww_xls.py +298 -0
- chellow-1759155233.0.0/test/e/test_bill_importer.py +292 -0
- chellow-1755614564.0.0/test/e/test_e_views.py → chellow-1759155233.0.0/test/e/test_views.py +716 -115
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_111.py +330 -46
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_247.py +85 -22
- chellow-1759155233.0.0/test/reports/test_report_dno_vl_parser.py +0 -0
- chellow-1759155233.0.0/test/test_edi_lib.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/test_views.py +29 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/utils.py +1 -1
- chellow-1755614564.0.0/VERSION +0 -1
- chellow-1755614564.0.0/chellow/e/bill_importer.py +0 -203
- chellow-1755614564.0.0/chellow/e/bill_parsers/activity_mop_stark_xlsx.py +0 -126
- chellow-1755614564.0.0/chellow/e/bill_parsers/annual_mop_stark_xlsx.py +0 -137
- chellow-1755614564.0.0/chellow/e/bill_parsers/csv.py +0 -151
- chellow-1755614564.0.0/chellow/e/bill_parsers/drax_element_edi.py +0 -459
- chellow-1755614564.0.0/chellow/e/bill_parsers/engie_edi.py +0 -491
- chellow-1755614564.0.0/chellow/e/bill_parsers/engie_xls.py +0 -425
- chellow-1755614564.0.0/chellow/e/bill_parsers/nonsettlement_dc_stark_xlsx.py +0 -161
- chellow-1755614564.0.0/chellow/e/bill_parsers/settlement_dc_stark_xlsx.py +0 -172
- chellow-1755614564.0.0/chellow/e/bill_parsers/sww_xls.py +0 -186
- chellow-1755614564.0.0/chellow/reports/report_111.py +0 -884
- chellow-1755614564.0.0/chellow/templates/e/dc_batch.html +0 -185
- chellow-1755614564.0.0/chellow/templates/e/dc_batch_edit.html +0 -66
- chellow-1755614564.0.0/chellow/templates/e/dc_batch_file_edit.html +0 -64
- chellow-1755614564.0.0/chellow/templates/e/dc_batch_upload_file.html +0 -54
- chellow-1755614564.0.0/chellow/templates/e/dc_bill_edit.html +0 -90
- chellow-1755614564.0.0/chellow/templates/e/dc_rate_script_edit.html +0 -66
- chellow-1755614564.0.0/chellow/templates/e/mop_batch.html +0 -182
- chellow-1755614564.0.0/chellow/templates/e/mop_batch_edit.html +0 -66
- chellow-1755614564.0.0/chellow/templates/e/mop_batch_upload_file.html +0 -56
- chellow-1755614564.0.0/chellow/templates/e/supplier_bill_imports.html +0 -421
- chellow-1755614564.0.0/chellow/templates/report_run_bill_check.html +0 -199
- chellow-1755614564.0.0/chellow/templates/report_run_row_bill_check.html +0 -299
- chellow-1755614564.0.0/setup.cfg +0 -6
- chellow-1755614564.0.0/test/e/bill_parsers/test_bill_parser_csv.py +0 -119
- chellow-1755614564.0.0/test/e/bill_parsers/test_bill_parser_engie_xls.py +0 -179
- chellow-1755614564.0.0/test/e/bill_parsers/test_bill_parser_haven_edi.py +0 -541
- chellow-1755614564.0.0/test/e/bill_parsers/test_bill_parser_nonsettlement_dc_stark_xlsx/bills.nonsettlement.dc.stark.xlsx +0 -0
- chellow-1755614564.0.0/test/e/bill_parsers/test_bill_parser_nonsettlement_dc_stark_xlsx/bills_old.nonsettlement.dc.stark.xlsx +0 -0
- chellow-1755614564.0.0/test/e/bill_parsers/test_bill_parser_nonsettlement_dc_stark_xlsx/test_bill_parser_nonsettlement_dc_stark_xlsx.py +0 -126
- chellow-1755614564.0.0/test/e/bill_parsers/test_bill_parser_settlement_dc_stark_xlsx.py +0 -211
- chellow-1755614564.0.0/test/e/bill_parsers/test_bill_parser_sse_edi.py +0 -134
- chellow-1755614564.0.0/test/e/bill_parsers/test_bill_parser_sww_xls.py +0 -139
- chellow-1755614564.0.0/test/e/bill_parsers/test_parser_drax_elements_edit.py +0 -400
- chellow-1755614564.0.0/test/e/test_bill_importer.py +0 -30
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/.ebextensions/chellow.config +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/.github/workflows/chellow.yml +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/.gitignore +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/README.md +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/application.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/bin/chellow_service_monitor.sh +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/bin/chellow_start.sh +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/__init__.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/api.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/bank_holidays.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/commands.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/dloads.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/__init__.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/aahedc.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/bill_parsers/__init__.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/bill_parsers/bgb_edi.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/bill_parsers/edf_export_xlsx.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/bill_parsers/engie_export_xlsx.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/bill_parsers/engie_xlsx.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/bill_parsers/gdf_csv.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/bill_parsers/haven_csv.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/bill_parsers/mm.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/bmarketidx.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/bsuos.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/ccl.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/cfd.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/dno_rate_parser.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/duos.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/elexon.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/energy_management.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/hh_importer.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/hh_parser_bg_csv.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/hh_parser_df2.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/hh_parser_edf_csv.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/hh_parser_schneider_csv.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/hh_parser_schneider_xlsx.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/hh_parser_simple_csv.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/hh_parser_vital_xlsx.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/lafs.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/lcc.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/mdd_importer.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/rcrc.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/ro.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/scenario.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/system_price.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/tlms.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/tnuos.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/e/triad.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/fake_batch_updater.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/gas/bill_import.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/gas/bill_parser_bgs_xlsx.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/gas/bill_parser_csv.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/gas/bill_parser_engie_edi.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/gas/bill_parser_total_edi.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/gas/ccl.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/gas/cv.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/gas/dn_rate_parser.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/gas/engine.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/gas/transportation.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/gas/views.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/general_import.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/national_grid.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/proxy.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/rate_server.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/__init__.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_109.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_169.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_181.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_183.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_187.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_219.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_231.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_233.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_241.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_29.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_291.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_33.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_387.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_41.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_429.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_59.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_81.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_87.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_asset_comparison.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_batches.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_bills.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_csv_llfcs.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_csv_site_hh_data.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_csv_site_snags.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_ecoes_comparison.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_g_monthly_duration.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_g_supplies_snapshot.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_g_supply_virtual_bill.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_g_virtual_bills.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_g_virtual_bills_hh.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_missing_bills.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_sscs.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/reports/report_supply_contacts.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/rrun.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/static/css/chellow.css +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/static/images/favicon.svg +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/static/images/favicon_test.svg +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/static/images/logo.png +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/static/js/htmx.min.js +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/403.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/base.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/bill_type.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/bill_types.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/chain.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/csv_sites_monthly_duration.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/dashboard.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/downloads.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/asset_comparison.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/channel.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/channel_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/channel_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/channel_snag.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/channel_snag_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/channel_snags.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/comm.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/comms.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/cop.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/cops.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/csv_bills.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/csv_register_reads.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/csv_sites_hh_data.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/csv_sites_triad.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/csv_supplies_hh_data.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/csv_supplies_snapshot.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/csv_supplies_triad.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_auto_importer.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_bill_imports.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_contract_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_contract_hh_import.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_contract_hh_imports.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_contract_properties.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_contract_properties_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_contracts.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_contracts_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_rate_script.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dc_rate_script_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dno.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dno_rate_script.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dno_rate_script_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dno_rate_script_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dnos.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dtc_meter_type.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/dtc_meter_types.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/duration_report.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/elexon.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/em_hh_data.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/em_months.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/em_site.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/em_totals.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/energisation_status.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/energisation_statuses.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/era_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/era_edit_form.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/era_supplier_bill_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/generator_type.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/generator_types.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/gsp_group.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/gsp_groups.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/hh_datum_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/lafs.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/lcc.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/llfc.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/llfc_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/llfcs.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/market_role.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/market_roles.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/meter_payment_type.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/meter_payment_types.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/meter_type.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/meter_types.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_batch_file.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_batch_file_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_bill_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_bill_imports.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_contract_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_contract_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_contracts.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_rate_script.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_rate_script_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mop_rate_script_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mtc.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mtc_llfc.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mtc_llfc_ssc.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mtc_llfc_ssc_pc.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mtc_llfc_ssc_pcs.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mtc_llfc_sscs.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mtc_llfcs.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mtc_participant.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mtc_participants.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mtc_ssc.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mtc_sscs.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/mtcs.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/ods_monthly_duration.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/participant.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/participants.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/parties.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/party.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/pc.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/pcs.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/read_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/read_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/read_type.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/read_types.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/scenario.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/scenario_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/scenario_docs.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/scenario_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/scenarios.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/site_add_e_supply.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/site_add_e_supply_form.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/site_hh_data.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/site_site_snags.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/site_snag.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/site_snag_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/site_snags.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/site_snags_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/source.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/sources.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/ssc.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/sscs.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_batch_file_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_bill_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_contract_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_contract_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_contracts.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_rate_script.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_rate_script_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supplier_rate_script_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supply.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supply_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supply_eras.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supply_hh_data.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supply_months.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supply_note_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supply_note_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supply_notes.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supply_post.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/supply_virtual_bill.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/tpr.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/e/tprs.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/edi_viewer.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/fake_batch_updater.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/batch.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/batch_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/batch_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/batches.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/bill.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/bill_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/bill_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/bill_import.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/bill_imports.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/dn.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/dns.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/era_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/exit_zone.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/industry_auto_importer.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/industry_contract.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/industry_contract_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/industry_contract_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/industry_contracts.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/industry_rate_script.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/industry_rate_script_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/industry_rate_script_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/ldz.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/read_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/read_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/read_type.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/read_types.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/reading_frequencies.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/reading_frequency.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/reports.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/supplier_contract.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/supplier_contract_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/supplier_contract_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/supplier_contracts.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/supplier_rate_script.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/supplier_rate_script_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/supplier_rate_script_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/supplies.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/supply.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/supply_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/supply_note_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/supply_note_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/supply_notes.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/unit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/g/units.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/general_import.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/general_imports.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/home.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/input_date.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/local_report.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/local_reports.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/macros.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/national_grid.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/non_core_auto_importer.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/non_core_contract.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/non_core_contract_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/non_core_contracts.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/non_core_rate_script.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/non_core_rate_script_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/non_core_rate_script_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/object_summary.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/rate_server.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/report_run.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/report_run_asset_comparison.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/report_run_ecoes_comparison.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/report_run_g_bill_check.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/report_run_missing_e_bills.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/report_run_monthly_duration_org.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/report_run_row.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/report_run_row_g_bill_check.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/report_run_supply_contacts.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/report_runs.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/scenario.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/scenario_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/scenario_docs.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/scenario_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/scenarios.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/site.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/site_add.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/site_edit.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/site_gen_graph.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/site_months.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/site_used_graph.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/sites.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/supplies.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/system.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/tester.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/user.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/user_roles.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/templates/users.html +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/testing.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/chellow/utils.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/gpl.txt +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/requirements.txt +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/systemd/chellow.service +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/systemd/chellow_upgrader.service +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/systemd/chellow_upgrader.timer +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/conftest.py +0 -0
- /chellow-1755614564.0.0/test/reports/test_report_dno_vl_parser.py → /chellow-1759155233.0.0/test/e/__init__.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/bill_parsers/test_bill_parser_edf_export_xlsx.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/bill_parsers/test_bill_parser_engie_xlsx.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/bill_parsers/test_bill_parser_haven_csv.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/bill_parsers/test_bill_parser_mm.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/system_price/prices.xls +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/system_price/test_system_price.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_aahedc.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_bsuos.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_ccl.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_cfd.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_computer.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_dno_rate_parser.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_duos.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_energy_management.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_hh_importer.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_hh_parser_df2.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_hh_parser_vital_xlsx.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_lafs.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_mdd_importer.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_rcrc_importer.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_ro.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_scenario.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_tlms.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_tnuos.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/e/test_triad.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/gas/bill_parsers/test_bill_parser_bgs_xlsx.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/gas/bill_parsers/test_g_bill_parser_engie_edi.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/gas/bill_parsers/test_g_bill_parser_total_edi.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/gas/test_dn_rate_parser.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/gas/test_engine.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/gas/test_g_cv.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/gas/test_gas_views.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/gas/test_transportation.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_g_monthly_duration.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_g_supplies_snapshot.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_g_supply_virtual_bill.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_g_virtual_bills.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_g_virtual_bills_hh.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_109.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_169.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_181.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_183.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_187.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_219.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_231.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_233.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_241.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_29.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_291.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_33.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_387.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_41.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_429.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_59.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_81.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_87.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_asset_comparison.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_batches.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_bills.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_csv_llfcs.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_csv_site_hh_data.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_csv_site_snags.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_ecoes_comparison.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_missing_e_bills.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_sscs.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/reports/test_report_supply_contacts.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/test_chellow.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/test_dloads.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/test_edi_viewer.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/test_fake_batch_updater.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/test_general_import.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/test_models.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/test_rate_server.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/test_testing.py +0 -0
- {chellow-1755614564.0.0 → chellow-1759155233.0.0}/test/test_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: chellow
|
|
3
|
-
Version:
|
|
3
|
+
Version: 1759155233.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)
|
|
@@ -18,7 +18,7 @@ Requires-Dist: pg8000==1.31.1
|
|
|
18
18
|
Requires-Dist: pip>=9.0.1
|
|
19
19
|
Requires-Dist: psutil==5.9.5
|
|
20
20
|
Requires-Dist: pympler==1.0.1
|
|
21
|
-
Requires-Dist: pypdf==
|
|
21
|
+
Requires-Dist: pypdf==6.0.0
|
|
22
22
|
Requires-Dist: python-dateutil==2.8.2
|
|
23
23
|
Requires-Dist: pytz==2022.6
|
|
24
24
|
Requires-Dist: requests==2.32.4
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1759155233.0.0"
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
import collections
|
|
2
|
+
import importlib
|
|
3
|
+
import threading
|
|
4
|
+
import traceback
|
|
5
|
+
from io import BytesIO
|
|
6
|
+
from pkgutil import iter_modules
|
|
7
|
+
|
|
8
|
+
from sqlalchemy import select
|
|
9
|
+
|
|
10
|
+
from werkzeug.exceptions import BadRequest
|
|
11
|
+
|
|
12
|
+
import chellow
|
|
13
|
+
import chellow.e.bill_parsers.engie_xls
|
|
14
|
+
from chellow.models import (
|
|
15
|
+
Batch,
|
|
16
|
+
BatchFile,
|
|
17
|
+
BillType,
|
|
18
|
+
Contract,
|
|
19
|
+
ReadType,
|
|
20
|
+
Session,
|
|
21
|
+
Supply,
|
|
22
|
+
Tpr,
|
|
23
|
+
)
|
|
24
|
+
from chellow.utils import ct_datetime_now, keydefaultdict
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
import_id = 0
|
|
28
|
+
import_lock = threading.Lock()
|
|
29
|
+
imports = {}
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def find_parser_names():
|
|
33
|
+
return [name for _, name, _ in iter_modules(chellow.e.bill_parsers.__path__)]
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
class BillImport(threading.Thread):
|
|
37
|
+
def __init__(self, batch_contract, now=None):
|
|
38
|
+
threading.Thread.__init__(self)
|
|
39
|
+
global import_id
|
|
40
|
+
self.import_id = import_id
|
|
41
|
+
import_id += 1
|
|
42
|
+
|
|
43
|
+
if isinstance(batch_contract, Batch):
|
|
44
|
+
self.contract_id = None
|
|
45
|
+
self.batch_id = batch_contract.id
|
|
46
|
+
elif isinstance(batch_contract, Contract):
|
|
47
|
+
self.contract_id = batch_contract.id
|
|
48
|
+
self.batch_id = None
|
|
49
|
+
else:
|
|
50
|
+
raise BadRequest("batch_contract must be a Batch or Contract.")
|
|
51
|
+
self.successful_bills = []
|
|
52
|
+
self.failed_bills = []
|
|
53
|
+
self.log = collections.deque()
|
|
54
|
+
self.bill_num = None
|
|
55
|
+
self.parser = None
|
|
56
|
+
self.now = now
|
|
57
|
+
|
|
58
|
+
def _log(self, msg):
|
|
59
|
+
with import_lock:
|
|
60
|
+
ts = ct_datetime_now() if self.now is None else self.now
|
|
61
|
+
self.log.appendleft(f"{ts.strftime('%Y-%m-%d %H:%M:%S')} - {msg}")
|
|
62
|
+
|
|
63
|
+
def status(self):
|
|
64
|
+
if self.is_alive():
|
|
65
|
+
if self.bill_num is not None:
|
|
66
|
+
return f"Inserting raw bills: I've reached bill number {self.bill_num}."
|
|
67
|
+
elif self.parser is not None:
|
|
68
|
+
return (
|
|
69
|
+
f"Parsing file: I've reached line number {self.parser.line_number}."
|
|
70
|
+
)
|
|
71
|
+
else:
|
|
72
|
+
return "Running"
|
|
73
|
+
else:
|
|
74
|
+
return "Not running"
|
|
75
|
+
|
|
76
|
+
def run(self):
|
|
77
|
+
try:
|
|
78
|
+
batch_ids = []
|
|
79
|
+
with Session() as sess:
|
|
80
|
+
batch_q = select(Batch).order_by(Batch.reference)
|
|
81
|
+
if self.batch_id is not None:
|
|
82
|
+
batch = Batch.get_by_id(sess, self.batch_id)
|
|
83
|
+
batch_q = batch_q.where(Batch.id == self.batch_id)
|
|
84
|
+
elif self.contract_id is not None:
|
|
85
|
+
contract = Contract.get_by_id(sess, self.contract_id)
|
|
86
|
+
batch_q = batch_q.where(Batch.contract == contract)
|
|
87
|
+
for batch in sess.scalars(batch_q):
|
|
88
|
+
batch_ids.append(batch.id)
|
|
89
|
+
|
|
90
|
+
for batch_id in batch_ids:
|
|
91
|
+
with Session() as sess:
|
|
92
|
+
batch = Batch.get_by_id(sess, batch_id)
|
|
93
|
+
self._log(f"Importing bills from batch {batch.reference}.")
|
|
94
|
+
bf_q = (
|
|
95
|
+
select(BatchFile)
|
|
96
|
+
.where(BatchFile.batch == batch)
|
|
97
|
+
.order_by(BatchFile.upload_timestamp)
|
|
98
|
+
)
|
|
99
|
+
bill_types = keydefaultdict(lambda k: BillType.get_by_code(sess, k))
|
|
100
|
+
|
|
101
|
+
tprs = keydefaultdict(
|
|
102
|
+
lambda k: None if k is None else Tpr.get_by_code(sess, k)
|
|
103
|
+
)
|
|
104
|
+
|
|
105
|
+
read_types = keydefaultdict(lambda k: ReadType.get_by_code(sess, k))
|
|
106
|
+
|
|
107
|
+
for bf in sess.scalars(bf_q):
|
|
108
|
+
self.parser = _process_batch_file(sess, bf, self._log)
|
|
109
|
+
for self.bill_num, raw_bill in enumerate(
|
|
110
|
+
self.parser.make_raw_bills()
|
|
111
|
+
):
|
|
112
|
+
batch = bf.batch
|
|
113
|
+
sum_elem = sum(el["net"] for el in raw_bill["elements"])
|
|
114
|
+
raw_bill_net = raw_bill["net"]
|
|
115
|
+
if sum_elem != raw_bill_net:
|
|
116
|
+
raw_bill["error"] = (
|
|
117
|
+
f"The sum of the elements' net {sum_elem} doesn't "
|
|
118
|
+
f"equal the bill net {raw_bill_net}."
|
|
119
|
+
)
|
|
120
|
+
if "error" in raw_bill:
|
|
121
|
+
self.failed_bills.append(raw_bill)
|
|
122
|
+
else:
|
|
123
|
+
try:
|
|
124
|
+
mpan_core = raw_bill["mpan_core"]
|
|
125
|
+
supply = Supply.get_by_mpan_core(sess, mpan_core)
|
|
126
|
+
with sess.begin_nested():
|
|
127
|
+
bill = batch.insert_bill(
|
|
128
|
+
sess,
|
|
129
|
+
raw_bill["account"],
|
|
130
|
+
raw_bill["reference"],
|
|
131
|
+
raw_bill["issue_date"],
|
|
132
|
+
raw_bill["start_date"],
|
|
133
|
+
raw_bill["finish_date"],
|
|
134
|
+
raw_bill["kwh"],
|
|
135
|
+
raw_bill_net,
|
|
136
|
+
raw_bill["vat"],
|
|
137
|
+
raw_bill["gross"],
|
|
138
|
+
bill_types[raw_bill["bill_type_code"]],
|
|
139
|
+
raw_bill["breakdown"],
|
|
140
|
+
supply,
|
|
141
|
+
)
|
|
142
|
+
for raw_element in raw_bill["elements"]:
|
|
143
|
+
bill.insert_element(
|
|
144
|
+
sess,
|
|
145
|
+
raw_element["name"],
|
|
146
|
+
raw_element["start_date"],
|
|
147
|
+
raw_element["finish_date"],
|
|
148
|
+
raw_element["net"],
|
|
149
|
+
raw_element["breakdown"],
|
|
150
|
+
)
|
|
151
|
+
for raw_read in raw_bill["reads"]:
|
|
152
|
+
bill.insert_read(
|
|
153
|
+
sess,
|
|
154
|
+
tprs[raw_read["tpr_code"]],
|
|
155
|
+
raw_read["coefficient"],
|
|
156
|
+
raw_read["units"],
|
|
157
|
+
raw_read["msn"],
|
|
158
|
+
raw_read["mpan"],
|
|
159
|
+
raw_read["prev_date"],
|
|
160
|
+
raw_read["prev_value"],
|
|
161
|
+
read_types[raw_read["prev_type_code"]],
|
|
162
|
+
raw_read["pres_date"],
|
|
163
|
+
raw_read["pres_value"],
|
|
164
|
+
read_types[raw_read["pres_type_code"]],
|
|
165
|
+
)
|
|
166
|
+
self.successful_bills.append(raw_bill)
|
|
167
|
+
except KeyError as e:
|
|
168
|
+
err = raw_bill.get("error", "")
|
|
169
|
+
raw_bill["error"] = err + " " + str(e)
|
|
170
|
+
self.failed_bills.append(raw_bill)
|
|
171
|
+
except BadRequest as e:
|
|
172
|
+
raw_bill["error"] = str(e.description)
|
|
173
|
+
self.failed_bills.append(raw_bill)
|
|
174
|
+
|
|
175
|
+
if len(self.failed_bills) == 0:
|
|
176
|
+
sess.commit()
|
|
177
|
+
self._log(
|
|
178
|
+
"All the bills have been successfully loaded and attached "
|
|
179
|
+
"to the batch."
|
|
180
|
+
)
|
|
181
|
+
else:
|
|
182
|
+
sess.rollback()
|
|
183
|
+
self._log(
|
|
184
|
+
f"The import has finished, but there were "
|
|
185
|
+
f"{len(self.failed_bills)} "
|
|
186
|
+
f"failures, and so the whole import has been rolled back."
|
|
187
|
+
)
|
|
188
|
+
break
|
|
189
|
+
|
|
190
|
+
except BadRequest as e:
|
|
191
|
+
msg = f"Problem: {e.description}"
|
|
192
|
+
if e.__cause__ is not None:
|
|
193
|
+
msg += f" {traceback.format_exc()}"
|
|
194
|
+
self._log(msg)
|
|
195
|
+
except BaseException:
|
|
196
|
+
self._log(f"I've encountered a problem: {traceback.format_exc()}")
|
|
197
|
+
|
|
198
|
+
def make_fields(self):
|
|
199
|
+
with import_lock:
|
|
200
|
+
fields = {
|
|
201
|
+
"log": tuple(self.log),
|
|
202
|
+
"is_alive": self.is_alive(),
|
|
203
|
+
"importer_id": self.import_id,
|
|
204
|
+
}
|
|
205
|
+
if not self.is_alive():
|
|
206
|
+
fields["successful_bills"] = self.successful_bills
|
|
207
|
+
fields["failed_bills"] = self.failed_bills
|
|
208
|
+
return fields
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
def _process_batch_file(sess, batch_file, log_f):
|
|
212
|
+
data = batch_file.data
|
|
213
|
+
parser_name = batch_file.parser_name
|
|
214
|
+
|
|
215
|
+
if len(data) == 0:
|
|
216
|
+
raise BadRequest("File has zero length")
|
|
217
|
+
|
|
218
|
+
try:
|
|
219
|
+
imp_mod = importlib.import_module(f"chellow.e.bill_parsers.{parser_name}")
|
|
220
|
+
except ImportError:
|
|
221
|
+
raise BadRequest(f"Can't find a parser with the name '{parser_name}'.")
|
|
222
|
+
|
|
223
|
+
parser = imp_mod.Parser(BytesIO(data))
|
|
224
|
+
log_f(f"Starting to parse the file {batch_file.filename} with '{parser_name}'.")
|
|
225
|
+
|
|
226
|
+
return parser
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
def start_bill_import(batch):
|
|
230
|
+
with import_lock:
|
|
231
|
+
bi = BillImport(batch)
|
|
232
|
+
imports[bi.import_id] = bi
|
|
233
|
+
bi.start()
|
|
234
|
+
|
|
235
|
+
return bi.import_id
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
def start_bill_import_contract(contract):
|
|
239
|
+
with import_lock:
|
|
240
|
+
bi = BillImport(contract)
|
|
241
|
+
imports[bi.import_id] = bi
|
|
242
|
+
bi.start()
|
|
243
|
+
|
|
244
|
+
return bi.import_id
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
def get_bill_import_ids(batch):
|
|
248
|
+
with import_lock:
|
|
249
|
+
return [k for k, v in imports.items() if v.batch_id == batch.id]
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
def get_bill_import_ids_contract(contract):
|
|
253
|
+
with import_lock:
|
|
254
|
+
return [k for k, v in imports.items() if v.contract_id == contract.id]
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
def get_bill_import(id):
|
|
258
|
+
with import_lock:
|
|
259
|
+
return imports[id]
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
from datetime import datetime as Datetime
|
|
2
|
+
from decimal import Decimal, InvalidOperation
|
|
3
|
+
|
|
4
|
+
from openpyxl import load_workbook
|
|
5
|
+
|
|
6
|
+
from werkzeug.exceptions import BadRequest
|
|
7
|
+
|
|
8
|
+
from chellow.utils import parse_mpan_core, to_ct, to_utc
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def get_cell(sheet, col, row):
|
|
12
|
+
try:
|
|
13
|
+
coordinates = f"{col}{row}"
|
|
14
|
+
return sheet[coordinates]
|
|
15
|
+
except IndexError:
|
|
16
|
+
raise BadRequest(f"Can't find the cell {coordinates} on sheet {sheet}.")
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def get_int(sheet, col, row):
|
|
20
|
+
return int(get_cell(sheet, col, row).value)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def get_dec(sheet, col, row):
|
|
24
|
+
cell = get_cell(sheet, col, row)
|
|
25
|
+
try:
|
|
26
|
+
return Decimal(str(cell.value))
|
|
27
|
+
except InvalidOperation as e:
|
|
28
|
+
raise BadRequest(f"Problem parsing the number at {cell.coordinate}. {e}")
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def get_str(sheet, col, row):
|
|
32
|
+
return get_cell(sheet, col, row).value.strip()
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
def get_ct_date(sheet, col, row):
|
|
36
|
+
cell = get_cell(sheet, col, row)
|
|
37
|
+
val = cell.value
|
|
38
|
+
if isinstance(val, Datetime):
|
|
39
|
+
dt = val
|
|
40
|
+
elif isinstance(val, str):
|
|
41
|
+
dt = Datetime.strptime(val, "dd/mm/yyyy")
|
|
42
|
+
else:
|
|
43
|
+
raise BadRequest(
|
|
44
|
+
f"The value {val} at {cell.coordinate} is of type {type(val)}, but "
|
|
45
|
+
f"expected a timestamp or string."
|
|
46
|
+
)
|
|
47
|
+
return to_ct(dt)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
def _process_row(issue_date, sheet, row):
|
|
51
|
+
mpan_core = parse_mpan_core(str(get_int(sheet, "B", row)))
|
|
52
|
+
|
|
53
|
+
start_date = finish_date = to_utc(get_ct_date(sheet, "F", row))
|
|
54
|
+
activity_name_raw = get_str(sheet, "G", row)
|
|
55
|
+
activity_name = activity_name_raw.lower().replace(" ", "_")
|
|
56
|
+
|
|
57
|
+
net_dec = get_dec(sheet, "I", row)
|
|
58
|
+
net = round(net_dec, 2)
|
|
59
|
+
|
|
60
|
+
vat_dec = get_dec(sheet, "J", row)
|
|
61
|
+
vat = round(vat_dec, 2)
|
|
62
|
+
|
|
63
|
+
gross_dec = get_dec(sheet, "K", row)
|
|
64
|
+
gross = round(gross_dec, 2)
|
|
65
|
+
|
|
66
|
+
breakdown = {
|
|
67
|
+
"raw-lines": [],
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
return {
|
|
71
|
+
"bill_type_code": "N",
|
|
72
|
+
"kwh": Decimal(0),
|
|
73
|
+
"vat": vat,
|
|
74
|
+
"net": net,
|
|
75
|
+
"gross": gross,
|
|
76
|
+
"reads": [],
|
|
77
|
+
"breakdown": breakdown,
|
|
78
|
+
"account": mpan_core,
|
|
79
|
+
"issue_date": issue_date,
|
|
80
|
+
"start_date": start_date,
|
|
81
|
+
"finish_date": finish_date,
|
|
82
|
+
"mpan_core": mpan_core,
|
|
83
|
+
"reference": "_".join(
|
|
84
|
+
(
|
|
85
|
+
start_date.strftime("%Y%m%d"),
|
|
86
|
+
finish_date.strftime("%Y%m%d"),
|
|
87
|
+
issue_date.strftime("%Y%m%d"),
|
|
88
|
+
mpan_core,
|
|
89
|
+
)
|
|
90
|
+
),
|
|
91
|
+
"elements": [
|
|
92
|
+
{
|
|
93
|
+
"name": "activity",
|
|
94
|
+
"start_date": start_date,
|
|
95
|
+
"finish_date": finish_date,
|
|
96
|
+
"net": net,
|
|
97
|
+
"breakdown": {"name": {activity_name}},
|
|
98
|
+
}
|
|
99
|
+
],
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
class Parser:
|
|
104
|
+
def __init__(self, f):
|
|
105
|
+
self.book = load_workbook(f, data_only=True)
|
|
106
|
+
self.sheet = self.book.worksheets[1]
|
|
107
|
+
|
|
108
|
+
self.last_line = None
|
|
109
|
+
self._line_number = None
|
|
110
|
+
self._title_line = None
|
|
111
|
+
|
|
112
|
+
@property
|
|
113
|
+
def line_number(self):
|
|
114
|
+
return None if self._line_number is None else self._line_number + 1
|
|
115
|
+
|
|
116
|
+
def _set_last_line(self, i, line):
|
|
117
|
+
self._line_numer = i
|
|
118
|
+
self.last_line = line
|
|
119
|
+
if i == 0:
|
|
120
|
+
self._title_line = line
|
|
121
|
+
return line
|
|
122
|
+
|
|
123
|
+
def make_raw_bills(self):
|
|
124
|
+
try:
|
|
125
|
+
bills = []
|
|
126
|
+
issue_date = to_utc(get_ct_date(self.sheet, "C", 6))
|
|
127
|
+
for row in range(12, len(self.sheet["A"]) + 1):
|
|
128
|
+
val = get_cell(self.sheet, "B", row).value
|
|
129
|
+
if val is None or val == "":
|
|
130
|
+
break
|
|
131
|
+
self._set_last_line(row, val)
|
|
132
|
+
|
|
133
|
+
bill = _process_row(issue_date, self.sheet, row)
|
|
134
|
+
bills.append(bill)
|
|
135
|
+
|
|
136
|
+
except BadRequest as e:
|
|
137
|
+
raise BadRequest(f"Row number: {row} {e.description}")
|
|
138
|
+
|
|
139
|
+
return bills
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
from datetime import datetime as Datetime
|
|
2
|
+
from decimal import Decimal, InvalidOperation
|
|
3
|
+
|
|
4
|
+
from dateutil.relativedelta import relativedelta
|
|
5
|
+
|
|
6
|
+
from openpyxl import load_workbook
|
|
7
|
+
|
|
8
|
+
from werkzeug.exceptions import BadRequest
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
from chellow.utils import parse_mpan_core, to_ct, to_utc
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
def get_ct_date(row, idx):
|
|
15
|
+
cell = get_cell(row, idx)
|
|
16
|
+
val = cell.value
|
|
17
|
+
if isinstance(val, Datetime):
|
|
18
|
+
dt = val
|
|
19
|
+
elif isinstance(val, str):
|
|
20
|
+
dt = Datetime.strptime(val, "dd/mm/yyyy")
|
|
21
|
+
else:
|
|
22
|
+
raise BadRequest(
|
|
23
|
+
f"The value {val} at {cell.coordinate} is of type {type(val)}, but "
|
|
24
|
+
f"expected a timestamp or string."
|
|
25
|
+
)
|
|
26
|
+
return to_ct(dt)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def get_cell(row, idx):
|
|
30
|
+
try:
|
|
31
|
+
return row[idx]
|
|
32
|
+
except IndexError:
|
|
33
|
+
raise BadRequest(
|
|
34
|
+
f"For the row {row}, the index is {idx} which is beyond the end of the row."
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
def get_str(row, idx):
|
|
39
|
+
return get_cell(row, idx).value.strip()
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def get_dec(row, idx):
|
|
43
|
+
cell = get_cell(row, idx)
|
|
44
|
+
try:
|
|
45
|
+
return Decimal(str(cell.value))
|
|
46
|
+
except InvalidOperation as e:
|
|
47
|
+
raise BadRequest(f"Problem parsing the number at {cell.coordinate}. {e}")
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
def get_int(row, idx):
|
|
51
|
+
return int(get_cell(row, idx).value)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
def _process_row(issue_date, row):
|
|
55
|
+
|
|
56
|
+
mpan_core = parse_mpan_core(str(get_int(row, 1)))
|
|
57
|
+
comm = get_str(row, 2)
|
|
58
|
+
|
|
59
|
+
settled_str = get_str(row, 3)
|
|
60
|
+
if settled_str == "Settled":
|
|
61
|
+
settlement_status = "settlement"
|
|
62
|
+
else:
|
|
63
|
+
settlement_status = "non_settlement"
|
|
64
|
+
|
|
65
|
+
start_date_ct = get_ct_date(row, 5)
|
|
66
|
+
finish_date_ct = get_ct_date(row, 6)
|
|
67
|
+
days = (finish_date_ct - start_date_ct).days + 1
|
|
68
|
+
|
|
69
|
+
start_date = to_utc(start_date_ct)
|
|
70
|
+
finish_date = to_utc(finish_date_ct + relativedelta(hours=23, minutes=30))
|
|
71
|
+
|
|
72
|
+
meter_rate = get_dec(row, 7)
|
|
73
|
+
net = round(get_dec(row, 8), 2)
|
|
74
|
+
vat = round(get_dec(row, 9), 2)
|
|
75
|
+
gross = round(get_dec(row, 10), 2)
|
|
76
|
+
|
|
77
|
+
breakdown = {
|
|
78
|
+
"raw-lines": [],
|
|
79
|
+
}
|
|
80
|
+
return {
|
|
81
|
+
"bill_type_code": "N",
|
|
82
|
+
"kwh": Decimal(0),
|
|
83
|
+
"net": net,
|
|
84
|
+
"vat": vat,
|
|
85
|
+
"gross": gross,
|
|
86
|
+
"reads": [],
|
|
87
|
+
"breakdown": breakdown,
|
|
88
|
+
"account": mpan_core,
|
|
89
|
+
"issue_date": issue_date,
|
|
90
|
+
"start_date": start_date,
|
|
91
|
+
"finish_date": finish_date,
|
|
92
|
+
"mpan_core": mpan_core,
|
|
93
|
+
"reference": "_".join(
|
|
94
|
+
(
|
|
95
|
+
start_date.strftime("%Y%m%d"),
|
|
96
|
+
finish_date.strftime("%Y%m%d"),
|
|
97
|
+
issue_date.strftime("%Y%m%d"),
|
|
98
|
+
mpan_core,
|
|
99
|
+
)
|
|
100
|
+
),
|
|
101
|
+
"elements": [
|
|
102
|
+
{
|
|
103
|
+
"name": "meter",
|
|
104
|
+
"start_date": start_date,
|
|
105
|
+
"finish_date": finish_date,
|
|
106
|
+
"breakdown": {
|
|
107
|
+
"rate": {meter_rate},
|
|
108
|
+
"comm": {comm},
|
|
109
|
+
"settlement-status": {settlement_status},
|
|
110
|
+
"days": days,
|
|
111
|
+
},
|
|
112
|
+
"net": net,
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
class Parser:
|
|
119
|
+
def __init__(self, f):
|
|
120
|
+
self.book = load_workbook(f, data_only=True)
|
|
121
|
+
self.sheet = self.book.worksheets[1]
|
|
122
|
+
|
|
123
|
+
self.last_line = None
|
|
124
|
+
self._line_number = None
|
|
125
|
+
self._title_line = None
|
|
126
|
+
|
|
127
|
+
@property
|
|
128
|
+
def line_number(self):
|
|
129
|
+
return None if self._line_number is None else self._line_number + 1
|
|
130
|
+
|
|
131
|
+
def _set_last_line(self, i, line):
|
|
132
|
+
self._line_numer = i
|
|
133
|
+
self.last_line = line
|
|
134
|
+
if i == 0:
|
|
135
|
+
self._title_line = line
|
|
136
|
+
return line
|
|
137
|
+
|
|
138
|
+
def make_raw_bills(self):
|
|
139
|
+
try:
|
|
140
|
+
bills = []
|
|
141
|
+
row = next(self.sheet.iter_rows(min_row=6, max_row=6, max_col=3))
|
|
142
|
+
issue_date = to_utc(get_ct_date(row, 2))
|
|
143
|
+
for row in self.sheet.iter_rows(min_row=12, max_col=11):
|
|
144
|
+
val = get_cell(row, 1).value
|
|
145
|
+
if val is None or val == "":
|
|
146
|
+
break
|
|
147
|
+
|
|
148
|
+
self._set_last_line(row[0].row, val)
|
|
149
|
+
bill = _process_row(issue_date, row)
|
|
150
|
+
bills.append(bill)
|
|
151
|
+
except BadRequest as e:
|
|
152
|
+
raise BadRequest(f"Row number {row[0].row}: {e.description}")
|
|
153
|
+
|
|
154
|
+
return bills
|