Skip to content
Snippets Groups Projects
Commit 6f3b1bd4 authored by thomaswoehlke's avatar thomaswoehlke
Browse files

work

parent 9dbcbc89
No related branches found
No related tags found
No related merge requests found
...@@ -252,7 +252,7 @@ class WhoData(db.Model): ...@@ -252,7 +252,7 @@ class WhoData(db.Model):
def delete_data_for_one_day(cls, date_reported): def delete_data_for_one_day(cls, date_reported):
for one_who_date in cls.get_data_for_one_day(date_reported): for one_who_date in cls.get_data_for_one_day(date_reported):
db.session.delete(one_who_date) db.session.delete(one_who_date)
db.session.commit() db.session.commit()
return None return None
@classmethod @classmethod
...@@ -352,3 +352,7 @@ class WhoData(db.Model): ...@@ -352,3 +352,7 @@ class WhoData(db.Model):
datum_of_all_who_data.append(datum) datum_of_all_who_data.append(datum)
datum_of_all_who_data.sort() datum_of_all_who_data.sort()
return datum_of_all_who_data return datum_of_all_who_data
@classmethod
def get_joungest_datum(cls):
return cls.get_datum_of_all_who_data().pop()
...@@ -103,6 +103,7 @@ class WhoServiceUpdate: ...@@ -103,6 +103,7 @@ class WhoServiceUpdate:
new_dates_reported_from_import = self.who_import_get_new_dates_as_array() new_dates_reported_from_import = self.who_import_get_new_dates_as_array()
i = 0 i = 0
for my_date_reported in new_dates_reported_from_import: for my_date_reported in new_dates_reported_from_import:
app.logger.info(my_date_reported)
my_date = WhoDateReported.find_by_date_reported(my_date_reported) my_date = WhoDateReported.find_by_date_reported(my_date_reported)
if my_date is None: if my_date is None:
myday = WhoDateReported.create_new_object_factory(my_date_reported) myday = WhoDateReported.create_new_object_factory(my_date_reported)
......
...@@ -15,7 +15,8 @@ class WhoTestService: ...@@ -15,7 +15,8 @@ class WhoTestService:
app.logger.info(" WHO Test Service [ready]") app.logger.info(" WHO Test Service [ready]")
def delete_last_day(self): def delete_last_day(self):
joungest_datum = WhoDateReported.get_joungest_datum() joungest_datum_str = WhoData.get_joungest_datum()
joungest_datum = WhoDateReported.find_by_date_reported(joungest_datum_str)
app.logger.info("joungest_datum:") app.logger.info("joungest_datum:")
app.logger.info(joungest_datum) app.logger.info(joungest_datum)
app.logger.info("WhoData.get_data_for_one_day(joungest_datum):") app.logger.info("WhoData.get_data_for_one_day(joungest_datum):")
......
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