mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
Fix another export issue
This commit is contained in:
@@ -631,8 +631,10 @@ class OrderTaxListReport(MultiSheetListExporter):
|
||||
for k, v in sorted(
|
||||
cache.items(),
|
||||
key=lambda item: (
|
||||
tuple(((iv or Decimal('0.00')) if keys[i] == 'tax_rate' else (iv or ''))
|
||||
for i, iv in enumerate(item))
|
||||
tuple(
|
||||
((iv or Decimal('0.00')) if keys[i] == 'tax_rate' else (iv or ''))
|
||||
for i, iv in enumerate(item[0])
|
||||
)
|
||||
)
|
||||
)
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user