Refunds: Fix sortkey to work with not provided BICs (Z#23165187) (#4451)

This commit is contained in:
Martin Gross
2024-09-09 10:48:53 +02:00
committed by GitHub
parent bc6da2512a
commit 9a2ebe4e95

View File

@@ -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):