Skip to content
Snippets Groups Projects
Commit 4397d435 authored by thomaswoehlke's avatar thomaswoehlke
Browse files

work

parent 5febafd1
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,7 @@ class CommonDatum(db.Model): ...@@ -19,7 +19,7 @@ class CommonDatum(db.Model):
week_of_year = db.Column(db.Integer, nullable=True) week_of_year = db.Column(db.Integer, nullable=True)
@classmethod @classmethod
def create_rw_datum_factory(cls, date_string): def create_new_datum_factory(cls, date_string):
# check date_string syntax # check date_string syntax
# load if already exists # load if already exists
old = db.session.query(cls).filter(cls.date_string == date_string).one_or_none() old = db.session.query(cls).filter(cls.date_string == date_string).one_or_none()
......
import os import os
from database import app from database import app, db
from org.woehlke.covid19.vaccination.vaccination_service_download import VaccinationServiceDownload from org.woehlke.covid19.common.common_model import CommonDatum
from org.woehlke.covid19.vaccination.vaccination_service_import import VaccinationServiceImport
common_service = None common_service = None
...@@ -13,10 +12,5 @@ class CommonService: ...@@ -13,10 +12,5 @@ class CommonService:
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
self.__database = database self.__database = database
self.limit_nr = 20 self.limit_nr = 20
self.vaccination_service_download = VaccinationServiceDownload(database)
self.vaccination_service_import = VaccinationServiceImport(database)
app.logger.info("------------------------------------------------------------") app.logger.info("------------------------------------------------------------")
app.logger.info(" Common Service [ready]") app.logger.info(" Common Service [ready]")
def add_new_datum(self, date_string):
return self
\ No newline at end of file
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