odoo18/addons_extensions/employee_jod/__manifest__.py

22 lines
647 B
Python

# __manifest__.py
{
'name': 'Employee JOD Form',
'version': '1.0',
'category': 'Human Resources',
'summary': 'Send JOD form to employee after joining',
'description': """
This module is used to send the JOD (Joining Onboarding Document) form
to employees after they have joined the organization.
""",
'author': 'FTPROTECH',
'website': 'https://ftprotech.in',
'depends': ['hr', 'mail','hr_employee_extended','hr_recruitment_extended'],
'data': [
'data/data.xml',
'data/actions.xml',
'data/template.xml',
'views/emp_jod.xml',
],
'license': 'LGPL-3',
}