mirror of
https://github.com/pretix/pretix.git
synced 2026-05-03 14:54:04 +00:00
Import: Do not set country to NULL
PRETIXEU-1QJ
This commit is contained in:
@@ -317,7 +317,7 @@ class InvoiceAddressCountry(ImportColumn):
|
||||
return value
|
||||
|
||||
def assign(self, value, order, position, invoice_address, **kwargs):
|
||||
invoice_address.country = value
|
||||
invoice_address.country = value or ''
|
||||
|
||||
|
||||
class InvoiceAddressState(ImportColumn):
|
||||
|
||||
Reference in New Issue
Block a user