mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
Fix transaction view after Django upgrade
This commit is contained in:
@@ -69,7 +69,7 @@
|
|||||||
<td></td>
|
<td></td>
|
||||||
<td class="text-right flip">
|
<td class="text-right flip">
|
||||||
<strong>
|
<strong>
|
||||||
{{ sums.count }}
|
{{ sums.sum_count }}
|
||||||
</strong>
|
</strong>
|
||||||
</td>
|
</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
|
|||||||
@@ -418,7 +418,7 @@ class OrderTransactions(OrderView):
|
|||||||
'item', 'variation', 'subevent'
|
'item', 'variation', 'subevent'
|
||||||
).order_by('datetime')
|
).order_by('datetime')
|
||||||
ctx['sums'] = self.order.transactions.aggregate(
|
ctx['sums'] = self.order.transactions.aggregate(
|
||||||
count=Sum('count'),
|
sum_count=Sum('count'),
|
||||||
full_price=Sum(F('count') * F('price')),
|
full_price=Sum(F('count') * F('price')),
|
||||||
full_tax_value=Sum(F('count') * F('tax_value')),
|
full_tax_value=Sum(F('count') * F('tax_value')),
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user