32 lines
816 B
Python
32 lines
816 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "Attendance Extended",
|
|
|
|
'summary': 'Customized Attendance',
|
|
|
|
'description': """
|
|
Customized Attendance data, reports
|
|
""",
|
|
|
|
'author': "Pranay",
|
|
'website': "https://www.ftprotech.com",
|
|
|
|
# Categories can be used to filter modules in modules listing
|
|
# Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
|
|
# for the full list
|
|
'category': 'Human Resources/Attendances',
|
|
'version': '0.1',
|
|
'license': 'LGPL-3',
|
|
|
|
# any module necessary for this one to work correctly
|
|
'depends': ['base','hr','hr_attendance','hr_holidays','hr_employee_extended'],
|
|
|
|
# always loaded
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'data/cron.xml',
|
|
'views/hr_attendance.xml'
|
|
],
|
|
}
|
|
|