forked from CGM_Public/pretix_original
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):
|
||||
return row['iban'], row['bic']
|
||||
return row['iban'], row.get('bic') or ''
|
||||
|
||||
|
||||
def _unite_transaction_rows(transaction_rows):
|
||||
|
||||
Reference in New Issue
Block a user