30 lines
731 B
Python
30 lines
731 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "Timeoff Extended",
|
|
|
|
'summary': 'Customized timeoff information',
|
|
|
|
'description': """
|
|
Customized timeoff data
|
|
""",
|
|
|
|
'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/Time Off',
|
|
'version': '0.1',
|
|
|
|
# any module necessary for this one to work correctly
|
|
'depends': ['base','hr','hr_holidays','hr_employee_extended'],
|
|
|
|
# always loaded
|
|
'data': [
|
|
'views/hr_employee.xml',
|
|
'views/hr_timeoff.xml'
|
|
],
|
|
}
|
|
|