mirror of https://github.com/snachodog/mybuddy.git
Ensure naps are captured for both start and end time
This commit is contained in:
parent
e2f432f92c
commit
a09ceadc40
File diff suppressed because one or more lines are too long
|
@ -150,7 +150,13 @@ def card_sleep_naps_day(child, date=None):
|
||||||
"""
|
"""
|
||||||
if not date:
|
if not date:
|
||||||
date = timezone.localtime().date()
|
date = timezone.localtime().date()
|
||||||
instances = models.Sleep.naps.filter(child=child, start__date=date)
|
instances = models.Sleep.naps.filter(child=child).filter(
|
||||||
|
start__year=date.year,
|
||||||
|
start__month=date.month,
|
||||||
|
start__day=date.day) | models.Sleep.naps.filter(child=child).filter(
|
||||||
|
end__year=date.year,
|
||||||
|
end__month=date.month,
|
||||||
|
end__day=date.day)
|
||||||
return {
|
return {
|
||||||
'type': 'sleep',
|
'type': 'sleep',
|
||||||
'total': instances.aggregate(Sum('duration'))['duration__sum'],
|
'total': instances.aggregate(Sum('duration'))['duration__sum'],
|
||||||
|
|
Loading…
Reference in New Issue