Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Fetching User's Location and Updating it Dynamically in Odoo 17 JavaScript Component

Odoberať

Get notified when there's activity on this post

This question has been flagged
javascriptrpcgeolocationOWLodoo17
2754 Zobrazenia
Avatar
Shawn Rodrigo

Hi all,

I’m working on a custom Odoo module to get the user's device location and update it on the server periodically. I’m using JavaScript with Odoo 17’s OWL framework and the useService hook for RPC calls. However, the functions in my component are not triggered as expected. I’d like to know if this is the correct approach or if there’s a recommended method for setting up periodic location updates in Odoo.

Here is my current code:

Javascript Component (location_updater.js)


/** @odoo-module */

import { useService } from '@web/core/utils/hooks';
import { Component } from '@odoo/owl';
import { registry } from "@web/core/registry";

export class LocationUpdater extends Component {
    static template = "odoo_live_location.location_updater_template";

    setup() {
        console.log("setup");
        this.rpc = useService("rpc");
        this.getAndUpdateLocation(1);
    }

    async updateLocationOnServer(latitude, longitude, recordId) {
        console.log("Updating location on server...");
        const response = await this.rpc({
            model: 'location.info',
            method: 'update_location',
            args: [[recordId], {
                'partner_latitude': latitude,
                'partner_longitude': longitude,
            }],
        });
        console.log("Location updated:", response);
    }

    async getAndUpdateLocation(recordId) {
        console.log("Fetching location...");
        if (navigator.geolocation) {
            navigator.geolocation.getCurrentPosition(async (position) => {
                const latitude = position.coords.latitude;
                const longitude = position.coords.longitude;
                await this.updateLocationOnServer(latitude, longitude, recordId);
                console.log('Location updated successfully!');
            }, (error) => {
                console.error("Error fetching location:", error);
            });
        } else {
            console.error("Geolocation is not supported by this browser.");
        }
    }
}

registry.category("actions").add("LocationUpdater", LocationUpdater);


Python Model (location_info.py)

from odoo import models, fields
class LocationInfo(models.Model):
​_name = 'location.info'
​_description = 'Location Information'

​partner_latitude = fields.Float("Latitude")
​partner_longitude = fields.Float("Longitude")

​def update_location(self, latitude, longitude): self.write({ 'partner_latitude': latitude, 'partner_longitude': longitude }) return True



XML View (location_info_view.xml)

<?xml version="1.0" encoding="UTF-8"?>
<odoo> <record id="view_location_info_form" model="ir.ui.view"> <field name="name">location.info.form</field> <field name="model">location.info</field> <field name="arch" type="xml"> <form string="Location Info"> <sheet> <group> <field name="partner_latitude"/> <field name="partner_longitude"/> </group> </sheet> </form> </field> </record> <record id="location_info_action" model="ir.actions.act_window"> <field name="name">Location Info</field> <field name="res_model">location.info</field> <field name="view_mode">form</field> </record> <menuitem id="location_info_menu" name="Location Info" action="location_info_action" /> </odoo>

The JavaScript functions in setup() are not triggering as expected. I don’t see any of the console log outputs from setup() or the subsequent methods.

I have also tried using registry.category("action_manager") instead of registry.category("actions") to register the component but didn’t see a difference.

Could anyone advise if there is something missing or if a different approach is recommended for this use case?

Thanks in advance!

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Related Posts Replies Zobrazenia Aktivita
Learn OWL framework
javascript js OWL v17 odoo17
Avatar
Avatar
Avatar
2
júl 25
3377
How can I listen to the onFieldChange event in Odoo 17 using JavaScript?
javascript selected owl OWL odoo17
Avatar
0
mar 25
1721
Odoo17 Integrating Javascript with Python Solved
javascript python integration rpc odoo17
Avatar
1
sep 24
3117
py.eval in Javascript
javascript OWL
Avatar
0
jan 25
1908
odoo client error
javascript odoo17
Avatar
0
nov 24
2006
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now