Skip to content

Commit

Permalink
Validate last selected day too
Browse files Browse the repository at this point in the history
Closes #276
  • Loading branch information
marioba committed Oct 17, 2022
1 parent 34cc260 commit 8d836b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comptages/chart/chart_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def validate_count(self, section):
# end = self.endDate.date().toPyDate() + timedelta(days=1)

start = self.count.start_process_date
end = self.count.end_process_date
end = self.count.end_process_date + timedelta(days=1)

qs = models.CountDetail.objects.filter(
id_count=self.count,
Expand Down

0 comments on commit 8d836b2

Please sign in to comment.