fix: skip columns not sent
This commit is contained in:
parent
7875ebaf28
commit
4ee8b9d872
1 changed files with 1 additions and 1 deletions
|
|
@ -185,7 +185,7 @@ def run(report_name, filters=None, user=None, ignore_prepared_report=False):
|
|||
else:
|
||||
result = generate_report_result(report, filters, user)
|
||||
|
||||
result["add_total_row"] = report.add_total_row and not result['skip_total_row']
|
||||
result["add_total_row"] = report.add_total_row and not result.get('skip_total_row', False)
|
||||
|
||||
return result
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue