chellow 1757320031.0.0__tar.gz → 1759411815.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.

Files changed (549) hide show
  1. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/PKG-INFO +2 -2
  2. chellow-1759411815.0.0/VERSION +1 -0
  3. chellow-1759411815.0.0/chellow/e/bill_importer.py +259 -0
  4. chellow-1759411815.0.0/chellow/e/bill_parsers/activity_mop_stark_xlsx.py +139 -0
  5. chellow-1759411815.0.0/chellow/e/bill_parsers/annual_mop_stark_xlsx.py +154 -0
  6. chellow-1759411815.0.0/chellow/e/bill_parsers/csv.py +189 -0
  7. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/bill_parsers/drax_edi.py +65 -89
  8. chellow-1759411815.0.0/chellow/e/bill_parsers/engie_edi.py +423 -0
  9. chellow-1759411815.0.0/chellow/e/bill_parsers/engie_xls.py +411 -0
  10. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/bill_parsers/haven_edi.py +189 -228
  11. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/bill_parsers/haven_edi_tprs.py +67 -67
  12. chellow-1759411815.0.0/chellow/e/bill_parsers/nonsettlement_dc_stark_xlsx.py +170 -0
  13. chellow-1759411815.0.0/chellow/e/bill_parsers/settlement_dc_stark_xlsx.py +275 -0
  14. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/bill_parsers/sse_edi.py +107 -75
  15. chellow-1759411815.0.0/chellow/e/bill_parsers/sww_xls.py +173 -0
  16. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/computer.py +1 -1
  17. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/views.py +626 -281
  18. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/edi_lib.py +4 -27
  19. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/models.py +92 -3
  20. chellow-1759411815.0.0/chellow/reports/report_111.py +782 -0
  21. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_247.py +96 -137
  22. chellow-1759411815.0.0/chellow/templates/e/dc_batch.html +138 -0
  23. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_batch_add.html +2 -3
  24. chellow-1759411815.0.0/chellow/templates/e/dc_batch_edit.html +62 -0
  25. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_batch_file.html +2 -3
  26. chellow-1759411815.0.0/chellow/templates/e/dc_batch_file_edit.html +52 -0
  27. chellow-1759411815.0.0/chellow/templates/e/dc_batch_upload_file.html +122 -0
  28. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_batches.html +2 -1
  29. chellow-1759411815.0.0/chellow/templates/e/dc_batches_edit.html +26 -0
  30. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_bill.html +27 -5
  31. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_bill_add.html +4 -4
  32. chellow-1759411815.0.0/chellow/templates/e/dc_bill_edit.html +70 -0
  33. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_bill_import.html +1 -1
  34. chellow-1759411815.0.0/chellow/templates/e/dc_bill_import_contract.html +130 -0
  35. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_contract.html +1 -1
  36. chellow-1759411815.0.0/chellow/templates/e/dc_element.html +41 -0
  37. chellow-1759411815.0.0/chellow/templates/e/dc_element_add.html +36 -0
  38. chellow-1759411815.0.0/chellow/templates/e/dc_element_edit.html +49 -0
  39. chellow-1759411815.0.0/chellow/templates/e/dc_rate_script_edit.html +50 -0
  40. chellow-1759411815.0.0/chellow/templates/e/mop_batch.html +135 -0
  41. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_batch_add.html +2 -3
  42. chellow-1759411815.0.0/chellow/templates/e/mop_batch_edit.html +58 -0
  43. chellow-1759411815.0.0/chellow/templates/e/mop_batch_upload_file.html +122 -0
  44. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_batches.html +2 -1
  45. chellow-1759411815.0.0/chellow/templates/e/mop_batches_edit.html +26 -0
  46. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_bill.html +31 -8
  47. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_bill_add.html +7 -27
  48. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_bill_import.html +1 -1
  49. chellow-1759411815.0.0/chellow/templates/e/mop_bill_import_contract.html +130 -0
  50. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_contract.html +4 -5
  51. chellow-1759411815.0.0/chellow/templates/e/mop_element.html +41 -0
  52. chellow-1759411815.0.0/chellow/templates/e/mop_element_add.html +36 -0
  53. chellow-1759411815.0.0/chellow/templates/e/mop_element_edit.html +49 -0
  54. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_batch.html +3 -7
  55. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_batch_add.html +2 -2
  56. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_batch_edit.html +1 -1
  57. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_batch_file.html +3 -5
  58. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_batch_file_add.html +18 -11
  59. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_batch_upload_file.html +83 -9
  60. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_batches.html +4 -4
  61. chellow-1759411815.0.0/chellow/templates/e/supplier_batches_edit.html +26 -0
  62. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_bill.html +29 -6
  63. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_bill_add.html +3 -3
  64. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_bill_import.html +1 -1
  65. chellow-1759411815.0.0/chellow/templates/e/supplier_bill_import_contract.html +118 -0
  66. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_contract.html +1 -1
  67. chellow-1759411815.0.0/chellow/templates/e/supplier_element.html +45 -0
  68. chellow-1759411815.0.0/chellow/templates/e/supplier_element_add.html +36 -0
  69. chellow-1759411815.0.0/chellow/templates/e/supplier_element_edit.html +51 -0
  70. chellow-1759411815.0.0/chellow/templates/report_run_bill_check.html +157 -0
  71. chellow-1759411815.0.0/chellow/templates/report_run_row_bill_check.html +307 -0
  72. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/views.py +57 -64
  73. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/pyproject.toml +1 -1
  74. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/bill_parsers/test_activity_mop_stark_xlsx.py +5 -2
  75. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/bill_parsers/test_annual_mop_stark_xlsx.py +14 -4
  76. chellow-1759411815.0.0/test/e/bill_parsers/test_bill_parser_csv.py +244 -0
  77. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/bill_parsers/test_bill_parser_drax_edi.py +54 -17
  78. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/bill_parsers/test_bill_parser_engie_edi.py +179 -138
  79. chellow-1759411815.0.0/test/e/bill_parsers/test_bill_parser_engie_xls.py +330 -0
  80. chellow-1759411815.0.0/test/e/bill_parsers/test_bill_parser_haven_edi.py +1019 -0
  81. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/bill_parsers/test_bill_parser_haven_edi_tprs.py +74 -9
  82. chellow-1759411815.0.0/test/e/bill_parsers/test_bill_parser_nonsettlement_dc_stark_xlsx.py +267 -0
  83. chellow-1759411815.0.0/test/e/bill_parsers/test_bill_parser_settlement_dc_stark_xlsx.py +748 -0
  84. chellow-1759411815.0.0/test/e/bill_parsers/test_bill_parser_sse_edi.py +238 -0
  85. chellow-1759411815.0.0/test/e/bill_parsers/test_bill_parser_sww_xls.py +298 -0
  86. chellow-1759411815.0.0/test/e/test_bill_importer.py +292 -0
  87. chellow-1757320031.0.0/test/e/test_e_views.py → chellow-1759411815.0.0/test/e/test_views.py +716 -115
  88. chellow-1759411815.0.0/test/reports/test_report_111.py +1100 -0
  89. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_247.py +85 -22
  90. chellow-1759411815.0.0/test/reports/test_report_dno_vl_parser.py +0 -0
  91. chellow-1759411815.0.0/test/test_edi_lib.py +0 -0
  92. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/test_views.py +29 -0
  93. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/utils.py +1 -1
  94. chellow-1757320031.0.0/VERSION +0 -1
  95. chellow-1757320031.0.0/chellow/e/bill_importer.py +0 -203
  96. chellow-1757320031.0.0/chellow/e/bill_parsers/activity_mop_stark_xlsx.py +0 -126
  97. chellow-1757320031.0.0/chellow/e/bill_parsers/annual_mop_stark_xlsx.py +0 -137
  98. chellow-1757320031.0.0/chellow/e/bill_parsers/csv.py +0 -151
  99. chellow-1757320031.0.0/chellow/e/bill_parsers/drax_element_edi.py +0 -459
  100. chellow-1757320031.0.0/chellow/e/bill_parsers/engie_edi.py +0 -491
  101. chellow-1757320031.0.0/chellow/e/bill_parsers/engie_xls.py +0 -425
  102. chellow-1757320031.0.0/chellow/e/bill_parsers/nonsettlement_dc_stark_xlsx.py +0 -161
  103. chellow-1757320031.0.0/chellow/e/bill_parsers/settlement_dc_stark_xlsx.py +0 -172
  104. chellow-1757320031.0.0/chellow/e/bill_parsers/sww_xls.py +0 -186
  105. chellow-1757320031.0.0/chellow/reports/report_111.py +0 -884
  106. chellow-1757320031.0.0/chellow/templates/e/dc_batch.html +0 -185
  107. chellow-1757320031.0.0/chellow/templates/e/dc_batch_edit.html +0 -66
  108. chellow-1757320031.0.0/chellow/templates/e/dc_batch_file_edit.html +0 -64
  109. chellow-1757320031.0.0/chellow/templates/e/dc_batch_upload_file.html +0 -54
  110. chellow-1757320031.0.0/chellow/templates/e/dc_bill_edit.html +0 -90
  111. chellow-1757320031.0.0/chellow/templates/e/dc_rate_script_edit.html +0 -66
  112. chellow-1757320031.0.0/chellow/templates/e/mop_batch.html +0 -182
  113. chellow-1757320031.0.0/chellow/templates/e/mop_batch_edit.html +0 -66
  114. chellow-1757320031.0.0/chellow/templates/e/mop_batch_upload_file.html +0 -56
  115. chellow-1757320031.0.0/chellow/templates/e/supplier_bill_imports.html +0 -421
  116. chellow-1757320031.0.0/chellow/templates/report_run_bill_check.html +0 -199
  117. chellow-1757320031.0.0/chellow/templates/report_run_row_bill_check.html +0 -299
  118. chellow-1757320031.0.0/test/e/bill_parsers/test_bill_parser_csv.py +0 -119
  119. chellow-1757320031.0.0/test/e/bill_parsers/test_bill_parser_engie_xls.py +0 -179
  120. chellow-1757320031.0.0/test/e/bill_parsers/test_bill_parser_haven_edi.py +0 -541
  121. chellow-1757320031.0.0/test/e/bill_parsers/test_bill_parser_nonsettlement_dc_stark_xlsx/bills.nonsettlement.dc.stark.xlsx +0 -0
  122. chellow-1757320031.0.0/test/e/bill_parsers/test_bill_parser_nonsettlement_dc_stark_xlsx/bills_old.nonsettlement.dc.stark.xlsx +0 -0
  123. chellow-1757320031.0.0/test/e/bill_parsers/test_bill_parser_nonsettlement_dc_stark_xlsx/test_bill_parser_nonsettlement_dc_stark_xlsx.py +0 -126
  124. chellow-1757320031.0.0/test/e/bill_parsers/test_bill_parser_settlement_dc_stark_xlsx.py +0 -211
  125. chellow-1757320031.0.0/test/e/bill_parsers/test_bill_parser_sse_edi.py +0 -134
  126. chellow-1757320031.0.0/test/e/bill_parsers/test_bill_parser_sww_xls.py +0 -139
  127. chellow-1757320031.0.0/test/e/bill_parsers/test_parser_drax_elements_edit.py +0 -400
  128. chellow-1757320031.0.0/test/e/test_bill_importer.py +0 -30
  129. chellow-1757320031.0.0/test/reports/test_report_111.py +0 -544
  130. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/.ebextensions/chellow.config +0 -0
  131. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/.github/workflows/chellow.yml +0 -0
  132. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/.gitignore +0 -0
  133. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/README.md +0 -0
  134. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/application.py +0 -0
  135. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/bin/chellow_service_monitor.sh +0 -0
  136. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/bin/chellow_start.sh +0 -0
  137. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/__init__.py +0 -0
  138. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/api.py +0 -0
  139. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/bank_holidays.py +0 -0
  140. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/commands.py +0 -0
  141. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/dloads.py +0 -0
  142. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/__init__.py +0 -0
  143. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/aahedc.py +0 -0
  144. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/bill_parsers/__init__.py +0 -0
  145. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/bill_parsers/bgb_edi.py +0 -0
  146. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/bill_parsers/edf_export_xlsx.py +0 -0
  147. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/bill_parsers/engie_export_xlsx.py +0 -0
  148. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/bill_parsers/engie_xlsx.py +0 -0
  149. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/bill_parsers/gdf_csv.py +0 -0
  150. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/bill_parsers/haven_csv.py +0 -0
  151. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/bill_parsers/mm.py +0 -0
  152. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/bmarketidx.py +0 -0
  153. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/bsuos.py +0 -0
  154. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/ccl.py +0 -0
  155. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/cfd.py +0 -0
  156. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/dno_rate_parser.py +0 -0
  157. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/duos.py +0 -0
  158. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/elexon.py +0 -0
  159. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/energy_management.py +0 -0
  160. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/hh_importer.py +0 -0
  161. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/hh_parser_bg_csv.py +0 -0
  162. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/hh_parser_df2.py +0 -0
  163. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/hh_parser_edf_csv.py +0 -0
  164. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/hh_parser_schneider_csv.py +0 -0
  165. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/hh_parser_schneider_xlsx.py +0 -0
  166. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/hh_parser_simple_csv.py +0 -0
  167. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/hh_parser_vital_xlsx.py +0 -0
  168. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/lafs.py +0 -0
  169. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/lcc.py +0 -0
  170. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/mdd_importer.py +0 -0
  171. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/rcrc.py +0 -0
  172. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/ro.py +0 -0
  173. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/scenario.py +0 -0
  174. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/system_price.py +0 -0
  175. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/tlms.py +0 -0
  176. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/tnuos.py +0 -0
  177. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/e/triad.py +0 -0
  178. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/fake_batch_updater.py +0 -0
  179. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/gas/bill_import.py +0 -0
  180. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/gas/bill_parser_bgs_xlsx.py +0 -0
  181. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/gas/bill_parser_csv.py +0 -0
  182. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/gas/bill_parser_engie_edi.py +0 -0
  183. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/gas/bill_parser_total_edi.py +0 -0
  184. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/gas/ccl.py +0 -0
  185. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/gas/cv.py +0 -0
  186. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/gas/dn_rate_parser.py +0 -0
  187. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/gas/engine.py +0 -0
  188. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/gas/transportation.py +0 -0
  189. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/gas/views.py +0 -0
  190. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/general_import.py +0 -0
  191. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/national_grid.py +0 -0
  192. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/proxy.py +0 -0
  193. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/rate_server.py +0 -0
  194. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/__init__.py +0 -0
  195. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_109.py +0 -0
  196. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_169.py +0 -0
  197. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_181.py +0 -0
  198. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_183.py +0 -0
  199. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_187.py +0 -0
  200. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_219.py +0 -0
  201. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_231.py +0 -0
  202. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_233.py +0 -0
  203. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_241.py +0 -0
  204. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_29.py +0 -0
  205. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_291.py +0 -0
  206. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_33.py +0 -0
  207. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_387.py +0 -0
  208. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_41.py +0 -0
  209. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_429.py +0 -0
  210. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_59.py +0 -0
  211. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_81.py +0 -0
  212. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_87.py +0 -0
  213. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_asset_comparison.py +0 -0
  214. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_batches.py +0 -0
  215. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_bills.py +0 -0
  216. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_csv_llfcs.py +0 -0
  217. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_csv_site_hh_data.py +0 -0
  218. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_csv_site_snags.py +0 -0
  219. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_ecoes_comparison.py +0 -0
  220. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_g_monthly_duration.py +0 -0
  221. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_g_supplies_snapshot.py +0 -0
  222. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_g_supply_virtual_bill.py +0 -0
  223. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_g_virtual_bills.py +0 -0
  224. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_g_virtual_bills_hh.py +0 -0
  225. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_missing_bills.py +0 -0
  226. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_sscs.py +0 -0
  227. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/reports/report_supply_contacts.py +0 -0
  228. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/rrun.py +0 -0
  229. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/static/css/chellow.css +0 -0
  230. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/static/images/favicon.svg +0 -0
  231. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/static/images/favicon_test.svg +0 -0
  232. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/static/images/logo.png +0 -0
  233. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/static/js/htmx.min.js +0 -0
  234. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/403.html +0 -0
  235. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/base.html +0 -0
  236. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/bill_type.html +0 -0
  237. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/bill_types.html +0 -0
  238. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/chain.html +0 -0
  239. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/csv_sites_monthly_duration.html +0 -0
  240. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/dashboard.html +0 -0
  241. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/downloads.html +0 -0
  242. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/asset_comparison.html +0 -0
  243. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/channel.html +0 -0
  244. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/channel_add.html +0 -0
  245. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/channel_edit.html +0 -0
  246. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/channel_snag.html +0 -0
  247. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/channel_snag_edit.html +0 -0
  248. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/channel_snags.html +0 -0
  249. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/comm.html +0 -0
  250. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/comms.html +0 -0
  251. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/cop.html +0 -0
  252. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/cops.html +0 -0
  253. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/csv_bills.html +0 -0
  254. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/csv_register_reads.html +0 -0
  255. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/csv_sites_hh_data.html +0 -0
  256. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/csv_sites_triad.html +0 -0
  257. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/csv_supplies_hh_data.html +0 -0
  258. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/csv_supplies_snapshot.html +0 -0
  259. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/csv_supplies_triad.html +0 -0
  260. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_auto_importer.html +0 -0
  261. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_bill_imports.html +0 -0
  262. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_contract_edit.html +0 -0
  263. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_contract_hh_import.html +0 -0
  264. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_contract_hh_imports.html +0 -0
  265. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_contract_properties.html +0 -0
  266. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_contract_properties_edit.html +0 -0
  267. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_contracts.html +0 -0
  268. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_contracts_add.html +0 -0
  269. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_rate_script.html +0 -0
  270. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dc_rate_script_add.html +0 -0
  271. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dno.html +0 -0
  272. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dno_rate_script.html +0 -0
  273. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dno_rate_script_add.html +0 -0
  274. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dno_rate_script_edit.html +0 -0
  275. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dnos.html +0 -0
  276. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dtc_meter_type.html +0 -0
  277. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/dtc_meter_types.html +0 -0
  278. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/duration_report.html +0 -0
  279. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/elexon.html +0 -0
  280. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/em_hh_data.html +0 -0
  281. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/em_months.html +0 -0
  282. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/em_site.html +0 -0
  283. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/em_totals.html +0 -0
  284. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/energisation_status.html +0 -0
  285. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/energisation_statuses.html +0 -0
  286. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/era_edit.html +0 -0
  287. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/era_edit_form.html +0 -0
  288. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/era_supplier_bill_add.html +0 -0
  289. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/generator_type.html +0 -0
  290. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/generator_types.html +0 -0
  291. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/gsp_group.html +0 -0
  292. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/gsp_groups.html +0 -0
  293. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/hh_datum_edit.html +0 -0
  294. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/lafs.html +0 -0
  295. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/lcc.html +0 -0
  296. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/llfc.html +0 -0
  297. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/llfc_edit.html +0 -0
  298. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/llfcs.html +0 -0
  299. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/market_role.html +0 -0
  300. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/market_roles.html +0 -0
  301. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/meter_payment_type.html +0 -0
  302. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/meter_payment_types.html +0 -0
  303. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/meter_type.html +0 -0
  304. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/meter_types.html +0 -0
  305. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_batch_file.html +0 -0
  306. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_batch_file_edit.html +0 -0
  307. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_bill_edit.html +0 -0
  308. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_bill_imports.html +0 -0
  309. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_contract_add.html +0 -0
  310. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_contract_edit.html +0 -0
  311. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_contracts.html +0 -0
  312. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_rate_script.html +0 -0
  313. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_rate_script_add.html +0 -0
  314. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mop_rate_script_edit.html +0 -0
  315. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mtc.html +0 -0
  316. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mtc_llfc.html +0 -0
  317. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mtc_llfc_ssc.html +0 -0
  318. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mtc_llfc_ssc_pc.html +0 -0
  319. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mtc_llfc_ssc_pcs.html +0 -0
  320. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mtc_llfc_sscs.html +0 -0
  321. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mtc_llfcs.html +0 -0
  322. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mtc_participant.html +0 -0
  323. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mtc_participants.html +0 -0
  324. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mtc_ssc.html +0 -0
  325. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mtc_sscs.html +0 -0
  326. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/mtcs.html +0 -0
  327. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/ods_monthly_duration.html +0 -0
  328. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/participant.html +0 -0
  329. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/participants.html +0 -0
  330. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/parties.html +0 -0
  331. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/party.html +0 -0
  332. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/pc.html +0 -0
  333. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/pcs.html +0 -0
  334. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/read_add.html +0 -0
  335. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/read_edit.html +0 -0
  336. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/read_type.html +0 -0
  337. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/read_types.html +0 -0
  338. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/scenario.html +0 -0
  339. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/scenario_add.html +0 -0
  340. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/scenario_docs.html +0 -0
  341. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/scenario_edit.html +0 -0
  342. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/scenarios.html +0 -0
  343. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/site_add_e_supply.html +0 -0
  344. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/site_add_e_supply_form.html +0 -0
  345. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/site_hh_data.html +0 -0
  346. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/site_site_snags.html +0 -0
  347. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/site_snag.html +0 -0
  348. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/site_snag_edit.html +0 -0
  349. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/site_snags.html +0 -0
  350. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/site_snags_edit.html +0 -0
  351. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/source.html +0 -0
  352. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/sources.html +0 -0
  353. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/ssc.html +0 -0
  354. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/sscs.html +0 -0
  355. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_batch_file_edit.html +0 -0
  356. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_bill_edit.html +0 -0
  357. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_contract_add.html +0 -0
  358. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_contract_edit.html +0 -0
  359. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_contracts.html +0 -0
  360. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_rate_script.html +0 -0
  361. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_rate_script_add.html +0 -0
  362. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supplier_rate_script_edit.html +0 -0
  363. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supply.html +0 -0
  364. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supply_edit.html +0 -0
  365. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supply_eras.html +0 -0
  366. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supply_hh_data.html +0 -0
  367. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supply_months.html +0 -0
  368. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supply_note_add.html +0 -0
  369. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supply_note_edit.html +0 -0
  370. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supply_notes.html +0 -0
  371. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supply_post.html +0 -0
  372. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/supply_virtual_bill.html +0 -0
  373. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/tpr.html +0 -0
  374. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/e/tprs.html +0 -0
  375. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/edi_viewer.html +0 -0
  376. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/fake_batch_updater.html +0 -0
  377. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/batch.html +0 -0
  378. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/batch_add.html +0 -0
  379. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/batch_edit.html +0 -0
  380. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/batches.html +0 -0
  381. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/bill.html +0 -0
  382. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/bill_add.html +0 -0
  383. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/bill_edit.html +0 -0
  384. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/bill_import.html +0 -0
  385. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/bill_imports.html +0 -0
  386. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/dn.html +0 -0
  387. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/dns.html +0 -0
  388. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/era_edit.html +0 -0
  389. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/exit_zone.html +0 -0
  390. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/industry_auto_importer.html +0 -0
  391. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/industry_contract.html +0 -0
  392. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/industry_contract_add.html +0 -0
  393. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/industry_contract_edit.html +0 -0
  394. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/industry_contracts.html +0 -0
  395. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/industry_rate_script.html +0 -0
  396. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/industry_rate_script_add.html +0 -0
  397. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/industry_rate_script_edit.html +0 -0
  398. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/ldz.html +0 -0
  399. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/read_add.html +0 -0
  400. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/read_edit.html +0 -0
  401. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/read_type.html +0 -0
  402. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/read_types.html +0 -0
  403. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/reading_frequencies.html +0 -0
  404. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/reading_frequency.html +0 -0
  405. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/reports.html +0 -0
  406. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/supplier_contract.html +0 -0
  407. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/supplier_contract_add.html +0 -0
  408. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/supplier_contract_edit.html +0 -0
  409. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/supplier_contracts.html +0 -0
  410. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/supplier_rate_script.html +0 -0
  411. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/supplier_rate_script_add.html +0 -0
  412. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/supplier_rate_script_edit.html +0 -0
  413. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/supplies.html +0 -0
  414. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/supply.html +0 -0
  415. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/supply_edit.html +0 -0
  416. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/supply_note_add.html +0 -0
  417. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/supply_note_edit.html +0 -0
  418. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/supply_notes.html +0 -0
  419. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/unit.html +0 -0
  420. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/g/units.html +0 -0
  421. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/general_import.html +0 -0
  422. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/general_imports.html +0 -0
  423. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/home.html +0 -0
  424. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/input_date.html +0 -0
  425. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/local_report.html +0 -0
  426. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/local_reports.html +0 -0
  427. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/macros.html +0 -0
  428. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/national_grid.html +0 -0
  429. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/non_core_auto_importer.html +0 -0
  430. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/non_core_contract.html +0 -0
  431. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/non_core_contract_edit.html +0 -0
  432. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/non_core_contracts.html +0 -0
  433. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/non_core_rate_script.html +0 -0
  434. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/non_core_rate_script_add.html +0 -0
  435. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/non_core_rate_script_edit.html +0 -0
  436. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/object_summary.html +0 -0
  437. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/rate_server.html +0 -0
  438. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/report_run.html +0 -0
  439. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/report_run_asset_comparison.html +0 -0
  440. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/report_run_ecoes_comparison.html +0 -0
  441. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/report_run_g_bill_check.html +0 -0
  442. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/report_run_missing_e_bills.html +0 -0
  443. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/report_run_monthly_duration_org.html +0 -0
  444. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/report_run_row.html +0 -0
  445. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/report_run_row_g_bill_check.html +0 -0
  446. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/report_run_supply_contacts.html +0 -0
  447. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/report_runs.html +0 -0
  448. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/scenario.html +0 -0
  449. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/scenario_add.html +0 -0
  450. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/scenario_docs.html +0 -0
  451. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/scenario_edit.html +0 -0
  452. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/scenarios.html +0 -0
  453. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/site.html +0 -0
  454. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/site_add.html +0 -0
  455. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/site_edit.html +0 -0
  456. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/site_gen_graph.html +0 -0
  457. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/site_months.html +0 -0
  458. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/site_used_graph.html +0 -0
  459. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/sites.html +0 -0
  460. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/supplies.html +0 -0
  461. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/system.html +0 -0
  462. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/tester.html +0 -0
  463. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/user.html +0 -0
  464. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/user_roles.html +0 -0
  465. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/templates/users.html +0 -0
  466. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/testing.py +0 -0
  467. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/chellow/utils.py +0 -0
  468. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/gpl.txt +0 -0
  469. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/requirements.txt +0 -0
  470. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/systemd/chellow.service +0 -0
  471. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/systemd/chellow_upgrader.service +0 -0
  472. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/systemd/chellow_upgrader.timer +0 -0
  473. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/conftest.py +0 -0
  474. /chellow-1757320031.0.0/test/reports/test_report_dno_vl_parser.py → /chellow-1759411815.0.0/test/e/__init__.py +0 -0
  475. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/bill_parsers/test_bill_parser_edf_export_xlsx.py +0 -0
  476. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/bill_parsers/test_bill_parser_engie_xlsx.py +0 -0
  477. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/bill_parsers/test_bill_parser_haven_csv.py +0 -0
  478. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/bill_parsers/test_bill_parser_mm.py +0 -0
  479. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/system_price/prices.xls +0 -0
  480. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/system_price/test_system_price.py +0 -0
  481. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_aahedc.py +0 -0
  482. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_bsuos.py +0 -0
  483. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_ccl.py +0 -0
  484. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_cfd.py +0 -0
  485. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_computer.py +0 -0
  486. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_dno_rate_parser.py +0 -0
  487. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_duos.py +0 -0
  488. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_energy_management.py +0 -0
  489. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_hh_importer.py +0 -0
  490. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_hh_parser_df2.py +0 -0
  491. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_hh_parser_vital_xlsx.py +0 -0
  492. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_lafs.py +0 -0
  493. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_mdd_importer.py +0 -0
  494. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_rcrc_importer.py +0 -0
  495. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_ro.py +0 -0
  496. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_scenario.py +0 -0
  497. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_tlms.py +0 -0
  498. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_tnuos.py +0 -0
  499. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/e/test_triad.py +0 -0
  500. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/gas/bill_parsers/test_bill_parser_bgs_xlsx.py +0 -0
  501. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/gas/bill_parsers/test_g_bill_parser_engie_edi.py +0 -0
  502. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/gas/bill_parsers/test_g_bill_parser_total_edi.py +0 -0
  503. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/gas/test_dn_rate_parser.py +0 -0
  504. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/gas/test_engine.py +0 -0
  505. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/gas/test_g_cv.py +0 -0
  506. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/gas/test_gas_views.py +0 -0
  507. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/gas/test_transportation.py +0 -0
  508. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_g_monthly_duration.py +0 -0
  509. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_g_supplies_snapshot.py +0 -0
  510. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_g_supply_virtual_bill.py +0 -0
  511. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_g_virtual_bills.py +0 -0
  512. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_g_virtual_bills_hh.py +0 -0
  513. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_109.py +0 -0
  514. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_169.py +0 -0
  515. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_181.py +0 -0
  516. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_183.py +0 -0
  517. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_187.py +0 -0
  518. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_219.py +0 -0
  519. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_231.py +0 -0
  520. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_233.py +0 -0
  521. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_241.py +0 -0
  522. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_29.py +0 -0
  523. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_291.py +0 -0
  524. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_33.py +0 -0
  525. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_387.py +0 -0
  526. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_41.py +0 -0
  527. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_429.py +0 -0
  528. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_59.py +0 -0
  529. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_81.py +0 -0
  530. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_87.py +0 -0
  531. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_asset_comparison.py +0 -0
  532. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_batches.py +0 -0
  533. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_bills.py +0 -0
  534. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_csv_llfcs.py +0 -0
  535. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_csv_site_hh_data.py +0 -0
  536. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_csv_site_snags.py +0 -0
  537. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_ecoes_comparison.py +0 -0
  538. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_missing_e_bills.py +0 -0
  539. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_sscs.py +0 -0
  540. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/reports/test_report_supply_contacts.py +0 -0
  541. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/test_chellow.py +0 -0
  542. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/test_dloads.py +0 -0
  543. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/test_edi_viewer.py +0 -0
  544. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/test_fake_batch_updater.py +0 -0
  545. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/test_general_import.py +0 -0
  546. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/test_models.py +0 -0
  547. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/test_rate_server.py +0 -0
  548. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/test_testing.py +0 -0
  549. {chellow-1757320031.0.0 → chellow-1759411815.0.0}/test/test_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chellow
3
- Version: 1757320031.0.0
3
+ Version: 1759411815.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==4.3.1
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__ = "1759411815.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