forked from CGM_Public/pretix_original
OrderListExporter: Fix incorrect order of columns
This commit is contained in:
@@ -725,7 +725,7 @@ class OrderListExporter(MultiSheetListExporter):
|
|||||||
row += [
|
row += [
|
||||||
order.sales_channel,
|
order.sales_channel,
|
||||||
order.locale,
|
order.locale,
|
||||||
row.append(_('Yes') if order.email_known_to_work else _('No'))
|
_('Yes') if order.email_known_to_work else _('No')
|
||||||
]
|
]
|
||||||
row.append(', '.join([
|
row.append(', '.join([
|
||||||
str(self.providers.get(p, p)) for p in sorted(set((op.payment_providers or '').split(',')))
|
str(self.providers.get(p, p)) for p in sorted(set((op.payment_providers or '').split(',')))
|
||||||
|
|||||||
Reference in New Issue
Block a user