diff --git a/employee_promotion_in_odoo/README.rst b/employee_promotion_in_odoo/README.rst new file mode 100644 index 000000000..def5dea3d --- /dev/null +++ b/employee_promotion_in_odoo/README.rst @@ -0,0 +1,50 @@ + .. image:: https://img.shields.io/badge/licence-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 `__ + +Credits +------- +* Developers: Version 16: Dhanya Babu @cybrosys + +License +------- +Affero General Public License v3.0 (AGPL v3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Installation +============ +- www.odoo.com/documentation/16.0/setup/install.html +- Install our custom addon + +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..445db1ddb --- /dev/null +++ b/employee_promotion_in_odoo/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (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..25286a9dd --- /dev/null +++ b/employee_promotion_in_odoo/__manifest__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (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': '16.0.1.0.0', + 'category': 'Human Resources', + 'summary': " With the help of this module you can set promotion for " + "employee . Also we can see the promotion in each employee form.", + 'description': "You may set an employee's promotion using this module. " + "Also, the promotion is visible on each employee form .", + 'author': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base', 'hr', '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_template.xml' + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False, +} \ No newline at end of file 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..6d8ddca32 --- /dev/null +++ b/employee_promotion_in_odoo/doc/RELEASE_NOTES.md @@ -0,0 +1,5 @@ +## Module +#### 27.7.2023 +#### Version 16.0.1.0.0 +#### ADD +-Initial Commit For Employee Promotion \ No newline at end of file diff --git a/employee_promotion_in_odoo/models/__init__.py b/employee_promotion_in_odoo/models/__init__.py new file mode 100644 index 000000000..b72ba7ead --- /dev/null +++ b/employee_promotion_in_odoo/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (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..40f5dcba8 --- /dev/null +++ b/employee_promotion_in_odoo/models/employee_promotion.py @@ -0,0 +1,98 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (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') + + @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..7ed41ef15 --- /dev/null +++ b/employee_promotion_in_odoo/models/hr_employee.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (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 many2many 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..51a7f99fc --- /dev/null +++ b/employee_promotion_in_odoo/models/promotion_type.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (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): + """In this custom model requires , + we have to specify the promotion type in promotion form """ + _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..24e165efd --- /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 + + \ No newline at end of file diff --git a/employee_promotion_in_odoo/report/employee_promotion_template.xml b/employee_promotion_in_odoo/report/employee_promotion_template.xml new file mode 100644 index 000000000..d15533214 --- /dev/null +++ b/employee_promotion_in_odoo/report/employee_promotion_template.xml @@ -0,0 +1,73 @@ + + + + + \ No newline at end of file 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/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/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/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/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/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/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.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.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/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/modules/1.png b/employee_promotion_in_odoo/static/description/assets/modules/1.png new file mode 100644 index 000000000..359d3e4d6 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..5c56f0bcd 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..c1f30354a 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..33372bdc1 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.gif b/employee_promotion_in_odoo/static/description/assets/modules/5.gif new file mode 100644 index 000000000..d0f36b007 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/modules/5.gif 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..29d072e4b 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/Screenshot(10).png b/employee_promotion_in_odoo/static/description/assets/screenshots/Screenshot(10).png new file mode 100644 index 000000000..7d0cb24fa Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/Screenshot(10).png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/Screenshot(11).png b/employee_promotion_in_odoo/static/description/assets/screenshots/Screenshot(11).png new file mode 100644 index 000000000..901251bca Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/Screenshot(11).png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/Screenshot(12).png b/employee_promotion_in_odoo/static/description/assets/screenshots/Screenshot(12).png new file mode 100644 index 000000000..b5dcf5e60 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/Screenshot(12).png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/Screenshot(13).png b/employee_promotion_in_odoo/static/description/assets/screenshots/Screenshot(13).png new file mode 100644 index 000000000..59b906cd4 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/Screenshot(13).png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/Screenshot(9).png b/employee_promotion_in_odoo/static/description/assets/screenshots/Screenshot(9).png new file mode 100644 index 000000000..569ef4c56 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/Screenshot(9).png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/anj.png b/employee_promotion_in_odoo/static/description/assets/screenshots/anj.png new file mode 100644 index 000000000..8f61a6bf4 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/anj.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/anju.png b/employee_promotion_in_odoo/static/description/assets/screenshots/anju.png new file mode 100644 index 000000000..01fa11ad0 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/anju.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/hero.gif b/employee_promotion_in_odoo/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..fd65db96e Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/hero.gif differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/promotion_1.png b/employee_promotion_in_odoo/static/description/assets/screenshots/promotion_1.png new file mode 100644 index 000000000..6d3eecf73 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/promotion_1.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/promotion_emp.png b/employee_promotion_in_odoo/static/description/assets/screenshots/promotion_emp.png new file mode 100644 index 000000000..17c37ef4b Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/promotion_emp.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/promotion_report_4.png b/employee_promotion_in_odoo/static/description/assets/screenshots/promotion_report_4.png new file mode 100644 index 000000000..3c390a407 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/promotion_report_4.png differ diff --git a/employee_promotion_in_odoo/static/description/assets/screenshots/promotion_report_temp_5.png b/employee_promotion_in_odoo/static/description/assets/screenshots/promotion_report_temp_5.png new file mode 100644 index 000000000..b6c856f59 Binary files /dev/null and b/employee_promotion_in_odoo/static/description/assets/screenshots/promotion_report_temp_5.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..2316312f7 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/banner.png b/employee_promotion_in_odoo/static/description/banner.png new file mode 100644 index 000000000..b4d3cc57b Binary files /dev/null and b/employee_promotion_in_odoo/static/description/banner.png 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..0d8052d31 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..855a4fad9 --- /dev/null +++ b/employee_promotion_in_odoo/static/description/index.html @@ -0,0 +1,688 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ HR Employee Promotion

+

+ This Odoo Application Use to Easy Track Employee Promotion + Management, + To Manage Employee Promotion Process Flow and Employee + Promotion History Log on Employee Screen.

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

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ This odoo application use to easy track employee promotion management, + To Manage employee promotion process flow and + employee promotion history log on employee screen. +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + Community & Enterprise + Support. +
+
+ + + This odoo application use to easy track employee promotion management. + +
+
+ + + 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. + +
+ +
+
+ + +
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+ +
+

We Can Create Promotion Type

+ +
+
+

+

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

+ We Can Print Report

+ + +
+
+

+ We Can Print Report

+ + +
+
+

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

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

+ Related + Products +

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

+ Our Services +

+
+ +
+
+
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+ + +
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ 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 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+
+ \ No newline at end of file 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..debe0919d --- /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 + + + + + + + + + + + + + + +
\ No newline at end of file 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..b26729a7f --- /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 + + + + + + + + + + \ No newline at end of file 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..73e925be7 --- /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 + + + + + + + + +
\ No newline at end of file