Order import: Fix street column

This commit is contained in:
Raphael Michel
2021-05-06 20:44:07 +02:00
parent 8e6925c037
commit d7625b0157
2 changed files with 21 additions and 2 deletions

View File

@@ -295,7 +295,7 @@ class InvoiceAddressStreet(ImportColumn):
return _('Invoice address') + ': ' + _('Address')
def assign(self, value, order, position, invoice_address, **kwargs):
invoice_address.address = value or ''
invoice_address.street = value or ''
class InvoiceAddressZip(ImportColumn):