Skip to content
Snippets Groups Projects
Commit 09afbffb authored by thomaswoehlke's avatar thomaswoehlke
Browse files

* Fixed #91 implement VaccinationService.run_download_only

* Fixed #92 implement VaccinationService.run_import_only
* Fixed #93 implement VaccinationService.run_update_dimension_tables_only
* Fixed #94 implement VaccinationService.run_update_fact_table_incremental_only
* Fixed #95 implement VaccinationService.run_update_fact_table_initial_only
* Fixed #96 implement VaccinationService.run_update_star_schema_incremental
* Fixed #97 implement VaccinationService.run_update_star_schema_initial
* Fixed #101 implement VaccinationServiceUpdate.update_dimension_tables_only
* Fixed #102 implement VaccinationServiceUpdate.update_fact_table_incremental_only
* Fixed #103 implement VaccinationServiceUpdate.update_fact_table_initial_only
* Fixed #104 implement VaccinationServiceUpdate.update_star_schema_incremental
* Fixed #105 implement VaccinationServiceUpdate.update_star_schema_initial
parent cde95c7a
No related branches found
No related tags found
No related merge requests found
...@@ -145,18 +145,18 @@ ...@@ -145,18 +145,18 @@
* Issue #98 refactor VaccinationServiceDownload to new method scheme introduced 07.02.2021 * Issue #98 refactor VaccinationServiceDownload to new method scheme introduced 07.02.2021
* Issue #99 refactor VaccinationServiceImport to new method scheme introduced 07.02.2021 * Issue #99 refactor VaccinationServiceImport to new method scheme introduced 07.02.2021
* Issue #100 refactor VaccinationServiceUpdate to new method scheme introduced 07.02.2021 * Issue #100 refactor VaccinationServiceUpdate to new method scheme introduced 07.02.2021
* Issue #91 implement VaccinationService.run_download_only * Fixed #91 implement VaccinationService.run_download_only
* Issue #92 implement VaccinationService.run_import_only * Fixed #92 implement VaccinationService.run_import_only
* Issue #93 implement VaccinationService.run_update_dimension_tables_only * Fixed #93 implement VaccinationService.run_update_dimension_tables_only
* Issue #94 implement VaccinationService.run_update_fact_table_incremental_only * Fixed #94 implement VaccinationService.run_update_fact_table_incremental_only
* Fixed #95 implement VaccinationService.run_update_fact_table_initial_only * Fixed #95 implement VaccinationService.run_update_fact_table_initial_only
* Issue #96 implement VaccinationService.run_update_star_schema_incremental * Fixed #96 implement VaccinationService.run_update_star_schema_incremental
* Issue #97 implement VaccinationService.run_update_star_schema_initial * Fixed #97 implement VaccinationService.run_update_star_schema_initial
* Issue #101 implement VaccinationServiceUpdate.update_dimension_tables_only * Fixed #101 implement VaccinationServiceUpdate.update_dimension_tables_only
* Issue #102 implement VaccinationServiceUpdate.update_fact_table_incremental_only * Fixed #102 implement VaccinationServiceUpdate.update_fact_table_incremental_only
* Issue #103 implement VaccinationServiceUpdate.update_fact_table_initial_only * Fixed #103 implement VaccinationServiceUpdate.update_fact_table_initial_only
* Issue #104 implement VaccinationServiceUpdate.update_star_schema_incremental * Fixed #104 implement VaccinationServiceUpdate.update_star_schema_incremental
* Issue #105 implement VaccinationServiceUpdate.update_star_schema_initial * Fixed #105 implement VaccinationServiceUpdate.update_star_schema_initial
* ------------------------------------- * -------------------------------------
* Issue #111 refactor to new method scheme itroduced 07.02.2021 * Issue #111 refactor to new method scheme itroduced 07.02.2021
* Issue #112 implement EuropeService.run_update_dimension_tables_only * Issue #112 implement EuropeService.run_update_dimension_tables_only
......
...@@ -28,11 +28,11 @@ ...@@ -28,11 +28,11 @@
<div class="col"> <div class="col">
<div class="btn-group-vertical" role="group" aria-label="Views"> <div class="btn-group-vertical" role="group" aria-label="Views">
<a class="btn btn-secondary btn-lg btn-block text-left" <a class="btn btn-secondary btn-lg btn-block text-left"
href="{{ url_for( 'vaccination.url_vaccination_download_only') }}" href="{{ url_for( 'vaccination.url_vaccination_task_download_only') }}"
role="button">Vaccination :: Task :: download :: only</a> role="button">Vaccination :: Task :: download :: only</a>
<a class="btn btn-secondary btn-lg btn-block text-left" <a class="btn btn-secondary btn-lg btn-block text-left"
href="{{ url_for( 'vaccination.url_vaccination_import_only') }}" href="{{ url_for( 'vaccination.url_vaccination_task_import_only') }}"
role="button">Vaccination :: Task :: import :: only</a> role="button">Vaccination :: Task :: import :: only</a>
<a class="btn btn-secondary btn-lg btn-block text-left" <a class="btn btn-secondary btn-lg btn-block text-left"
......
...@@ -20,6 +20,8 @@ class VaccinationServiceUpdate: ...@@ -20,6 +20,8 @@ class VaccinationServiceUpdate:
def __update_date_reported(self): def __update_date_reported(self):
app.logger.info(" __update_date_reported [begin]") app.logger.info(" __update_date_reported [begin]")
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
VaccinationData.remove_all()
VaccinationDateReported.remove_all()
date_reported_list = VaccinationImport.get_date_reported_as_array() date_reported_list = VaccinationImport.get_date_reported_as_array()
i = 0 i = 0
for one_date_reported in date_reported_list: for one_date_reported in date_reported_list:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment