diff --git a/employee_promotion_in_odoo/README.rst b/employee_promotion_in_odoo/README.rst new file mode 100644 index 000000000..f1308f3c5 --- /dev/null +++ b/employee_promotion_in_odoo/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html) + :alt: License: AGPL-3 + +Employee Promotion +=================== +This module helps us to give promotion to the employees according to their promotion type + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +Affero General Public License v3.0 (AGPL v3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developers: (V17) Junaidul Ansar M, + (V16) Dhanya Babu, +* Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/employee_promotion_in_odoo/__init__.py b/employee_promotion_in_odoo/__init__.py new file mode 100644 index 000000000..0886071ac --- /dev/null +++ b/employee_promotion_in_odoo/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Junaidul Ansar M (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import models diff --git a/employee_promotion_in_odoo/__manifest__.py b/employee_promotion_in_odoo/__manifest__.py new file mode 100644 index 000000000..8f549fb20 --- /dev/null +++ b/employee_promotion_in_odoo/__manifest__.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Junaidul Ansar M (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +{ + 'name': "Employee Promotion", + 'version': '17.0.1.0.0', + 'category': 'Human Resources', + 'summary': ' This module helps to manage the proper employee promotion ' + 'process.', + 'description': 'With the help of this module you can set promotion for' + 'employee. Also, the promotion is visible on each employee ' + 'form.', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['mail', 'hr_contract'], + 'data': [ + 'security/ir.model.access.csv', + 'views/employee_promotion_views.xml', + 'views/promotion_type_views.xml', + 'views/hr_employee_views.xml', + 'report/employee_promotion_report.xml', + 'report/employee_promotion_templates.xml' + ], + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/employee_promotion_in_odoo/doc/RELEASE_NOTES.md b/employee_promotion_in_odoo/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..e4ae84e88 --- /dev/null +++ b/employee_promotion_in_odoo/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 17.02.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial Commit For Employee Promotion diff --git a/employee_promotion_in_odoo/models/__init__.py b/employee_promotion_in_odoo/models/__init__.py new file mode 100644 index 000000000..a5919ab07 --- /dev/null +++ b/employee_promotion_in_odoo/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Junaidul Ansar M (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import employee_promotion +from . import hr_employee +from . import promotion_type diff --git a/employee_promotion_in_odoo/models/employee_promotion.py b/employee_promotion_in_odoo/models/employee_promotion.py new file mode 100644 index 000000000..e5d45519c --- /dev/null +++ b/employee_promotion_in_odoo/models/employee_promotion.py @@ -0,0 +1,101 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Junaidul Ansar M (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import api, fields, models +from odoo.exceptions import UserError + + +class EmployeePromotion(models.Model): + """This model is necessary for add employee promotion details in employee + module """ + _name = 'employee.promotion' + _description = 'Employee Promotion' + _inherit = ['mail.thread', 'mail.activity.mixin'] + _rec_name = 'promotion_name' + + promotion_name = fields.Text(required=True, string='Promotion Name', + help='Promotion name') + employee_id = fields.Many2one('hr.employee', string='Employee', + required=True, help='Name of employee') + contract_id = fields.Many2one('hr.contract', string='Contract', + help='Contract of employee', + domain="[('employee_id', '=', employee_id)]") + job_title_id = fields.Many2one('hr.job', + string='Old Designation', + help='Previous job of employee ') + job_salary = fields.Float(string='Previous Salary', + required=True, help='Previous job salary') + promotion_date = fields.Date(string='Promotion Date', + default=fields.Date.today(), + help='Date of promotion date') + promotion_type_id = fields.Many2one('promotion.type', + string='Promotion Type', + required=True, + help='Promotion type of promotion') + new_designation_id = fields.Many2one('hr.job', + string='New Designation', + required=True, + help='New designation of employee') + new_salary = fields.Float(string='New Salary', required=True, + help='New salary') + description = fields.Text(string='Description', help='Description of the' + ' promotion') + + @api.model + def create(self, vals): + """It checks if the new salary is greater than the old salary, + raising a UserError if it is not the case.""" + res = super(EmployeePromotion, self).create(vals) + employee = self.env['hr.employee'].browse(res.employee_id.id) + employee.write({ + 'promotion_ids': [(4, res.id)], + 'job_id': res.new_designation_id.id + }) + if res.job_salary >= res.new_salary: + raise UserError("New Salary will be Higher than Old ") + return res + + @api.onchange('employee_id') + def _onchange_employee_id(self): + """This method is called when the employee_id field is changed. + It searches for an open HR contract history + record for the selected employee and sets the contract_id and + job_salary fields based on the + corresponding values in the contract. + If no open contract is found, the fields are left blank.""" + self.job_title_id = self.employee_id.job_id.id + contract = self.env['hr.contract.history'].search( + [('employee_id', '=', self.employee_id.id), + ('state', '=', 'open')]) + if contract: + for contract_history in contract: + self.contract_id = contract_history.name + self.job_salary = contract_history.wage + + def write(self, vals): + """ Override the default write method to check if the new salary is + greater than the current job salary. + If the new salary is greater, + raise a UserError with a warning message.""" + res = super(EmployeePromotion, self).write(vals) + if self.job_salary >= self.new_salary: + raise UserError("New Salary will be Higher than Old ") + return res diff --git a/employee_promotion_in_odoo/models/hr_employee.py b/employee_promotion_in_odoo/models/hr_employee.py new file mode 100644 index 000000000..e5dcaea5b --- /dev/null +++ b/employee_promotion_in_odoo/models/hr_employee.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Junaidul Ansar M (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import fields, models + + +class HrEmployee(models.Model): + """Inheriting employee to add employee promotion form as many 2many field""" + _inherit = 'hr.employee' + + promotion_ids = fields.Many2many('employee.promotion', + string='Promotions', + help='The promotions that an' + ' employee has received') diff --git a/employee_promotion_in_odoo/models/promotion_type.py b/employee_promotion_in_odoo/models/promotion_type.py new file mode 100644 index 000000000..5c2268f17 --- /dev/null +++ b/employee_promotion_in_odoo/models/promotion_type.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Junaidul Ansar M (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import fields, models + + +class PromotionType(models.Model): + """This model is used for the Promotion Type of Employee""" + _name = 'promotion.type' + _description = 'Promotion Type' + _inherit = ['mail.thread', 'mail.activity.mixin'] + _rec_name = 'promotion_type' + + promotion_type = fields.Text(string='Promotion Type', help='Promotion type') diff --git a/employee_promotion_in_odoo/report/employee_promotion_report.xml b/employee_promotion_in_odoo/report/employee_promotion_report.xml new file mode 100644 index 000000000..83e5b9d6e --- /dev/null +++ b/employee_promotion_in_odoo/report/employee_promotion_report.xml @@ -0,0 +1,14 @@ + + + + + Promotion Report + employee.promotion + qweb-pdf + employee_promotion_in_odoo.employee_promotions_report_action + employee_promotion_in_odoo.employee_promotions_report_action + + report + + diff --git a/employee_promotion_in_odoo/report/employee_promotion_templates.xml b/employee_promotion_in_odoo/report/employee_promotion_templates.xml new file mode 100644 index 000000000..15f56f3ce --- /dev/null +++ b/employee_promotion_in_odoo/report/employee_promotion_templates.xml @@ -0,0 +1,72 @@ + + + + + diff --git a/employee_promotion_in_odoo/security/ir.model.access.csv b/employee_promotion_in_odoo/security/ir.model.access.csv new file mode 100644 index 000000000..250528c86 --- /dev/null +++ b/employee_promotion_in_odoo/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_employee_promotion_user,access.employee.promotion.user,model_employee_promotion,base.group_user,1,1,1,1 +access_promotion_type_user,access.promotion.type.user,model_promotion_type,base.group_user,1,1,1,1 diff --git a/employee_promotion_in_odoo/static/description/assets/icons/capture (1).png b/employee_promotion_in_odoo/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/capture (1).png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/check.png b/employee_promotion_in_odoo/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/check.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/chevron.png b/employee_promotion_in_odoo/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/chevron.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/cogs.png b/employee_promotion_in_odoo/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/cogs.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/consultation.png b/employee_promotion_in_odoo/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/consultation.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/ecom-black.png b/employee_promotion_in_odoo/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/ecom-black.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/education-black.png b/employee_promotion_in_odoo/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/education-black.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/hotel-black.png b/employee_promotion_in_odoo/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/hotel-black.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/img.png b/employee_promotion_in_odoo/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/img.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/license.png b/employee_promotion_in_odoo/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/license.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/lifebuoy.png b/employee_promotion_in_odoo/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/lifebuoy.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/manufacturing-black.png b/employee_promotion_in_odoo/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/manufacturing-black.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/photo-capture.png b/employee_promotion_in_odoo/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/photo-capture.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/pos-black.png b/employee_promotion_in_odoo/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/pos-black.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/puzzle.png b/employee_promotion_in_odoo/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/puzzle.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/restaurant-black.png b/employee_promotion_in_odoo/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/restaurant-black.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/service-black.png b/employee_promotion_in_odoo/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/service-black.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/trading-black.png b/employee_promotion_in_odoo/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/trading-black.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/training.png b/employee_promotion_in_odoo/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/training.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/update.png b/employee_promotion_in_odoo/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/update.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/user.png b/employee_promotion_in_odoo/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/user.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/icons/wrench.png b/employee_promotion_in_odoo/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/icons/wrench.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/Cybrosys R.png b/employee_promotion_in_odoo/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/misc/Cybrosys R.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/categories.png b/employee_promotion_in_odoo/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/misc/categories.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/check-box.png b/employee_promotion_in_odoo/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/misc/check-box.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/compass.png b/employee_promotion_in_odoo/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/misc/compass.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/corporate.png b/employee_promotion_in_odoo/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/misc/corporate.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/customer-support.png b/employee_promotion_in_odoo/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/misc/customer-support.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/cybrosys-logo.png b/employee_promotion_in_odoo/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/misc/cybrosys-logo.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/email.svg b/employee_promotion_in_odoo/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/employee_promotion_in_odoo/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/employee_promotion_in_odoo/static/description/assets/misc/features.png b/employee_promotion_in_odoo/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/misc/features.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/logo.png b/employee_promotion_in_odoo/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/misc/logo.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/phone.svg b/employee_promotion_in_odoo/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/employee_promotion_in_odoo/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/employee_promotion_in_odoo/static/description/assets/misc/pictures.png b/employee_promotion_in_odoo/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/misc/pictures.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/pie-chart.png b/employee_promotion_in_odoo/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/misc/pie-chart.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/right-arrow.png b/employee_promotion_in_odoo/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/misc/right-arrow.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/star (1) 2.svg b/employee_promotion_in_odoo/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/employee_promotion_in_odoo/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/employee_promotion_in_odoo/static/description/assets/misc/star.png b/employee_promotion_in_odoo/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/misc/star.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/support (1) 1.svg b/employee_promotion_in_odoo/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/employee_promotion_in_odoo/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/employee_promotion_in_odoo/static/description/assets/misc/support-email.svg b/employee_promotion_in_odoo/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/employee_promotion_in_odoo/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/employee_promotion_in_odoo/static/description/assets/misc/support.png b/employee_promotion_in_odoo/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/misc/support.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/tick-mark.svg b/employee_promotion_in_odoo/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/employee_promotion_in_odoo/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/employee_promotion_in_odoo/static/description/assets/misc/whatsapp 1.svg b/employee_promotion_in_odoo/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/employee_promotion_in_odoo/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/employee_promotion_in_odoo/static/description/assets/misc/whatsapp.png b/employee_promotion_in_odoo/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/misc/whatsapp.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/misc/whatsapp.svg b/employee_promotion_in_odoo/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/employee_promotion_in_odoo/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/employee_promotion_in_odoo/static/description/assets/modules/1.png b/employee_promotion_in_odoo/static/description/assets/modules/1.png new file mode 100644 index 000000000..adfdf7d9a Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/modules/1.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/modules/2.png b/employee_promotion_in_odoo/static/description/assets/modules/2.png new file mode 100644 index 000000000..98a3a1213 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/modules/2.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/modules/3.png b/employee_promotion_in_odoo/static/description/assets/modules/3.png new file mode 100644 index 000000000..cd9f119ed Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/modules/3.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/modules/4.png b/employee_promotion_in_odoo/static/description/assets/modules/4.png new file mode 100644 index 000000000..5778e602a Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/modules/4.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/modules/5.png b/employee_promotion_in_odoo/static/description/assets/modules/5.png new file mode 100644 index 000000000..1373a4476 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/modules/5.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/modules/6.png b/employee_promotion_in_odoo/static/description/assets/modules/6.png new file mode 100644 index 000000000..221f4b84c Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/modules/6.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/emp_promotion_menu.png b/employee_promotion_in_odoo/static/description/assets/screenshots/emp_promotion_menu.png new file mode 100644 index 000000000..7525ae598 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/emp_promotion_menu.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/emp_type.png b/employee_promotion_in_odoo/static/description/assets/screenshots/emp_type.png new file mode 100644 index 000000000..f608b3a94 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/emp_type.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/employe_tab.png b/employee_promotion_in_odoo/static/description/assets/screenshots/employe_tab.png new file mode 100644 index 000000000..385a8265a Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/employe_tab.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/hero-v17.gif b/employee_promotion_in_odoo/static/description/assets/screenshots/hero-v17.gif new file mode 100644 index 000000000..77d656287 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/hero-v17.gif differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/promotion.png b/employee_promotion_in_odoo/static/description/assets/screenshots/promotion.png new file mode 100644 index 000000000..4d3b39705 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/promotion.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/report.png b/employee_promotion_in_odoo/static/description/assets/screenshots/report.png new file mode 100644 index 000000000..1332b7454 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/report.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/report_action.png b/employee_promotion_in_odoo/static/description/assets/screenshots/report_action.png new file mode 100644 index 000000000..7ad9daccb Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/report_action.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/type_form.png b/employee_promotion_in_odoo/static/description/assets/screenshots/type_form.png new file mode 100644 index 000000000..9d8c4023c Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/type_form.png differ diff --git a/employee_promotion_in_odoo/static/description/banner.jpg b/employee_promotion_in_odoo/static/description/banner.jpg new file mode 100644 index 000000000..4fbc53d10 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/banner.jpg differ diff --git a/employee_promotion_in_odoo/static/description/icon.png b/employee_promotion_in_odoo/static/description/icon.png new file mode 100644 index 000000000..5ec1d524e Binary files /dev/null and b/employee_promotion_in_odoo/static/description/icon.png differ diff --git a/employee_promotion_in_odoo/static/description/index.html b/employee_promotion_in_odoo/static/description/index.html new file mode 100644 index 000000000..226a2f220 --- /dev/null +++ b/employee_promotion_in_odoo/static/description/index.html @@ -0,0 +1,787 @@ + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Employee Promotion

+

+ This Module is Used for Easily Tracking Employee Promotion + Management. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Easy Employee Promotion Tracking

+

Efficiently + track employee promotion management with this + module. +

+
+
+
+
+
+
+ +
+
+

+ Streamlined Promotion Process Flow

+

Manage the + entire employee promotion process seamlessly, + including a detailed history log on the employee + screen +

+
+
+
+
+
+
+ +
+
+

+ Salary Hike Control

+

Effectively + manage employee salary hikes, ensuring they are + only higher than the previous salary. +

+
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+

+ Go to Employees -> Employee Promotion + ->Employee Promotion Type menu for creating + the Promotion Types.

+
+
+
+
+
+
+ +
+
+

+ Here we create the Employee Promotion + Type.

+
+
+
+
+
+
+ +
+
+

+ Employee Promotion menu.

+
+
+
+
+
+
+ +
+
+

+ Here we can create the Employee Promotion, + Selecting the Employee, Promotion Type , New + Designation and the Salary.

+
+
+
+
+
+
+ +
+
+

+ Here we have an option to print the Employee + Promotion Report.

+
+
+
+
+
+
+ +
+
+

+ Employee Promotion PDF Report.

+
+
+
+
+
+
+ +
+
+

+ We can See Each Employee Promotion + Information on Respective Employee Form.

+
+
+
+
+
+
+
    +
  • + Community & + Enterprise Support. +
  • +
  • + Easy Employee + Promotion Tracking. +
  • +
  • + To Manage + Employee Promotion Process Flow and Employee + Promotion History Log on Employee Screen. +
  • +
  • + Manage Employee + Salary ,Only Allow Higher salary than Previous + Salary. +
  • +
  • + Manage Employee + Salary Hike,Only Higher salary than Previous + Salary. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:2nd Dec 2023 +
+

+ Initial Commit for Employee Promotion.

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

+
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire + Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo + Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Licensing Consultancy

+
+
+
+
+
+
+

+ Our Industries

+
+
+
+
+
+
+ +

Trading

+

Easily procure and sell your products

+
+
+
+
+ +

POS

+

Easy configuration and convivial experience

+
+
+
+
+ +

+ Education

+

A platform for educational management

+
+
+
+
+ +

+ Manufacturing

+

Plan, track and schedule your operations

+
+
+
+
+ +

E-commerce & + Website

+

Mobile friendly, awe-inspiring product pages

+
+
+
+
+ +

Service + Management

+

Keep track of services and invoice

+
+
+
+
+ +

+ Restaurant

+

Run your bar or restaurant methodically

+
+
+
+
+ +

Hotel + Management

+

An all-inclusive hotel management application

+
+
+
+
+
+
+

+ Support

+
+
+
+
+
+
+
+ +
+ Need + Help? +

Got + questions or need help? Get in touch.

+
odoo@cybrosys.com +
+
+
+
+
+
+
+
+ +
+ WhatsApp +

Say hi to + us on WhatsApp!

+
+91 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/employee_promotion_in_odoo/views/employee_promotion_views.xml b/employee_promotion_in_odoo/views/employee_promotion_views.xml new file mode 100644 index 000000000..c4a59db0b --- /dev/null +++ b/employee_promotion_in_odoo/views/employee_promotion_views.xml @@ -0,0 +1,73 @@ + + + + + Employee Promotion + employee.promotion + tree,form + + + + employee.promotion.view.form + employee.promotion + +
+ +
+

+ +

+
+ + + + + + + + + + + + + + + + + + + +
+
+ + + +
+
+
+
+ + + employee.promotion.view.tree + employee.promotion + + + + + + + + + + + + + + +
diff --git a/employee_promotion_in_odoo/views/hr_employee_views.xml b/employee_promotion_in_odoo/views/hr_employee_views.xml new file mode 100644 index 000000000..f0469cb34 --- /dev/null +++ b/employee_promotion_in_odoo/views/hr_employee_views.xml @@ -0,0 +1,20 @@ + + + + + + hr.employee.view.form.inherit.employee.promotion + + hr.employee + + + + + + + + + + diff --git a/employee_promotion_in_odoo/views/promotion_type_views.xml b/employee_promotion_in_odoo/views/promotion_type_views.xml new file mode 100644 index 000000000..ef3f0a0f0 --- /dev/null +++ b/employee_promotion_in_odoo/views/promotion_type_views.xml @@ -0,0 +1,44 @@ + + + + + Employee Promotion Type + promotion.type + tree,form + + + + promotion.type.view.form + promotion.type + +
+ + + + + +
+ + + +
+
+
+
+ + + promotion.type.view.tree + promotion.type + + + + + + + + +