odoo18/addons_extensions/hr_attendance_extended/__manifest__.py

34 lines
888 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',
# 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',
'security/security.xml',
'data/cron.xml',
'data/sequence.xml',
'views/hr_attendance.xml',
'views/on_duty_form.xml',
],
}