Sari la conținut
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Artificial Intelligence
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Property Management
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all IndustriesInauguration Odoo Lyon
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Toate postările Oameni Insigne
Etichete (Vezi tot)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Toate postările Oameni Insigne
Etichete (Vezi tot)
odoo accounting v14 pos v15
Despre acest forum
Suport

Javascript query [ deferred values ] - how to get them?

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
2 Răspunsuri
8048 Vizualizări
Imagine profil
Rui Franco

Taking in consideration the following code, how can I populate the 'lat' and 'lng' variables? I can only get a value inside the "query". :|

 

var lat=0;

var lng=0

if (coords){
                var coords_obj = new openerp.Model('gps_base.coords');
                coords_obj.query(['latitude_aux', 'longitude_aux'])
                     .filter([['id', '=', coords]])
                     .limit(1)
                     .all().then(function (result) {
                            _.each(result, function(item) {
                                lat=item.latitude_aux;
                                lng=item.longitude_aux;
                            });
                        });
                alert(lat); //shows 'undefined'
            }

0
Imagine profil
Abandonează
Imagine profil
Shawn Varghese
Cel mai bun răspuns

From my understanding of jQuery, .then() is an asynchronous call. This means that, the .then() function will be called after the coords_obj query returns a result, but any code outside will be carried out without waiting for query result.

The following line:

alert(lat);

, is outside the .then() function. Therefore, it gets called before the query returns a result. But the wierd part is that it doesn't even show the default value 0 . I noticed that console.log(lat) works in such cases, instead of using alert(lat).

Try modifying the code like this:

 

if (coords){

                var coords_obj = new openerp.Model('gps_base.coords');
                coords_obj.query(['latitude_aux', 'longitude_aux'])
                     .filter([['id', '=', coords]])
                     .limit(1)
                     .all().then(function (result) {
                            _.each(result, function(item) {
                                lat=item.latitude_aux;
                                lng=item.longitude_aux;

self.latLngFunction(lat,lng); //This way, lat and lng are displayed correctly


                            });
                        });
            }
,

// After the above function body, create a new function similar to the one below:

latLngFunction:function(lat,lng)
        {
            console.log("Latitude",lat); //
You can view this result in your browser console
            console.log("Longitute",lng);
            //
OR
            alert(lat); //Now the alert should display a proper value.
            alert(lng);
        },

 

0
Imagine profil
Abandonează
Shawn Varghese

Please let me know if this doesn't work.

Shawn Varghese

The deferred and resolve calls that you have used seem correct. This is the cleaner way to do it. However, I have faced issues with using these calls in the past - I think I am missing something as well. Can you try using console.log(query_res.latitude_aux); instead of alert(query_res.latitude_aux), just to confirm that the issue does not reside with the alert() dialog.

Imagine profil
Rui Franco
Autor Cel mai bun răspuns

Many thanks Swahn but no, it didn't work. You did set me in the proper direction and, after looking for widget code in the Odoo modules, I eventually came to write this:

          function get_coordinates(coords_id){

                var result = new $.Deferred();
                new instance.web.Model('gps_base.coords')
                    .query(['latitude_aux', 'longitude_aux'])
                    .filter([["id", "=", coords_id]])
                    .first()
                    .then(function(records){
                        if(!records || records.length === 0){
                            result.reject();
                        }else{
                            result.resolve(records);
                        }
                    });
                return result;
            }

 

            if (coords){
                query_res=get_coordinates(coords);
                alert(query_res.latitude_aux);
            }

 

But, unfortunately, I never get a proper value. I'm lost. It seems no matter what example I follow, it never works. Has to be something really silly I am missing here... :(

0
Imagine profil
Abandonează
Îți place discuția? Nu doar citi, alătură-te!

Creează-ți un cont astăzi pentru a beneficia de funcții exclusive și a interacționa cu minunata noastră comunitate!

Înscrie-te
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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