diff --git a/employee_stages/README.rst b/employee_stages/README.rst new file mode 100755 index 000000000..080ed8b34 --- /dev/null +++ b/employee_stages/README.rst @@ -0,0 +1,14 @@ +EMPLOYEE STAGES +=============== +Manage different stages of an employee. + +Configuration +============= + +No additional configurations needed + +Credits +======= +Developer: V13 Varsha Vivek K @ cybrosys, Contact: odoo@cybrosys.com + V14 Minhaj T @ cybrosys, Contact: odoo@cybrosys.com + V15 Aiswarya J P @ cybrosys, Contact: odoo@cybrosys.com diff --git a/employee_stages/__init__.py b/employee_stages/__init__.py new file mode 100755 index 000000000..7bdbb3680 --- /dev/null +++ b/employee_stages/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +################################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2019-TODAY Cybrosys Technologies (). +# Author: Cybrosys Technologies () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################### + +from . import models + diff --git a/employee_stages/__manifest__.py b/employee_stages/__manifest__.py new file mode 100755 index 000000000..cb853d666 --- /dev/null +++ b/employee_stages/__manifest__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +################################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies (). +# Author: Cybrosys Technologies () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################### + +{ + 'name': 'Employee Stages', + 'version': '15.0.1.0.0', + 'summary': """Manages Employee Stages""", + 'description': """This module is used to tracking employee's different stages.""", + 'category': "Generic Modules/Human Resources", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base', 'hr'], + 'data': [ + 'security/ir.model.access.csv', + 'views/employee_stages_view.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} + + diff --git a/employee_stages/doc/RELEASE_NOTES.md b/employee_stages/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..baeb7211c --- /dev/null +++ b/employee_stages/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 07.10.2021 +#### Version 15.0.1.0.0 +##### ADD +- Initial commit for Employee Stages diff --git a/employee_stages/models/__init__.py b/employee_stages/models/__init__.py new file mode 100755 index 000000000..4833243fc --- /dev/null +++ b/employee_stages/models/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +################################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2019-TODAY Cybrosys Technologies (). +# Author: Cybrosys Technologies () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################### + +from . import employee_stages + diff --git a/employee_stages/models/employee_stages.py b/employee_stages/models/employee_stages.py new file mode 100755 index 000000000..9a2b7e69e --- /dev/null +++ b/employee_stages/models/employee_stages.py @@ -0,0 +1,147 @@ +# -*- coding: utf-8 -*- +################################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2019-TODAY Cybrosys Technologies (). +# Author: Cybrosys Technologies () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################### + +from datetime import date +from odoo import models, fields, api + + +class EmployeeFormInherit(models.Model): + _inherit = 'hr.employee' + + @api.model + def create(self, vals): + result = super(EmployeeFormInherit, self).create(vals) + result.stages_history.sudo().create({'start_date': date.today(), + 'employee_id': result.id, + 'state': 'joined'}) + return result + + def start_grounding(self): + self.state = 'grounding' + self.stages_history.sudo().create({'start_date': date.today(), + 'employee_id': self.id, + 'state': 'grounding'}) + + def set_as_employee(self): + self.state = 'employment' + stage_obj = self.stages_history.search([('employee_id', '=', self.id), + ('state', '=', 'test_period')]) + if stage_obj: + stage_obj.sudo().write({'end_date': date.today()}) + self.stages_history.sudo().create({'start_date': date.today(), + 'employee_id': self.id, + 'state': 'employment'}) + + def start_notice_period(self): + self.state = 'notice_period' + stage_obj = self.stages_history.search([('employee_id', '=', self.id), + ('state', '=', 'employment')]) + if stage_obj: + stage_obj.sudo().write({'end_date': date.today()}) + self.stages_history.sudo().create({'start_date': date.today(), + 'employee_id': self.id, + 'state': 'notice_period'}) + + def relived(self): + self.state = 'relieved' + self.active = False + stage_obj = self.stages_history.search([('employee_id', '=', self.id), + ('state', '=', 'notice_period')]) + if stage_obj: + stage_obj.sudo().write({'end_date': date.today()}) + self.stages_history.sudo().create({'end_date': date.today(), + 'employee_id': self.id, + 'state': 'relieved'}) + + def start_test_period(self): + self.state = 'test_period' + self.stages_history.search([('employee_id', '=', self.id), + ('state', '=', 'grounding')]).sudo().write({'end_date': date.today()}) + self.stages_history.sudo().create({'start_date': date.today(), + 'employee_id': self.id, + 'state': 'test_period'}) + + def terminate(self): + self.state = 'terminate' + self.active = False + stage_obj = self.stages_history.search([('employee_id', '=', self.id), + ('state', '=', 'employment')]) + + if stage_obj: + stage_obj.sudo().write({'end_date': date.today()}) + else: + self.stages_history.search([('employee_id', '=', self.id), + ('state', '=', 'grounding')]).sudo().write({'end_date': date.today()}) + self.stages_history.sudo().create({'end_date': date.today(), + 'employee_id': self.id, + 'state': 'terminate'}) + + state = fields.Selection([('joined', 'Slap On'), + ('grounding', 'Grounding'), + ('test_period', 'Test Period'), + ('employment', 'Employment'), + ('notice_period', 'Notice Period'), + ('relieved', 'Resigned'), + ('terminate', 'Terminated')], string='Status', default='joined', + track_visibility='always', copy=False, + help="Employee Stages.\nSlap On: Joined\nGrounding: Training\nTest period : Probation") + stages_history = fields.One2many('hr.employee.status.history', 'employee_id', string='Stage History', + help='It shows the duration and history of each stages') + + +class EmployeeStageHistory(models.Model): + _name = 'hr.employee.status.history' + _description = 'Status History' + + start_date = fields.Date(string='Start Date') + end_date = fields.Date(string='End Date') + duration = fields.Integer(compute='get_duration', string='Duration(days)') + + def get_duration(self): + self.duration = 0 + for each in self: + if each.end_date and each.start_date: + duration = fields.Date.from_string(each.end_date) - fields.Date.from_string(each.start_date) + each.duration = duration.days + + state = fields.Selection([('joined', 'Slap On'), + ('grounding', 'Grounding'), + ('test_period', 'Test Period'), + ('employment', 'Employment'), + ('notice_period', 'Notice Period'), + ('relieved', 'Resigned'), + ('terminate', 'Terminated')], string='Stage') + employee_id = fields.Many2one('hr.employee', invisible=1) + + +class WizardEmployee(models.TransientModel): + _name = 'wizard.employee.stage' + + def set_as_employee(self): + context = self._context + employee_obj = self.env['hr.employee'].search([('id', '=', context.get('employee_id'))]) + if self.related_user: + employee_obj.user_id = self.related_user + employee_obj.set_as_employee() + + related_user = fields.Many2one('res.users', string="Related User") diff --git a/employee_stages/security/ir.model.access.csv b/employee_stages/security/ir.model.access.csv new file mode 100755 index 000000000..fb8ce590e --- /dev/null +++ b/employee_stages/security/ir.model.access.csv @@ -0,0 +1,7 @@ +id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink +access_wizard_employee_stage_manager,wizard.employee.stage.manager,model_wizard_employee_stage,hr.group_hr_manager,1,1,1,1 +access_wizard_employee_stage_hr_user,wizard.employee.stage.user,model_wizard_employee_stage,hr.group_hr_user,1,1,1,0 +access_hr_employee_status_history_manager,hr.employee.status.history.manager,model_hr_employee_status_history,hr.group_hr_manager,1,1,1,1 +access_hr_employee_status_history_hr_user,hr.employee.status.history.user,model_hr_employee_status_history,hr.group_hr_user,1,1,1,0 + + diff --git a/employee_stages/static/description/assets/icons/check.png b/employee_stages/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/employee_stages/static/description/assets/icons/check.png differ diff --git a/employee_stages/static/description/assets/icons/chevron.png b/employee_stages/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/employee_stages/static/description/assets/icons/chevron.png differ diff --git a/employee_stages/static/description/assets/icons/cogs.png b/employee_stages/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/employee_stages/static/description/assets/icons/cogs.png differ diff --git a/employee_stages/static/description/assets/icons/consultation.png b/employee_stages/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/employee_stages/static/description/assets/icons/consultation.png differ diff --git a/employee_stages/static/description/assets/icons/ecom-black.png b/employee_stages/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/employee_stages/static/description/assets/icons/ecom-black.png differ diff --git a/employee_stages/static/description/assets/icons/education-black.png b/employee_stages/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/employee_stages/static/description/assets/icons/education-black.png differ diff --git a/employee_stages/static/description/assets/icons/hotel-black.png b/employee_stages/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/employee_stages/static/description/assets/icons/hotel-black.png differ diff --git a/employee_stages/static/description/assets/icons/license.png b/employee_stages/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/employee_stages/static/description/assets/icons/license.png differ diff --git a/employee_stages/static/description/assets/icons/lifebuoy.png b/employee_stages/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/employee_stages/static/description/assets/icons/lifebuoy.png differ diff --git a/employee_stages/static/description/assets/icons/logo.png b/employee_stages/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/employee_stages/static/description/assets/icons/logo.png differ diff --git a/employee_stages/static/description/assets/icons/manufacturing-black.png b/employee_stages/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/employee_stages/static/description/assets/icons/manufacturing-black.png differ diff --git a/employee_stages/static/description/assets/icons/pos-black.png b/employee_stages/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/employee_stages/static/description/assets/icons/pos-black.png differ diff --git a/employee_stages/static/description/assets/icons/puzzle.png b/employee_stages/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/employee_stages/static/description/assets/icons/puzzle.png differ diff --git a/employee_stages/static/description/assets/icons/restaurant-black.png b/employee_stages/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/employee_stages/static/description/assets/icons/restaurant-black.png differ diff --git a/employee_stages/static/description/assets/icons/service-black.png b/employee_stages/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/employee_stages/static/description/assets/icons/service-black.png differ diff --git a/employee_stages/static/description/assets/icons/trading-black.png b/employee_stages/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/employee_stages/static/description/assets/icons/trading-black.png differ diff --git a/employee_stages/static/description/assets/icons/training.png b/employee_stages/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/employee_stages/static/description/assets/icons/training.png differ diff --git a/employee_stages/static/description/assets/icons/update.png b/employee_stages/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/employee_stages/static/description/assets/icons/update.png differ diff --git a/employee_stages/static/description/assets/icons/user.png b/employee_stages/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/employee_stages/static/description/assets/icons/user.png differ diff --git a/employee_stages/static/description/assets/icons/wrench.png b/employee_stages/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/employee_stages/static/description/assets/icons/wrench.png differ diff --git a/employee_stages/static/description/assets/modules/1.png b/employee_stages/static/description/assets/modules/1.png new file mode 100644 index 000000000..4269b1cd9 Binary files /dev/null and b/employee_stages/static/description/assets/modules/1.png differ diff --git a/employee_stages/static/description/assets/modules/2.png b/employee_stages/static/description/assets/modules/2.png new file mode 100644 index 000000000..34cee3e01 Binary files /dev/null and b/employee_stages/static/description/assets/modules/2.png differ diff --git a/employee_stages/static/description/assets/modules/3.png b/employee_stages/static/description/assets/modules/3.png new file mode 100644 index 000000000..85bb9021f Binary files /dev/null and b/employee_stages/static/description/assets/modules/3.png differ diff --git a/employee_stages/static/description/assets/modules/4.png b/employee_stages/static/description/assets/modules/4.png new file mode 100644 index 000000000..3afc14722 Binary files /dev/null and b/employee_stages/static/description/assets/modules/4.png differ diff --git a/employee_stages/static/description/assets/modules/5.png b/employee_stages/static/description/assets/modules/5.png new file mode 100644 index 000000000..cea66b05f Binary files /dev/null and b/employee_stages/static/description/assets/modules/5.png differ diff --git a/employee_stages/static/description/assets/modules/6.png b/employee_stages/static/description/assets/modules/6.png new file mode 100644 index 000000000..0c9bb377e Binary files /dev/null and b/employee_stages/static/description/assets/modules/6.png differ diff --git a/employee_stages/static/description/assets/screenshots/employee_stage_1.png b/employee_stages/static/description/assets/screenshots/employee_stage_1.png new file mode 100644 index 000000000..18b994746 Binary files /dev/null and b/employee_stages/static/description/assets/screenshots/employee_stage_1.png differ diff --git a/employee_stages/static/description/assets/screenshots/employee_stage_2.png b/employee_stages/static/description/assets/screenshots/employee_stage_2.png new file mode 100644 index 000000000..7acb5a1bd Binary files /dev/null and b/employee_stages/static/description/assets/screenshots/employee_stage_2.png differ diff --git a/employee_stages/static/description/assets/screenshots/employee_stage_3.png b/employee_stages/static/description/assets/screenshots/employee_stage_3.png new file mode 100644 index 000000000..065fd0e48 Binary files /dev/null and b/employee_stages/static/description/assets/screenshots/employee_stage_3.png differ diff --git a/employee_stages/static/description/assets/screenshots/employee_stage_4.png b/employee_stages/static/description/assets/screenshots/employee_stage_4.png new file mode 100755 index 000000000..a6b020402 Binary files /dev/null and b/employee_stages/static/description/assets/screenshots/employee_stage_4.png differ diff --git a/employee_stages/static/description/assets/screenshots/employee_stage_5.png b/employee_stages/static/description/assets/screenshots/employee_stage_5.png new file mode 100644 index 000000000..6dee03d8f Binary files /dev/null and b/employee_stages/static/description/assets/screenshots/employee_stage_5.png differ diff --git a/employee_stages/static/description/assets/screenshots/employee_stage_6.png b/employee_stages/static/description/assets/screenshots/employee_stage_6.png new file mode 100644 index 000000000..a76f6b2eb Binary files /dev/null and b/employee_stages/static/description/assets/screenshots/employee_stage_6.png differ diff --git a/employee_stages/static/description/assets/screenshots/employee_stage_7.png b/employee_stages/static/description/assets/screenshots/employee_stage_7.png new file mode 100644 index 000000000..b4e07b306 Binary files /dev/null and b/employee_stages/static/description/assets/screenshots/employee_stage_7.png differ diff --git a/employee_stages/static/description/assets/screenshots/employee_stage_8.png b/employee_stages/static/description/assets/screenshots/employee_stage_8.png new file mode 100644 index 000000000..dc12aca73 Binary files /dev/null and b/employee_stages/static/description/assets/screenshots/employee_stage_8.png differ diff --git a/employee_stages/static/description/assets/screenshots/employee_stage_9.png b/employee_stages/static/description/assets/screenshots/employee_stage_9.png new file mode 100644 index 000000000..81cc32fc1 Binary files /dev/null and b/employee_stages/static/description/assets/screenshots/employee_stage_9.png differ diff --git a/employee_stages/static/description/assets/screenshots/hero.png b/employee_stages/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..0e73b3e5b Binary files /dev/null and b/employee_stages/static/description/assets/screenshots/hero.png differ diff --git a/employee_stages/static/description/banner.png b/employee_stages/static/description/banner.png new file mode 100644 index 000000000..7f48b87ac Binary files /dev/null and b/employee_stages/static/description/banner.png differ diff --git a/employee_stages/static/description/icon.png b/employee_stages/static/description/icon.png new file mode 100644 index 000000000..b3fd75310 Binary files /dev/null and b/employee_stages/static/description/icon.png differ diff --git a/employee_stages/static/description/index.html b/employee_stages/static/description/index.html new file mode 100644 index 000000000..f68f78841 --- /dev/null +++ b/employee_stages/static/description/index.html @@ -0,0 +1,732 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ Employee Stages

+

+ Manages Employee Stages +

+ +
+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ Every employee may undergo different stages during his term in a company. It may be probation, + training, employment etc. The stages may vary according to the organisation. It is important to + track such stages systematically to assess the performance indices of an employee. So here we are + providing a new module which will facilitate the management of different stages of an employee.

+ +
+
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ + Managing employee's different stages.

+
+
+
+
+ +
+
+

+ Added employee's current stage in the tree view.

+
+
+
+
+ +
+
+

+ Added employee's current stage in kanban view.

+
+
+ +
+
+ +
+
+

+ + Added group by stage in search view.

+
+
+ + +
+
+ +
+
+

+ + Added Employee filter in search view.

+
+
+
+
+ +
+
+

+ Added default search for employees in the search bar.

+
+
+
+
+ +
+
+

+ Automatically recording the stage history.

+
+
+
+
+ +
+
+

+ + Computing the duration of each stage.

+
+
+
+
+ +
+
+

+ Option to set 'Related User' while converting to the employee.

+
+
+
+
+ +
+
+

+ Automatically inactive the employee while terminating or relieving the employee.

+
+
+ +
+ +
+
+

+ Screenshots +

+
+
+

+ View Different Stages of Employee

+

+ Here we can see different stages of the employee, buttons to change the stages and overall history. +

+ +
+
+

+ Status History Tab

+

+ Status History tab tracking the Start date, End date and Duration of each stage.

+ +
+ +
+

+ Automatic Inactivation of resigned employee

+

+ When an employee's state has reached to 'Resigned' stage then the system will automatically inactive + this employee.

+ +
+ +
+

+ Option to add Related user

+

+ We have an option to add 'Related User' when we set to 'Employment' stage.

+ +
+ +
+

+ Kanban View

+

+ Current stage is visible in the Kanban view.

+ +
+ +
+

+ Tree View

+

+ Current stage is visible in the Tree view. +

+ +
+ + +
+

+ Search Bar

+

+ Added default search for employees in the search bar. +

+ +
+ + +
+

+ Group by filter in Search View

+

+ Search View using Filters Group By. +

+ +
+ + +
+

+ Search View using Filters.

+

+ + Added Employee filter in search view. + +

+ + +
+ + +
+
+

Suggested 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

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

Need Help?

+
+
+
+ + +
+ +
+ +
+ +
+ WhatsApp +
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/employee_stages/views/employee_stages_view.xml b/employee_stages/views/employee_stages_view.xml new file mode 100755 index 000000000..f196a725a --- /dev/null +++ b/employee_stages/views/employee_stages_view.xml @@ -0,0 +1,113 @@ + + + + wizard.employee.form + wizard.employee.stage + +
+ + + +
+
+
+
+
+ + + Set as Employee + wizard.employee.stage + form + + new + + + + hr.employee.form.view + hr.employee + + + +