mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
* Make orderlist and overview filterable by payment_provider (fixing #233) * Remove checks for allowed and enabled payment_providers as discussed
This commit is contained in:
committed by
Raphael Michel
parent
a43b41c8d6
commit
8fb363f815
@@ -165,6 +165,7 @@ def order_overview(event: Event) -> Tuple[List[Tuple[ItemCategory, List[Item]]],
|
||||
for pprov, total in num_total.items():
|
||||
ppobj = DummyObject()
|
||||
ppobj.name = provider_names.get(pprov, pprov)
|
||||
ppobj.provider = provider
|
||||
ppobj.has_variations = False
|
||||
ppobj.num_total = total
|
||||
ppobj.num_cancelled = num_cancelled.get(pprov, (0, 0))
|
||||
|
||||
Reference in New Issue
Block a user