forked from CGM_Public/pretix_original
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