Fix wrong sums

This commit is contained in:
Raphael Michel
2016-11-28 19:36:28 +01:00
parent 444678ce6b
commit 8b00361d1b
2 changed files with 2 additions and 2 deletions

View File

@@ -219,8 +219,8 @@ class OverviewReport(Report):
str(total['num_canceled'][0]), str(total['num_canceled'][1]),
str(total['num_refunded'][0]), str(total['num_refunded'][1]),
str(total['num_expired'][0]), str(total['num_expired'][1]),
str(total['num_paid'][0]), str(total['num_paid'][1]),
str(total['num_pending'][0]), str(total['num_pending'][1]),
str(total['num_paid'][0]), str(total['num_paid'][1]),
str(total['num_total'][0]), str(total['num_total'][1]),
])