Skip to content

Commit

Permalink
Merge PR #729 into 12.0
Browse files Browse the repository at this point in the history
Signed-off-by JordiBForgeFlow
  • Loading branch information
OCA-git-bot committed Jan 13, 2020
2 parents a45ab94 + 345991c commit 6541355
Show file tree
Hide file tree
Showing 16 changed files with 759 additions and 0 deletions.
74 changes: 74 additions & 0 deletions hr_attendance_geolocation/README.rst
@@ -0,0 +1,74 @@
=========================
Hr Attendance Geolocation
=========================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fhr-lightgray.png?logo=github
:target: https://github.com/OCA/hr/tree/12.0/hr_attendance_geolocation
:alt: OCA/hr
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/hr-12-0/hr-12-0-hr_attendance_geolocation
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/116/12.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|

With this module the geolocation of the user is tracked at the
check-in/check-out step

**Table of contents**

.. contents::
:local:

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/hr/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/hr/issues/new?body=module:%20hr_attendance_geolocation%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* Eficent Business and IT Consulting Services S.L.

Contributors
~~~~~~~~~~~~

* Adria Gil Sorribes <adria.gil@eficent.com>

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/hr <https://github.com/OCA/hr/tree/12.0/hr_attendance_geolocation>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions hr_attendance_geolocation/__init__.py
@@ -0,0 +1 @@
from . import models
23 changes: 23 additions & 0 deletions hr_attendance_geolocation/__manifest__.py
@@ -0,0 +1,23 @@
# Copyright 2019 Eficent Business and IT Consulting Services S.L.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
'name': 'Hr Attendance Geolocation',
'summary': """
With this module the geolocation of the user is tracked at the
check-in/check-out step""",
'version': '12.0.1.0.0',
'license': 'AGPL-3',
'author': 'Eficent Business and IT Consulting Services S.L.,'
'Odoo Community Association (OCA)',
'website': 'https://github.com/OCA/hr',
'depends': [
'decimal_precision',
'hr_attendance',
],
'data': [
'views/assets.xml',
'views/hr_attendance_views.xml',
'data/location_data.xml',
],
}
7 changes: 7 additions & 0 deletions hr_attendance_geolocation/data/location_data.xml
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo noupdate="1">
<record forcecreate="True" id="decimal_location" model="decimal.precision">
<field name="name">Location</field>
<field name="digits" eval="7"/>
</record>
</odoo>
2 changes: 2 additions & 0 deletions hr_attendance_geolocation/models/__init__.py
@@ -0,0 +1,2 @@
from . import hr_attendance
from . import hr_employee
32 changes: 32 additions & 0 deletions hr_attendance_geolocation/models/hr_attendance.py
@@ -0,0 +1,32 @@
# Copyright 2019 Eficent Business and IT Consulting Services S.L.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from odoo import fields, models
from odoo.addons import decimal_precision as dp

UNIT = dp.get_precision("Location")


class HrAttendance(models.Model):
_inherit = "hr.attendance"

check_in_latitude = fields.Float(
"Check-in Latitude",
digits=UNIT,
readonly=True
)
check_in_longitude = fields.Float(
"Check-in Longitude",
digits=UNIT,
readonly=True
)
check_out_latitude = fields.Float(
"Check-out Latitude",
digits=UNIT,
readonly=True
)
check_out_longitude = fields.Float(
"Check-out Longitude",
digits=UNIT,
readonly=True
)
33 changes: 33 additions & 0 deletions hr_attendance_geolocation/models/hr_employee.py
@@ -0,0 +1,33 @@
# Copyright 2019 Eficent Business and IT Consulting Services S.L.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from odoo import api, models


class HrEmployee(models.Model):
_inherit = "hr.employee"

@api.multi
def attendance_manual(self, next_action, entered_pin=False,
location=False):
res = super(HrEmployee, self.with_context(
attendance_location=location)).attendance_manual(
next_action, entered_pin)
return res

@api.multi
def attendance_action_change(self):
res = super().attendance_action_change()
location = self.env.context.get('attendance_location', False)
if location:
if self.attendance_state == 'checked_in':
res.write({
'check_in_latitude': location[0],
'check_in_longitude': location[1],
})
else:
res.write({
'check_out_latitude': location[0],
'check_out_longitude': location[1],
})
return res
1 change: 1 addition & 0 deletions hr_attendance_geolocation/readme/CONTRIBUTORS.rst
@@ -0,0 +1 @@
* Adria Gil Sorribes <adria.gil@eficent.com>
2 changes: 2 additions & 0 deletions hr_attendance_geolocation/readme/DESCRIPTION.rst
@@ -0,0 +1,2 @@
With this module the geolocation of the user is tracked at the
check-in/check-out step
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6541355

Please sign in to comment.