Skip to content
Snippets Groups Projects
Commit 6742e410 authored by Yannick Tivisse's avatar Yannick Tivisse
Browse files

[FIX] base_geolocalize: Disable geolocalize on update/test mode


Purpose
=======

Avoid making useless external requests.

closes odoo/odoo#84822

Signed-off-by: default avatarChristophe Monniez (moc) <moc@odoo.com>
parent 6ef29615
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, fields, models
from odoo.tools import config
class ResPartner(models.Model):
......@@ -29,6 +33,10 @@ class ResPartner(models.Model):
def geo_localize(self):
# We need country names in English below
if not self._context.get('force_geo_localize') \
and (self._context.get('import_file') \
or any(config[key] for key in ['test_enable', 'test_file', 'init', 'update'])):
return False
for partner in self.with_context(lang='en_US'):
result = self._geo_localize(partner.street,
partner.zip,
......
......@@ -61,7 +61,8 @@ class TestPartnerAssign(TransactionCase):
# In order to test find nearest Partner functionality and assign to opportunity,
# I Set Geo Lattitude and Longitude according to partner address.
partner_be.geo_localize()
# YTI Note: We should probably mock the call
partner_be.with_context(force_geo_localize=True).geo_localize()
# I check Geo Latitude and Longitude of partner after set
self.assertTrue(50 < partner_be.partner_latitude < 51, "Latitude is wrong: 50 < %s < 51" % partner_be.partner_latitude)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment