Import: Do not set country to NULL

PRETIXEU-1QJ
This commit is contained in:
Raphael Michel
2020-01-02 10:53:01 +01:00
parent 902f589ee6
commit 2ffb4edee9
+1 -1
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):