diff --git a/base_location_geonames_import/README.rst b/base_location_geonames_import/README.rst index af9a3a12f..bab8b798c 100644 --- a/base_location_geonames_import/README.rst +++ b/base_location_geonames_import/README.rst @@ -55,6 +55,7 @@ Contributors * Alexis de Lattre * Lorenzo Battistini * Pedro M. Baeza +* Dave Lasley Icon ---- diff --git a/base_location_geonames_import/__manifest__.py b/base_location_geonames_import/__manifest__.py index ba69473e6..d8f4d4d4e 100644 --- a/base_location_geonames_import/__manifest__.py +++ b/base_location_geonames_import/__manifest__.py @@ -6,7 +6,7 @@ { 'name': 'Base Location Geonames Import', - 'version': '10.0.1.0.0', + 'version': '10.0.1.0.1', 'category': 'Partner Management', 'license': 'AGPL-3', 'summary': 'Import better zip entries from Geonames', diff --git a/base_location_geonames_import/wizard/geonames_import.py b/base_location_geonames_import/wizard/geonames_import.py index c3c3e1266..1d85f7652 100644 --- a/base_location_geonames_import/wizard/geonames_import.py +++ b/base_location_geonames_import/wizard/geonames_import.py @@ -59,6 +59,8 @@ class BetterZipGeonamesImport(models.TransientModel): 'city': self.transform_city_name(row[2], country), 'state_id': state.id, 'country_id': country.id, + 'latitude': row[9], + 'longitude': row[10], } return vals