1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Employee Presence Control',
'version': '1.0',
'category': 'Human Resources',
'description': """
Control Employees Presence
==========================
Based on:
* The IP Address
* The User's Session
* The Sent Emails
Allows to contact directly the employee in case of unjustified absence.
""",
'depends': ['hr', 'hr_holidays', 'sms'],
'data': [
'security/sms_security.xml',
'security/ir.model.access.csv',
'views/hr_employee_views.xml',
'data/mail_template_data.xml',
'data/sms_data.xml',
'data/ir_cron.xml',
],
'installable': True,
'license': 'LGPL-3',
'assets': {
'web.assets_backend': [
'hr_presence/static/src/**/*',
],
}
}
|