diff --git a/src/pretix/base/exporters/orderlist.py b/src/pretix/base/exporters/orderlist.py index 4435cae89c..9dad300b5c 100644 --- a/src/pretix/base/exporters/orderlist.py +++ b/src/pretix/base/exporters/orderlist.py @@ -59,7 +59,7 @@ class OrderListExporter(BaseExporter): headers = [ _('Order code'), _('Order total'), _('Status'), _('Email'), _('Order date'), _('Company'), _('Name'), _('Address'), _('ZIP code'), _('City'), _('Country'), _('VAT ID'), - _('Payment date'), _('Payment type'), _('Payment method fee'), _('Invoice numbers') + _('Payment date'), _('Payment type'), _('Payment method fee'), ] for tr in tax_rates: @@ -69,6 +69,8 @@ class OrderListExporter(BaseExporter): _('Tax value at {rate} % tax').format(rate=tr), ] + headers.append(_('Invoice numbers')) + writer.writerow(headers) provider_names = {}