mirror of
https://github.com/pretix/pretix.git
synced 2026-08-25 13:12:00 +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
|
return value
|
||||||
|
|
||||||
def assign(self, value, order, position, invoice_address, **kwargs):
|
def assign(self, value, order, position, invoice_address, **kwargs):
|
||||||
invoice_address.country = value
|
invoice_address.country = value or ''
|
||||||
|
|
||||||
|
|
||||||
class InvoiceAddressState(ImportColumn):
|
class InvoiceAddressState(ImportColumn):
|
||||||
|
|||||||
Reference in New Issue
Block a user