Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Intelligence artificielle
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Supermarché
    • Quincaillerie
    • Magasin de jouets
    Restauration & Hôtellerie
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brasserie
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Commerce
    • Homme à tout faire
    • Matériel informatique & support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Parcourir toutes les industriesInauguration Odoo Lyon
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenir partenaire
    • Services pour partenaires
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

Odoo Fill field values using JavaScript

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
javascript
2 Réponses
4862 Vues
Avatar
Yusuf Qisthi

so I want to fill field values of latitude and longitude using JavaScript. I tried document.getElementbyId method and find the input field id manually but when i cllick save it only fills the UI not the actual database. Is there any way to do this?

code:

model.py
latitude = fields.Float(string='Latitude',)
longitude = ​fields.Float(string='Longitude',)

 script

  navigator.geolocation.getCurrentPosition(    successCallback,    errorCallback,    options  );
  functionsuccessCallback(position) {    const { accuracy, latitude, longitude, altitude, heading, speed } =      position.coords;

document.getElementById("o_field_input_13").value = latitude;    document.getElementById("o_field_input_14").value = longitude;

0
Avatar
Ignorer
Avatar
shubham shiroya
Meilleure réponse

you need to assign the values to the corresponding fields using the Odoo JavaScript API. Here's an example of how you can modify your script to achieve this:

navigator.geolocation.getCurrentPosition(successCallback, errorCallback, options);

function successCallback(position) {
const { accuracy, latitude, longitude, altitude, heading, speed } = position.coords;

// Use Odoo JavaScript API to set field values
odoo.define('your_module_name.your_script_name', function (require) {
"use strict";

var FormController = require('web.FormController');
var formController = new FormController();
var model = 'your.model'; // Replace with your actual model name

formController.widget = {};
formController.widget.fields = {};

// Set field values
formController.widget.fields['latitude'] = latitude;
formController.widget.fields['longitude'] = longitude;

// Save the record
formController.widget.saveRecord(model, null);
});
}

function errorCallback(error) {
console.error('Error getting geolocation:', error);
}

In the above code, we use the Odoo JavaScript API to set the field values latitude and longitude using the FormController. Replace 'your_module_name' with the actual name of your module and 'your.model' with the name of the model you are working with.

By using the Odoo JavaScript API, the field values will be properly assigned to the underlying record and saved in the database when you call saveRecord().

Make sure to include this JavaScript code in a JavaScript file within your Odoo module and load it properly in the corresponding view.

0
Avatar
Ignorer
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Meilleure réponse

Hi,
If you want to add new functionality to a field in Odoo, creating a new field widget can be a solution. By creating a custom field widget, you can customize the behavior and appearance of the field to meet your specific requirements.
To create a new field widget in Odoo, you can follow a step-by-step guide provided in this blog. "https://www.cybrosys.com/blog/how-to-create-a-field-widget-in-the-odoo-16"

Hope it helps

0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
[[✦『Guía☎『Volaris』☎México』✦]]0536 ¿Cómo hablar con un asesor Volaris México?
javascript
Avatar
0
avr. 26
18
Odoo Chatter Edit/Create Permissions With Only Model Read?
javascript
Avatar
0
avr. 26
7
Display outstanding invoices
javascript
Avatar
0
mars 26
5
Error While Installing Accounting Module in Odoo 19 Enterprise (Works on Another PC)
javascript
Avatar
0
nov. 25
195
Cannot import @website_sale/js/utils
javascript
Avatar
Avatar
2
nov. 25
2093
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenir partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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