odoo18/addons_extensions/hr_employee_extended/__manifest__.py

32 lines
790 B
Python

# -*- coding: utf-8 -*-
{
'name': "Employee Extended",
'summary': 'Customized employee information',
'description': """
Customized Employee Info
""",
'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/Employees',
'version': '0.1',
# any module necessary for this one to work correctly
'depends': ['base','hr','mail'],
# always loaded
'data': [
'security/security.xml',
'security/ir.model.access.csv',
'views/hr_employee.xml',
'wizards/work_location_wizard.xml'
],
}