Import: Do not set country to NULL

PRETIXEU-1QJ
This commit is contained in:
Raphael Michel
2020-01-02 10:49:05 +01:00
parent 902f589ee6
commit 2ffb4edee9

View File

@@ -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):