odoo18/addons_extensions/hr_resignation/__manifest__.py

52 lines
1.9 KiB
Python

# -*- coding: utf-8 -*-
#############################################################################
# A part of Open HRMS Project <https://www.openhrms.com>
#
# Cybrosys Technologies Pvt. Ltd.
#
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
#
# You can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# (LGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
{
'name': 'HR Resignation',
'version': '18.0.1.0.0',
'category': 'Human Resources',
'summary': 'Manages the resignation process of the employees',
'description': """This module helps to create and approve/reject employee
resignation requests""",
'author': 'Pranay',
'company': 'FTPROTECH',
'website': 'https://www.ftprotech.in',
'depends': ['base','hr','hr_employee_extended'],
'data': [
'security/hr_resignation_security.xml',
'security/ir.model.access.csv',
'data/data.xml',
'data/ir_sequence_data.xml',
'data/ir_cron_data.xml',
'views/hr_contract_views.xml',
'views/hr_resignation_views.xml',
# 'views/hr_employee_views.xml',
'views/pre_resignation_requirements_proceedings.xml',
'views/res_config_settings_views.xml',
],
'images': ['static/description/banner.jpg'],
'license': 'LGPL-3',
'installable': True,
'auto_install': False,
'application': True,
}