mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
Fix wrong sums
This commit is contained in:
@@ -99,8 +99,8 @@
|
||||
<th>{{ total.num_canceled|togglesum }}</th>
|
||||
<th>{{ total.num_refunded|togglesum }}</th>
|
||||
<th>{{ total.num_expired|togglesum }}</th>
|
||||
<th>{{ total.num_paid|togglesum }}</th>
|
||||
<th>{{ total.num_pending|togglesum }}</th>
|
||||
<th>{{ total.num_paid|togglesum }}</th>
|
||||
<th>{{ total.num_total|togglesum }}</th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
|
||||
@@ -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]),
|
||||
])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user