Skip to content

Commit

Permalink
Fix issue with crosstab compute reminder did not respect class choice
Browse files Browse the repository at this point in the history
  • Loading branch information
RamezIssac committed Aug 20, 2024
1 parent b17d4a2 commit a303284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slick_reporting/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def get_report_generator(self, queryset=None, for_print=False):
try:
crosstab_compute_remainder = (
self.form.get_crosstab_compute_remainder()
if self.request.GET or self.request.POST
if self.crosstab_compute_remainder is None and (self.request.GET or self.request.POST)
else self.crosstab_compute_remainder
)
except NotImplementedError:
Expand Down

0 comments on commit a303284

Please sign in to comment.