Merge branch 'revert-7d6a2e0a' into 'master'

Revert "Calculate all Cycles..."

See merge request family/period!1
This commit is contained in:
Alexander Hosking 2022-04-30 05:44:35 +00:00
commit 16ad5e3a98

View File

@ -151,15 +151,16 @@ def cycle_math():
for num, cycle in enumerate(all_cycles):
# http://127.0.0.1:5000/cycle_math
# cycle length = next start - this start
this_start = pendulum.parse(cycle['start_time'])
next_start = pendulum.parse(all_cycles[num-1]['start_time'])
cycle_length = (next_start - this_start).days
db.execute(
'UPDATE cycle SET cycle_length = ?'
' WHERE id = ?',
(cycle_length, cycle['id'])
)
db.commit()
if num > 0:
this_start = pendulum.parse(cycle['start_time'])
next_start = pendulum.parse(all_cycles[num-1]['start_time'])
cycle_length = (next_start - this_start).days
db.execute(
'UPDATE cycle SET cycle_length = ?'
' WHERE id = ?',
(cycle_length, cycle['id'])
)
db.commit()
return redirect(url_for('cycles.index'))