Odoo18-Base/addons/hr_presence/__manifest__.py

35 lines
853 B
Python
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
# 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/**/*',
],
}
}