mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
Refunds: Fix sortkey to work with not provided BICs (Z#23165187) (#4451)
This commit is contained in:
@@ -669,7 +669,7 @@ class OrganizerActionView(OrganizerBanktransferView, OrganizerPermissionRequired
|
|||||||
|
|
||||||
|
|
||||||
def _row_key_func(row):
|
def _row_key_func(row):
|
||||||
return row['iban'], row['bic']
|
return row['iban'], row.get('bic') or ''
|
||||||
|
|
||||||
|
|
||||||
def _unite_transaction_rows(transaction_rows):
|
def _unite_transaction_rows(transaction_rows):
|
||||||
|
|||||||
Reference in New Issue
Block a user