Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odpovědi
10193 Zobrazení

Hi,
how to get Geo-Location (GPS-Coordinates) in Odoo form where the user post the entry...and save in database.

For Eample
i want to save user location in database where he post any entry .

Avatar
Zrušit
Nejlepší odpověď

Seems like via the controller but how does one consume the endpoints in a model to capture the coordinates? 

Avatar
Zrušit
Nejlepší odpověď

Hi,

To get the user location you can use the following code,

country_code_val = request.session['geoip'].get('country_code')
if country_code:
country_id = request.env['res.country'].search([('code', '=', country_code)], limit=1).id
 
 


You can add a new field and can save this to that field, Thanks

Avatar
Zrušit

What would a "request" be in this context?

Related Posts Odpovědi Zobrazení Aktivita
1
zář 22
5238
3
čvn 25
886
1
pro 24
4026
0
pro 24
873
2
čvc 24
2148