769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
|
|
{
|
|
'name': 'Attendances',
|
|
'version': '2.0',
|
|
'category': 'Human Resources',
|
|
'sequence': 81,
|
|
'summary': 'Manage employee attendances',
|
|
'description': """
|
|
This module aims to manage employee's attendances.
|
|
==================================================
|
|
|
|
Keeps account of the attendances of the employees on the basis of the
|
|
actions(Check in/Check out) performed by them.
|
|
""",
|
|
'website': 'https://www.odoo.com/page/employees',
|
|
'depends': ['hr', 'barcodes'],
|
|
'data': [
|
|
'security/hr_attendance_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/web_asset_backend_template.xml',
|
|
'views/hr_attendance_view.xml',
|
|
'report/hr_employee_badge.xml',
|
|
'views/hr_department_view.xml',
|
|
'views/hr_employee_view.xml',
|
|
'views/res_config_settings_views.xml',
|
|
],
|
|
'demo': [
|
|
'data/hr_attendance_demo.xml'
|
|
],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'qweb': [
|
|
"static/src/xml/attendance.xml",
|
|
],
|
|
'application': True,
|
|
}
|