fixing plannedsessions_view
This commit is contained in:
@@ -1518,12 +1518,15 @@ def plannedsessions_view(request,
|
||||
for w in ws:
|
||||
thetrimp, hrtss = dataprep.workout_trimp(w)
|
||||
totals['trimp'] += thetrimp
|
||||
tss = dataprep.workout_rscore(w)[0]
|
||||
if not np.isnan(tss) and tss != 0:
|
||||
totals['rscore'] += tss
|
||||
elif tss == 0:
|
||||
totals['rscore'] += hrtss
|
||||
tss = hrtss
|
||||
row = {
|
||||
'rscore': w.rscore,
|
||||
'hrtss': w.hrtss,
|
||||
'rpe': w.rpe,
|
||||
'duration': w.duration,
|
||||
'id': w.id
|
||||
}
|
||||
tss = dataprep.rscore_approx(row)
|
||||
totals['rscore'] += tss
|
||||
totals['distance'] += w.distance
|
||||
totals['time'] += timefield_to_seconds_duration(w.duration)
|
||||
if w.plannedsession: # pragma: no cover
|
||||
|
||||
Reference in New Issue
Block a user