diff --git a/employee_check_list/README.rst b/employee_check_list/README.rst new file mode 100644 index 000000000..9bc179b5b --- /dev/null +++ b/employee_check_list/README.rst @@ -0,0 +1,52 @@ +.. 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 Check List +=================== +This module is used to remembering the employee's entry and exit progress. + + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + + +Credits +------- +* Developers: (V13) Developer Nimisha Murali + (V15) Developer Aiswarya J P + (V16) Developer Robin Kurian + (V17) Developer ANURUDH P + 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_check_list/__init__.py b/employee_check_list/__init__.py new file mode 100644 index 000000000..2dc86a3f4 --- /dev/null +++ b/employee_check_list/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author:Anurudh P(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_check_list/__manifest__.py b/employee_check_list/__manifest__.py new file mode 100644 index 000000000..200d2ed17 --- /dev/null +++ b/employee_check_list/__manifest__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author:Anurudh P(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 Checklist', + 'version': '17.0.1.0.0', + 'category': 'Human Resources', + 'summary': """Manages Employee's Entry & Exit Process""", + 'description': """'This module is used to remembering the employee's + entry and exit progress.'""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['hr', 'employee_documents_expiry'], + 'data': [ + 'views/settings_views.xml', + 'views/employee_form_inherit_views.xml', + 'views/checklist_views.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/employee_check_list/doc/RELEASE_NOTES.md b/employee_check_list/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..b7bf8c57c --- /dev/null +++ b/employee_check_list/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 02.12.2023 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for Employee Check List diff --git a/employee_check_list/models/__init__.py b/employee_check_list/models/__init__.py new file mode 100644 index 000000000..00363b5ca --- /dev/null +++ b/employee_check_list/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author:Anurudh P(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 hr_employee +from . import res_config_settings diff --git a/employee_check_list/models/hr_employee.py b/employee_check_list/models/hr_employee.py new file mode 100644 index 000000000..3df8a1158 --- /dev/null +++ b/employee_check_list/models/hr_employee.py @@ -0,0 +1,124 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author:Anurudh P(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 models, fields, api + + +class EmployeeMasterInherit(models.Model): + """ This class inherits from 'hr.employee' and + extends it with additional fields and methods. + """ + _inherit = 'hr.employee' + + @api.depends('exit_checklist_ids') + def exit_progress(self): + """ Calculate the exit progress for an employee. """ + + for each in self: + total_len = self.env['employee.checklist'].search_count( + [('document_type', '=', 'exit')]) + entry_len = len(each.exit_checklist_ids) + if total_len != 0: + each.exit_progress = round((entry_len * 100) / total_len, 2) + + @api.depends('entry_checklist_ids') + def entry_progress(self): + """ Calculate the entry progress for an employee. """ + + for each in self: + total_len = self.env['employee.checklist'].search_count( + [('document_type', '=', 'entry')]) + entry_len = len(each.entry_checklist_ids) + if total_len != 0: + each.entry_progress = round((entry_len * 100) / total_len, 2) + + entry_checklist_ids = fields.Many2many('employee.checklist', + 'entry_obj_ids', 'check_hr_rel', + 'hr_check_rel', + string='Entry Process', + domain=[ + ('document_type', '=', 'entry')]) + exit_checklist_ids = fields.Many2many('employee.checklist', 'exit_obj_ids', + 'exit_hr_rel', 'hr_exit_rel', + string='Exit Process', + domain=[ + ('document_type', '=', 'exit')]) + entry_progress = fields.Float(help='Entry progress', compute=entry_progress, + string='Entry Progress', store=True, + default=0.0) + exit_progress = fields.Float(help='Exit progress', + compute=exit_progress, string='Exit Progress', + store=True, default=0.0) + maximum_rate = fields.Integer(default=100) + check_list_enable = fields.Boolean(help='Is check list enable', + invisible=True, copy=False) + + +class EmployeeDocumentInherit(models.Model): + """ + This class inherits from 'hr.employee.document' and adds custom logic + for document creation and deletion. + """ + _inherit = 'hr.employee.document' + + @api.model + def create(self, vals): + """ + Create a new employee document and update the associated checklists. + """ + result = super(EmployeeDocumentInherit, self).create(vals) + if result.document_name.document_type == 'entry': + result.employee_ref.write( + {'entry_checklist_ids': [(4, result.document_name.id)]}) + if result.document_name.document_type == 'exit': + result.employee_ref.write( + {'exit_checklist_ids': [(4, result.document_name.id)]}) + return result + + def unlink(self): + """ + Delete an employee document and update the associated checklists. + """ + for result in self: + if result.document_name.document_type == 'entry': + result.employee_ref.write( + {'entry_checklist_ids': [(5, result.document_name.id)]}) + if result.document_name.document_type == 'exit': + result.employee_ref.write( + {'exit_checklist_ids': [(5, result.document_name.id)]}) + res = super(EmployeeDocumentInherit, self).unlink() + return res + + +class EmployeeChecklistInherit(models.Model): + """ + This class inherits from 'employee.checklist' and extends it with + invisible fields. + + """ + _inherit = 'employee.checklist' + + entry_obj_ids = fields.Many2many('hr.employee', 'entry_checklist_ids', + 'hr_check_rel', 'check_hr_rel', + invisible=1) + exit_obj_ids = fields.Many2many('hr.employee', 'exit_checklist_ids', + 'hr_exit_rel', 'exit_hr_rel', + invisible=1) diff --git a/employee_check_list/models/res_config_settings.py b/employee_check_list/models/res_config_settings.py new file mode 100644 index 000000000..aa54220df --- /dev/null +++ b/employee_check_list/models/res_config_settings.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author:Anurudh P(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 models, fields, api + + +class HRSettings(models.TransientModel): + """ + This class extends 'res.config.settings' to define HR settings for + enabling checklist progress in Kanban. + """ + _inherit = 'res.config.settings' + + enable_checklist = fields.Boolean( + string='Enable Checklist Progress in Kanban?', default=False) + + @api.model + def get_values(self): + res = super(HRSettings, self).get_values() + config = self.env['ir.config_parameter'].sudo() + enable_checklist = config.get_param( + 'employee_check_list.enable_checklist', default=False) + res.update( + enable_checklist=enable_checklist + ) + return res + + def set_values(self): + super(HRSettings, self).set_values() + self.env['ir.config_parameter'].sudo().set_param( + 'employee_check_list.enable_checklist', + self.enable_checklist) + emp_obj = self.env['hr.employee'].search([]) + for rec in emp_obj: + rec.write({'check_list_enable': self.enable_checklist}) diff --git a/employee_check_list/static/description/assets/icons/capture (1).png b/employee_check_list/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/employee_check_list/static/description/assets/icons/capture (1).png differ diff --git a/employee_check_list/static/description/assets/icons/check.png b/employee_check_list/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/employee_check_list/static/description/assets/icons/check.png differ diff --git a/employee_check_list/static/description/assets/icons/chevron.png b/employee_check_list/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/employee_check_list/static/description/assets/icons/chevron.png differ diff --git a/employee_check_list/static/description/assets/icons/cogs.png b/employee_check_list/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/employee_check_list/static/description/assets/icons/cogs.png differ diff --git a/employee_check_list/static/description/assets/icons/consultation.png b/employee_check_list/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/employee_check_list/static/description/assets/icons/consultation.png differ diff --git a/employee_check_list/static/description/assets/icons/ecom-black.png b/employee_check_list/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/employee_check_list/static/description/assets/icons/ecom-black.png differ diff --git a/employee_check_list/static/description/assets/icons/education-black.png b/employee_check_list/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/employee_check_list/static/description/assets/icons/education-black.png differ diff --git a/employee_check_list/static/description/assets/icons/hotel-black.png b/employee_check_list/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/employee_check_list/static/description/assets/icons/hotel-black.png differ diff --git a/employee_check_list/static/description/assets/icons/img.png b/employee_check_list/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/employee_check_list/static/description/assets/icons/img.png differ diff --git a/employee_check_list/static/description/assets/icons/license.png b/employee_check_list/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/employee_check_list/static/description/assets/icons/license.png differ diff --git a/employee_check_list/static/description/assets/icons/lifebuoy.png b/employee_check_list/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/employee_check_list/static/description/assets/icons/lifebuoy.png differ diff --git a/employee_check_list/static/description/assets/icons/manufacturing-black.png b/employee_check_list/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/employee_check_list/static/description/assets/icons/manufacturing-black.png differ diff --git a/employee_check_list/static/description/assets/icons/photo-capture.png b/employee_check_list/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/employee_check_list/static/description/assets/icons/photo-capture.png differ diff --git a/employee_check_list/static/description/assets/icons/pos-black.png b/employee_check_list/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/employee_check_list/static/description/assets/icons/pos-black.png differ diff --git a/employee_check_list/static/description/assets/icons/puzzle.png b/employee_check_list/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/employee_check_list/static/description/assets/icons/puzzle.png differ diff --git a/employee_check_list/static/description/assets/icons/restaurant-black.png b/employee_check_list/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/employee_check_list/static/description/assets/icons/restaurant-black.png differ diff --git a/employee_check_list/static/description/assets/icons/service-black.png b/employee_check_list/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/employee_check_list/static/description/assets/icons/service-black.png differ diff --git a/employee_check_list/static/description/assets/icons/trading-black.png b/employee_check_list/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/employee_check_list/static/description/assets/icons/trading-black.png differ diff --git a/employee_check_list/static/description/assets/icons/training.png b/employee_check_list/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/employee_check_list/static/description/assets/icons/training.png differ diff --git a/employee_check_list/static/description/assets/icons/update.png b/employee_check_list/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/employee_check_list/static/description/assets/icons/update.png differ diff --git a/employee_check_list/static/description/assets/icons/user.png b/employee_check_list/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/employee_check_list/static/description/assets/icons/user.png differ diff --git a/employee_check_list/static/description/assets/icons/wrench.png b/employee_check_list/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/employee_check_list/static/description/assets/icons/wrench.png differ diff --git a/employee_check_list/static/description/assets/misc/Cybrosys R.png b/employee_check_list/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/employee_check_list/static/description/assets/misc/Cybrosys R.png differ diff --git a/employee_check_list/static/description/assets/misc/email.svg b/employee_check_list/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/employee_check_list/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/employee_check_list/static/description/assets/misc/phone.svg b/employee_check_list/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/employee_check_list/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/employee_check_list/static/description/assets/misc/star (1) 2.svg b/employee_check_list/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/employee_check_list/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/employee_check_list/static/description/assets/misc/support (1) 1.svg b/employee_check_list/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/employee_check_list/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/employee_check_list/static/description/assets/misc/support-email.svg b/employee_check_list/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/employee_check_list/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/employee_check_list/static/description/assets/misc/tick-mark.svg b/employee_check_list/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/employee_check_list/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/employee_check_list/static/description/assets/misc/whatsapp 1.svg b/employee_check_list/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/employee_check_list/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/employee_check_list/static/description/assets/misc/whatsapp.svg b/employee_check_list/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/employee_check_list/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/employee_check_list/static/description/assets/modules/1.png b/employee_check_list/static/description/assets/modules/1.png new file mode 100644 index 000000000..d559d353b Binary files /dev/null and b/employee_check_list/static/description/assets/modules/1.png differ diff --git a/employee_check_list/static/description/assets/modules/2.png b/employee_check_list/static/description/assets/modules/2.png new file mode 100644 index 000000000..0ebfe4c09 Binary files /dev/null and b/employee_check_list/static/description/assets/modules/2.png differ diff --git a/employee_check_list/static/description/assets/modules/3.png b/employee_check_list/static/description/assets/modules/3.png new file mode 100644 index 000000000..a0d2a84f8 Binary files /dev/null and b/employee_check_list/static/description/assets/modules/3.png differ diff --git a/employee_check_list/static/description/assets/modules/4.png b/employee_check_list/static/description/assets/modules/4.png new file mode 100644 index 000000000..a09d49458 Binary files /dev/null and b/employee_check_list/static/description/assets/modules/4.png differ diff --git a/employee_check_list/static/description/assets/modules/5.png b/employee_check_list/static/description/assets/modules/5.png new file mode 100644 index 000000000..428458052 Binary files /dev/null and b/employee_check_list/static/description/assets/modules/5.png differ diff --git a/employee_check_list/static/description/assets/modules/6.png b/employee_check_list/static/description/assets/modules/6.png new file mode 100644 index 000000000..bbc5d81dc Binary files /dev/null and b/employee_check_list/static/description/assets/modules/6.png differ diff --git a/employee_check_list/static/description/assets/screenshots/1.png b/employee_check_list/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..6b72e4e47 Binary files /dev/null and b/employee_check_list/static/description/assets/screenshots/1.png differ diff --git a/employee_check_list/static/description/assets/screenshots/2.png b/employee_check_list/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..3d54562ea Binary files /dev/null and b/employee_check_list/static/description/assets/screenshots/2.png differ diff --git a/employee_check_list/static/description/assets/screenshots/3.png b/employee_check_list/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..862dd59cc Binary files /dev/null and b/employee_check_list/static/description/assets/screenshots/3.png differ diff --git a/employee_check_list/static/description/assets/screenshots/6.png b/employee_check_list/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..b0db3a84c Binary files /dev/null and b/employee_check_list/static/description/assets/screenshots/6.png differ diff --git a/employee_check_list/static/description/assets/screenshots/7.png b/employee_check_list/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..563404cb0 Binary files /dev/null and b/employee_check_list/static/description/assets/screenshots/7.png differ diff --git a/employee_check_list/static/description/assets/screenshots/9.png b/employee_check_list/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..402454207 Binary files /dev/null and b/employee_check_list/static/description/assets/screenshots/9.png differ diff --git a/employee_check_list/static/description/assets/screenshots/hero.gif b/employee_check_list/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..58a90973f Binary files /dev/null and b/employee_check_list/static/description/assets/screenshots/hero.gif differ diff --git a/employee_check_list/static/description/banner.jpg b/employee_check_list/static/description/banner.jpg new file mode 100644 index 000000000..5ae24843e Binary files /dev/null and b/employee_check_list/static/description/banner.jpg differ diff --git a/employee_check_list/static/description/icon.png b/employee_check_list/static/description/icon.png new file mode 100644 index 000000000..41c30b7df Binary files /dev/null and b/employee_check_list/static/description/icon.png differ diff --git a/employee_check_list/static/description/index.html b/employee_check_list/static/description/index.html new file mode 100644 index 000000000..365252246 --- /dev/null +++ b/employee_check_list/static/description/index.html @@ -0,0 +1,616 @@ + + + + + + + Employee Checklist + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Employee Exit/Entry Checklist

+

+ Manages Employees Entry & Exit Process +

+
+ +
+
+
+
+
+

Key Highlights +

+
+
+
+
+
+ +
+
+

Managing entry/exit process.

+

Managing entry/exit process in employee. +

+
+
+
+
+
+
+ +
+
+

Entry Progressbar in employee tree view.

+

It will show entry Progressbar in employee tree view. +

+
+
+
+
+
+
+ +
+
+

Automatic process on document attachments.

+
+
+
+
+
+
+ +
+
+

Option to enable Gauge widget for employee Kanban.

+

There is an option in settings to enable Gauge widget for employee Kanban. +

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

+ Screenshots of the entry checklists

+
+
+
+
+
+
+ +
+
+

+ Screenshots of the exit checklists

+
+
+
+
+
+
+ +
+
+

+ Entry and exit progress are shown in the employee form view with PercentPie

+
+
+
+
+
+
+ +
+
+

+ Extra column added in employee tree view with progressbar.

+
+
+
+
+
+
+ +
+
+

+ Kanban view now has a gauge to show the progress of each employee.

+
+
+
+
+
+
+ +
+
+

+ Configuration view in settings

+
+
+
+
+
+
+
    +
  • + Option to enable Gauge widget for employee Kanban. +
  • +
  • + Entry/Exit Percentpie in employee form view. +
  • +
  • + Automatic process on document attach. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:03rd Nov 2023 +
+

+ + Initial Commit for Product Discount Limit.

+
+
+
+
+
+
+
+

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_check_list/views/checklist_views.xml b/employee_check_list/views/checklist_views.xml new file mode 100644 index 000000000..0547b844c --- /dev/null +++ b/employee_check_list/views/checklist_views.xml @@ -0,0 +1,33 @@ + + + + Entry Checklist + ir.actions.act_window + employee.checklist + tree,form + [('document_type', '=', 'entry')] + {"default_document_type":'entry'} + +

+ Click to create a New Entry Checklist +

+
+
+ + Exit Checklist + ir.actions.act_window + employee.checklist + tree,form + [('document_type', '=', 'exit')] + {"default_document_type":'exit'} + +

+ Click to create a New Exit Checklist +

+
+
+ + +
diff --git a/employee_check_list/views/employee_form_inherit_views.xml b/employee_check_list/views/employee_form_inherit_views.xml new file mode 100644 index 000000000..e2bcb2ab9 --- /dev/null +++ b/employee_check_list/views/employee_form_inherit_views.xml @@ -0,0 +1,70 @@ + + + + hr.employee.form.view + hr.employee + + + +
+ + +
+
+ + + + + + + + + + + + + +
+
+ + hr.employee.tree.view + hr.employee + + + + + + + + + + hr.employee.kanban.view + hr.employee + + + + + + + + +
  • + Entry Progress + + +
  • +
    +
    +
    +
    diff --git a/employee_check_list/views/settings_views.xml b/employee_check_list/views/settings_views.xml new file mode 100644 index 000000000..c1ed2af16 --- /dev/null +++ b/employee_check_list/views/settings_views.xml @@ -0,0 +1,27 @@ + + + + + res.config.settings.view.form.inherit.hr + res.config.settings + + + + +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +