Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Displaying Latitude and Longitude using js, in odoo 11 form.

Subscribe

Get notified when there's activity on this post

This question has been flagged
xmljspython3odoo11
2 Replies
8157 Views
Avatar
Dev P

I am new to odoo, so please pardon if the question goes silly. I am trying to display latitude and longitude using a JS script. I'll need to fetch them for future use. I wanted them to get displayed in the text field and save them in my odoo form, But they are displayed in some random field.  If my approach is wrong please let me know the correct way, i'll surely implement that immediately.  

This is my view.xml file.

<record model="ir.ui.view" id="mobile_attendance.form">

      <field name="name">mobile_attendance form</field>

      <field name="model">mobile_attendance.mobile_attendance</field>

      <field name="arch" type="xml">

        <form id="geo_form">

          <sheet>

            <separator string="" colspan="4" col="6"/>

              <group string="Log Your Attendance">

                <field name="employee"/>

                <field name="datetime"/>

                <p id="demo1">

                  <field name="latitude"/>

                  <field name="longitude"/>

                </p>  

                <field name="google_map_partner" widget="map"/>


                <div>

                  <template id="geolocate" inherit_id="web.assets_backend" name="GeoLocation">

                    <xpath expr="." position="inside">

                      <!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> -->

                      <script type="text/javascript" xmlns:h="http://www.w3.org/1999/xhtml">

                        <![CDATA[

                        "use strict";

                        alert('Hello');


                        var x = document.getElementById("demo1").onclick = function() 

                        {getLocation()};


                        function getLocation()

                        {

                          if (navigator.geolocation) 

                          {

                            navigator.geolocation.getCurrentPosition(showPosition);

                          }

                          else

                          {

                            x.innerHTML = "Geolocation is not supported by this browser.";

                          }

                        }


                        function showPosition(position)

                        {

                          x.innerHTML = "Latitude: " + position.coords.latitude + "<br>Longitude: " + position.coords.longitude; 


                          latitude = position.coords.latitude<br>;

                          longitude = position.coords.longitude;


                          // trying to print location.


                        

                          document.getElementById("latitude").innerHTML = position.coords.latitude;

                          document.getElementById("longitude").innerHTML = position.coords.longitude;

                          //console.log(latitude);

                          //console.log(longitude);

                          }

                        ]]>

                      </script>

                    </xpath>

                  </template>

                  <button id="add_location" onclick="geolocate" string="Add Location" class="oe_highlight" type="object"/>

                </div>

              </group>

          </sheet>

        </form>

      </field>

    </record>


This is my python file.

import json

from odoo import models, fields, api

from odoo.tools import DEFAULT_SERVER_DATETIME_FORMAT

from datetime import datetime


class mobile_attendance(models.Model):

    _name = 'mobile_attendance.mobile_attendance'

    


    def _default_employee(self):

        return self.env['hr.employee'].search([('user_id', '=', self.env.uid)], limit=1)


    employee = fields.Many2one('hr.employee', string="Employee", default=_default_employee, required=True, ondelete='cascade', index=True)

    datetime = fields.Datetime('Datetime', default=lambda self: fields.Datetime.now(), readonly=True)



    latitude = fields.Char(string='Geo Latitude', digits=(16,5))

    longitude = fields.Char(string='Geo Longitude', digits=(16,5))

    google_map_partner = fields.Char(string="Map")

I see this error after the js is being loaded.

Uncaught TypeError: Cannot set property 'onclick' of null


I have added google map from now because, I also need to display those latitude and longitude on the google map.

1
Avatar
Discard
Manish Bohra

Hello you find any solution related to this problem?

Avatar
DHA Medic
Best Answer

/your_module/your_path/test.js

odoo.define('web.mattendance', function(require) {
    "use strict";

$(document).on('change', 'input[name=ogtpql]' , function(e){
        alert("test");//this is input onchange, you try to find for button
    });
});



0
Avatar
Discard
Dev P
Author

Thank You for replying DHA Medic.

Can you please let me for what you have used 'input[name=ogtpql]' ?

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,

I think you should try jquery for capturing the click. It will be something like below,

$(document).ready(function(){
$('#demo1').click(function(){
//your code.
});
});


Thanks

0
Avatar
Discard
Dev P
Author

Thank You for your reply, but one more issue is that how to display it in odoo form. What can be done for that?

Enjoying the discussion? Don't just read, join in!

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

Sign up
Related Posts Replies Views Activity
Is there any possible way to send notifications to discuss tab from an object based on conditions?
xml python3 odoo11 discuss
Avatar
Avatar
1
Nov 18
3649
How to show specific users related to a service?
xml res.users python3 odoo11
Avatar
Avatar
2
Mar 18
5457
How to set a filter as default filter in odoo Solved
python3 odoo11
Avatar
Avatar
Avatar
2
Feb 24
16926
How to set default stage to when recruitement record is created Solved
python3 odoo11
Avatar
Avatar
1
Dec 22
5895
How to change the value of a field which depends on other fields automatically ? Solved
python3 odoo11
Avatar
Avatar
Avatar
2
Dec 22
15833
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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