Fixed a bug that lead to wrong payment type links in the order overview

This commit is contained in:
Raphael Michel
2016-10-02 17:33:43 +02:00
parent 2166fa6f4a
commit 96a640ad90

View File

@@ -165,7 +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.provider = pprov
ppobj.has_variations = False
ppobj.num_total = total
ppobj.num_canceled = num_canceled.get(pprov, (0, 0))