From 4eca90e28746ee0e809127188fca61791056aff6 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 5 Aug 2022 09:27:05 +0200 Subject: [PATCH] Order data exporter: Do not use same colum name twice on same sheet --- src/pretix/base/exporters/orderlist.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/pretix/base/exporters/orderlist.py b/src/pretix/base/exporters/orderlist.py index d03ebe2c54..81510f3264 100644 --- a/src/pretix/base/exporters/orderlist.py +++ b/src/pretix/base/exporters/orderlist.py @@ -610,7 +610,10 @@ class OrderListExporter(MultiSheetListExporter): for k, label, w in name_scheme['fields']: headers.append(_('Invoice address name') + ': ' + str(label)) headers += [ - _('Address'), _('ZIP code'), _('City'), _('Country'), pgettext('address', 'State'), _('VAT ID'), + _('Invoice address street'), _('Invoice address ZIP code'), _('Invoice address city'), + _('Invoice address country'), + pgettext('address', 'Invoice address state'), + _('VAT ID'), ] headers += [ _('Sales channel'), _('Order locale'),