mirror of
https://github.com/pretix/pretix.git
synced 2026-05-09 15:54:03 +00:00
Fix incorrect heading of CSV file
This commit is contained in:
@@ -59,7 +59,7 @@ class OrderListExporter(BaseExporter):
|
|||||||
headers = [
|
headers = [
|
||||||
_('Order code'), _('Order total'), _('Status'), _('Email'), _('Order date'),
|
_('Order code'), _('Order total'), _('Status'), _('Email'), _('Order date'),
|
||||||
_('Company'), _('Name'), _('Address'), _('ZIP code'), _('City'), _('Country'), _('VAT ID'),
|
_('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:
|
for tr in tax_rates:
|
||||||
@@ -69,6 +69,8 @@ class OrderListExporter(BaseExporter):
|
|||||||
_('Tax value at {rate} % tax').format(rate=tr),
|
_('Tax value at {rate} % tax').format(rate=tr),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
headers.append(_('Invoice numbers'))
|
||||||
|
|
||||||
writer.writerow(headers)
|
writer.writerow(headers)
|
||||||
|
|
||||||
provider_names = {}
|
provider_names = {}
|
||||||
|
|||||||
Reference in New Issue
Block a user