Open reecehill opened 4 days ago
When viewing the submission history page, submission.patient_count is not calculated/is unavailable.
submission.patient_count
This leaves the entire column empty: Desktop display - See Patient Number column
The issue lies in submissions.py:49
submissions.py:49
base_queryset.values("submission_date", "audit_year").annotate( ....
should be
base_queryset = base_queryset.values("submission_date", "audit_year").annotate( ....
_Note that basequeryset must be mutated
A seemingly quick fix, but a series of errors follow. Hence, making an issue to be addressed separately.
When viewing the submission history page,
submission.patient_count
is not calculated/is unavailable.This leaves the entire column empty: Desktop display - See Patient Number column
The issue lies in
submissions.py:49
should be
_Note that basequeryset must be mutated
A seemingly quick fix, but a series of errors follow. Hence, making an issue to be addressed separately.