diff --git a/website_hr_portal/README.rst b/website_hr_portal/README.rst new file mode 100755 index 000000000..e526d276e --- /dev/null +++ b/website_hr_portal/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/licence-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +HR WEBSITE PORTAL +================= +Employees can login and see, their payslips, remaining leaves,shift schedule +and any news or events HRs posting. + +Configuration +============= +- www.odoo.com/documentation/16.0/setup/install.html +- Install our custom addon + +License +------- +General Public License, Version 3 (LGPL-3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: (V16) Sruthi Pavithran, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@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/website_hr_portal/__init__.py b/website_hr_portal/__init__.py new file mode 100755 index 000000000..304a6d19b --- /dev/null +++ b/website_hr_portal/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import controllers diff --git a/website_hr_portal/__manifest__.py b/website_hr_portal/__manifest__.py new file mode 100755 index 000000000..ea5015be4 --- /dev/null +++ b/website_hr_portal/__manifest__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'HR WEBSITE PORTAL', + 'version': '16.0.1.0.0', + 'category': 'Website', + 'summary': 'Employees can login and see, their payslips,shifts and events', + 'description': """This module helps the Employees can login and see, their + payslips,remaining leaves, shift schedule and any news or events HRs + posting.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['hr_payroll_community', 'website_event'], + 'data': [ + 'views/portal_templates.xml', + 'views/payslip_templates.xml', + 'views/event_templates.xml' + ], + 'images': ['static/description/banner.png'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/website_hr_portal/controllers/__init__.py b/website_hr_portal/controllers/__init__.py new file mode 100755 index 000000000..9b7170060 --- /dev/null +++ b/website_hr_portal/controllers/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import portal_event +from . import portal_payslip +from . import portal_shift diff --git a/website_hr_portal/controllers/portal_event.py b/website_hr_portal/controllers/portal_event.py new file mode 100755 index 000000000..36be05aa4 --- /dev/null +++ b/website_hr_portal/controllers/portal_event.py @@ -0,0 +1,77 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import http +from odoo.http import request +from odoo.addons.portal.controllers.portal import CustomerPortal + + +class PortalEmployeeEvents(CustomerPortal): + """Display user counters""" + + def _prepare_home_portal_values(self, counters): + """Display counters of events of current user""" + values = super()._prepare_home_portal_values(counters) + if 'event_count' in counters: + values['event_count'] = request.env[ + 'event.event'].sudo().search_count([]) + return values + + +class WebsiteHrPortalEvents(http.Controller): + """Display current user events""" + + @http.route(['/my/event'], type='http', auth="user", website=True) + def portal_my_events(self, sortby=None, search="", search_in="All"): + """Display current user events""" + searchbar_sortings = { + 'name': {'label': 'Name', 'order': 'name'}, + 'date_end': {'label': 'Date', 'order': 'date_end desc'}, + 'event_type_id': {'label': 'Event Type', 'order': 'event_type_id'}, + 'address_id': {'label': 'Venue', 'order': 'address_id'} + } + searchbar_inputs = { + 'All': {'label': 'All', 'input': 'All', 'domain': + ['|', '|', ('event_type_id', 'ilike', search), + ('name', 'ilike', search), + ('address_id', 'ilike', search)]}, + 'Event Type': {'label': 'Event Type', 'input': 'Event Type', + 'domain': [('event_type_id', 'ilike', search)]}, + 'Name': {'label': 'Name', 'input': 'Name', + 'domain': [('name', 'ilike', search)]}, + 'Venue': {'label': 'Venue', 'input': 'Venue', + 'domain': [('address_id', 'ilike', search)]}, + } + if not sortby: + sortby = 'event_type_id' + order = searchbar_sortings[sortby]['order'] + search_domain = searchbar_inputs[search_in]['domain'] + event = request.env['event.event'].sudo().search(search_domain, + order=order) + return http.request.render('website_hr_portal.portal_employee_events', + {'event': event, + 'searchbar_sortings': searchbar_sortings, + 'sortby': sortby, + 'search': search, + 'search_in': search_in, + 'searchbar_inputs': searchbar_inputs, + 'page_name': 'events' + }) diff --git a/website_hr_portal/controllers/portal_payslip.py b/website_hr_portal/controllers/portal_payslip.py new file mode 100755 index 000000000..1ffdd8264 --- /dev/null +++ b/website_hr_portal/controllers/portal_payslip.py @@ -0,0 +1,94 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import http +from odoo.http import request +from odoo.addons.portal.controllers.portal import CustomerPortal + + +class PortalEmployeePayslip(CustomerPortal): + """Display user counters""" + + def _prepare_home_portal_values(self, counters): + """Display counters of payslips""" + values = super()._prepare_home_portal_values(counters) + if 'payslip_count' in counters: + values['payslip_count'] = request.env[ + 'hr.payslip'].sudo().search_count( + [('employee_id.user_id', '=', request.env.user.id)]) + return values + + +class WebsiteHrPortalPayslip(http.Controller): + """Display current user payslips""" + + @http.route(['/my/payslip'], type='http', auth="user", + website=True) + def portal_my_payslip(self, sortby=None, search="", + search_in='All'): + """Display current user payslips""" + searchbar_sortings = { + 'struct_id': {'label': 'Structure', + 'order': 'struct_id desc'} + } + searchbar_inputs = { + 'All': {'label': 'All', 'input': 'All', 'domain': + ['|', '|', ('name', 'ilike', search), + ('number', 'ilike', search), + ('struct_id', 'ilike', search)]}, + 'Name': {'label': 'Name', 'input': 'Name', + 'domain': [('name', 'ilike', search)]}, + 'Reference': {'label': 'Reference', 'input': 'Reference', + 'domain': [('number', 'ilike', search)]}, + 'Structure': {'label': 'Structure', 'input': 'Structure', + 'domain': [('struct_id', 'ilike', search)]}, + } + if not sortby: + sortby = 'struct_id' + search_domain = searchbar_inputs[search_in]['domain'] + payslip = request.env['hr.payslip'].sudo().search([ + ('employee_id.user_id', '=', request.env.user.id)]) + return http.request.render( + 'website_hr_portal.portal_employee_payslips', + { + 'payslip_id': payslip.search(search_domain), + 'searchbar_sortings': searchbar_sortings, + 'searchbar_inputs': searchbar_inputs, + 'sortby': sortby, + 'search': search, + 'search_in': search_in, + 'page_name': 'payslip' + }) + + @http.route(['/payslip/details/'], type='http', auth="user", + website=True) + def portal_payslip_details(self, value): + """Display current user payslip details""" + payslip = request.env['hr.payslip'].sudo().browse(value) + payslip_details = [schedule for schedule in + payslip.line_ids] + return http.request.render( + 'website_hr_portal.payslip_portal_content', + { + 'payslip': payslip, + 'payslip_details': payslip_details, + 'page_name': 'payslip_details' + }) diff --git a/website_hr_portal/controllers/portal_shift.py b/website_hr_portal/controllers/portal_shift.py new file mode 100644 index 000000000..bffb80439 --- /dev/null +++ b/website_hr_portal/controllers/portal_shift.py @@ -0,0 +1,59 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import http +from odoo.http import request +from odoo.addons.portal.controllers.portal import CustomerPortal + + +class PortalEmployeeShifts(CustomerPortal): + """Display user counters""" + + def _prepare_home_portal_values(self, counters): + """Display counters of shifts of current user""" + values = super()._prepare_home_portal_values(counters) + if 'shift_count' in counters: + values['shift_count'] = request.env[ + 'hr.employee'].sudo().search_count( + [('user_id', '=', request.env.user.id)]) + return values + + @http.route(['/my/shift'], type='http', auth="user", website=True) + def portal_my_shifts(self): + """Display current user shifts""" + shift = request.env['hr.employee'].sudo().search( + [('user_id', '=', request.env.user.id)]) + leave = request.env['hr.leave'].sudo().search( + [('id', '=', request.env.user.id)]) + attendance_list = [schedule for schedule in + shift.resource_calendar_id.attendance_ids] + data = [ + {'resource_calendar_id': shift.resource_calendar_id.name, + 'leave_ids': leave.number_of_days + } + for shift in shift + ] + return http.request.render('website_hr_portal.portal_employee_shifts', + {'shift_id': shift, + 'data': data, + 'attendance_list': attendance_list, + 'page_name': 'shifts' + }) diff --git a/website_hr_portal/doc/RELEASE_NOTES.md b/website_hr_portal/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..0c4645ad1 --- /dev/null +++ b/website_hr_portal/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 28.11.2023 +#### Version 16.0.1.0.0 +#### ADD +- Initial commit for HR WEBSITE PORTAL diff --git a/website_hr_portal/static/description/assets/icons/check.png b/website_hr_portal/static/description/assets/icons/check.png new file mode 100755 index 000000000..c8e85f51d Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/check.png differ diff --git a/website_hr_portal/static/description/assets/icons/chevron.png b/website_hr_portal/static/description/assets/icons/chevron.png new file mode 100755 index 000000000..2089293d6 Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/chevron.png differ diff --git a/website_hr_portal/static/description/assets/icons/cogs.png b/website_hr_portal/static/description/assets/icons/cogs.png new file mode 100755 index 000000000..95d0bad62 Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/cogs.png differ diff --git a/website_hr_portal/static/description/assets/icons/consultation.png b/website_hr_portal/static/description/assets/icons/consultation.png new file mode 100755 index 000000000..8319d4baa Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/consultation.png differ diff --git a/website_hr_portal/static/description/assets/icons/ecom-black.png b/website_hr_portal/static/description/assets/icons/ecom-black.png new file mode 100755 index 000000000..a9385ff13 Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/ecom-black.png differ diff --git a/website_hr_portal/static/description/assets/icons/education-black.png b/website_hr_portal/static/description/assets/icons/education-black.png new file mode 100755 index 000000000..3eb09b27b Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/education-black.png differ diff --git a/website_hr_portal/static/description/assets/icons/hotel-black.png b/website_hr_portal/static/description/assets/icons/hotel-black.png new file mode 100755 index 000000000..130f613be Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/hotel-black.png differ diff --git a/website_hr_portal/static/description/assets/icons/license.png b/website_hr_portal/static/description/assets/icons/license.png new file mode 100755 index 000000000..a5869797e Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/license.png differ diff --git a/website_hr_portal/static/description/assets/icons/lifebuoy.png b/website_hr_portal/static/description/assets/icons/lifebuoy.png new file mode 100755 index 000000000..658d56ccc Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/lifebuoy.png differ diff --git a/website_hr_portal/static/description/assets/icons/logo.png b/website_hr_portal/static/description/assets/icons/logo.png new file mode 100755 index 000000000..478462d3e Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/logo.png differ diff --git a/website_hr_portal/static/description/assets/icons/manufacturing-black.png b/website_hr_portal/static/description/assets/icons/manufacturing-black.png new file mode 100755 index 000000000..697eb0e9f Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/manufacturing-black.png differ diff --git a/website_hr_portal/static/description/assets/icons/pos-black.png b/website_hr_portal/static/description/assets/icons/pos-black.png new file mode 100755 index 000000000..97c0f90c1 Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/pos-black.png differ diff --git a/website_hr_portal/static/description/assets/icons/puzzle.png b/website_hr_portal/static/description/assets/icons/puzzle.png new file mode 100755 index 000000000..65cf854e7 Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/puzzle.png differ diff --git a/website_hr_portal/static/description/assets/icons/restaurant-black.png b/website_hr_portal/static/description/assets/icons/restaurant-black.png new file mode 100755 index 000000000..4a35eb939 Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/restaurant-black.png differ diff --git a/website_hr_portal/static/description/assets/icons/service-black.png b/website_hr_portal/static/description/assets/icons/service-black.png new file mode 100755 index 000000000..301ab51cb Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/service-black.png differ diff --git a/website_hr_portal/static/description/assets/icons/trading-black.png b/website_hr_portal/static/description/assets/icons/trading-black.png new file mode 100755 index 000000000..9398ba2f1 Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/trading-black.png differ diff --git a/website_hr_portal/static/description/assets/icons/training.png b/website_hr_portal/static/description/assets/icons/training.png new file mode 100755 index 000000000..884ca024d Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/training.png differ diff --git a/website_hr_portal/static/description/assets/icons/update.png b/website_hr_portal/static/description/assets/icons/update.png new file mode 100755 index 000000000..ecbc5a01a Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/update.png differ diff --git a/website_hr_portal/static/description/assets/icons/user.png b/website_hr_portal/static/description/assets/icons/user.png new file mode 100755 index 000000000..6ffb23d9f Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/user.png differ diff --git a/website_hr_portal/static/description/assets/icons/wrench.png b/website_hr_portal/static/description/assets/icons/wrench.png new file mode 100755 index 000000000..6c04dea0f Binary files /dev/null and b/website_hr_portal/static/description/assets/icons/wrench.png differ diff --git a/website_hr_portal/static/description/assets/misc/categories.png b/website_hr_portal/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/website_hr_portal/static/description/assets/misc/categories.png differ diff --git a/website_hr_portal/static/description/assets/misc/check-box.png b/website_hr_portal/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/website_hr_portal/static/description/assets/misc/check-box.png differ diff --git a/website_hr_portal/static/description/assets/misc/compass.png b/website_hr_portal/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/website_hr_portal/static/description/assets/misc/compass.png differ diff --git a/website_hr_portal/static/description/assets/misc/corporate.png b/website_hr_portal/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/website_hr_portal/static/description/assets/misc/corporate.png differ diff --git a/website_hr_portal/static/description/assets/misc/customer-support.png b/website_hr_portal/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/website_hr_portal/static/description/assets/misc/customer-support.png differ diff --git a/website_hr_portal/static/description/assets/misc/cybrosys-logo.png b/website_hr_portal/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/website_hr_portal/static/description/assets/misc/cybrosys-logo.png differ diff --git a/website_hr_portal/static/description/assets/misc/features.png b/website_hr_portal/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/website_hr_portal/static/description/assets/misc/features.png differ diff --git a/website_hr_portal/static/description/assets/misc/logo.png b/website_hr_portal/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/website_hr_portal/static/description/assets/misc/logo.png differ diff --git a/website_hr_portal/static/description/assets/misc/pictures.png b/website_hr_portal/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/website_hr_portal/static/description/assets/misc/pictures.png differ diff --git a/website_hr_portal/static/description/assets/misc/pie-chart.png b/website_hr_portal/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/website_hr_portal/static/description/assets/misc/pie-chart.png differ diff --git a/website_hr_portal/static/description/assets/misc/right-arrow.png b/website_hr_portal/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/website_hr_portal/static/description/assets/misc/right-arrow.png differ diff --git a/website_hr_portal/static/description/assets/misc/star.png b/website_hr_portal/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/website_hr_portal/static/description/assets/misc/star.png differ diff --git a/website_hr_portal/static/description/assets/misc/support.png b/website_hr_portal/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/website_hr_portal/static/description/assets/misc/support.png differ diff --git a/website_hr_portal/static/description/assets/misc/whatsapp.png b/website_hr_portal/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/website_hr_portal/static/description/assets/misc/whatsapp.png differ diff --git a/website_hr_portal/static/description/assets/modules/11.png b/website_hr_portal/static/description/assets/modules/11.png new file mode 100644 index 000000000..e90228872 Binary files /dev/null and b/website_hr_portal/static/description/assets/modules/11.png differ diff --git a/website_hr_portal/static/description/assets/modules/12.png b/website_hr_portal/static/description/assets/modules/12.png new file mode 100644 index 000000000..df65629bf Binary files /dev/null and b/website_hr_portal/static/description/assets/modules/12.png differ diff --git a/website_hr_portal/static/description/assets/modules/13.png b/website_hr_portal/static/description/assets/modules/13.png new file mode 100644 index 000000000..7a9d3b1f6 Binary files /dev/null and b/website_hr_portal/static/description/assets/modules/13.png differ diff --git a/website_hr_portal/static/description/assets/modules/14.png b/website_hr_portal/static/description/assets/modules/14.png new file mode 100644 index 000000000..6058f6c3b Binary files /dev/null and b/website_hr_portal/static/description/assets/modules/14.png differ diff --git a/website_hr_portal/static/description/assets/modules/15.png b/website_hr_portal/static/description/assets/modules/15.png new file mode 100644 index 000000000..a44d454aa Binary files /dev/null and b/website_hr_portal/static/description/assets/modules/15.png differ diff --git a/website_hr_portal/static/description/assets/modules/16.png b/website_hr_portal/static/description/assets/modules/16.png new file mode 100644 index 000000000..d9374733c Binary files /dev/null and b/website_hr_portal/static/description/assets/modules/16.png differ diff --git a/website_hr_portal/static/description/assets/screenshots/hero1.gif b/website_hr_portal/static/description/assets/screenshots/hero1.gif new file mode 100644 index 000000000..effe03256 Binary files /dev/null and b/website_hr_portal/static/description/assets/screenshots/hero1.gif differ diff --git a/website_hr_portal/static/description/assets/screenshots/payslip_01.png b/website_hr_portal/static/description/assets/screenshots/payslip_01.png new file mode 100644 index 000000000..b28c57420 Binary files /dev/null and b/website_hr_portal/static/description/assets/screenshots/payslip_01.png differ diff --git a/website_hr_portal/static/description/assets/screenshots/payslip_02.png b/website_hr_portal/static/description/assets/screenshots/payslip_02.png new file mode 100644 index 000000000..02c1905e8 Binary files /dev/null and b/website_hr_portal/static/description/assets/screenshots/payslip_02.png differ diff --git a/website_hr_portal/static/description/assets/screenshots/port1.png b/website_hr_portal/static/description/assets/screenshots/port1.png new file mode 100644 index 000000000..14f649f4d Binary files /dev/null and b/website_hr_portal/static/description/assets/screenshots/port1.png differ diff --git a/website_hr_portal/static/description/assets/screenshots/port5.png b/website_hr_portal/static/description/assets/screenshots/port5.png new file mode 100644 index 000000000..0388cb5be Binary files /dev/null and b/website_hr_portal/static/description/assets/screenshots/port5.png differ diff --git a/website_hr_portal/static/description/assets/screenshots/port6.png b/website_hr_portal/static/description/assets/screenshots/port6.png new file mode 100644 index 000000000..01849e5f7 Binary files /dev/null and b/website_hr_portal/static/description/assets/screenshots/port6.png differ diff --git a/website_hr_portal/static/description/banner.png b/website_hr_portal/static/description/banner.png new file mode 100755 index 000000000..9e1206db9 Binary files /dev/null and b/website_hr_portal/static/description/banner.png differ diff --git a/website_hr_portal/static/description/icon.png b/website_hr_portal/static/description/icon.png new file mode 100755 index 000000000..2cb2ea09e Binary files /dev/null and b/website_hr_portal/static/description/icon.png differ diff --git a/website_hr_portal/static/description/index.html b/website_hr_portal/static/description/index.html new file mode 100755 index 000000000..476407b45 --- /dev/null +++ b/website_hr_portal/static/description/index.html @@ -0,0 +1,637 @@ +
+ +
+ +
+
+ Community +
+
+
+ + + +
+
+
+

+ HR WEBSITE PORTAL

+

+ Employees can Log in and see, their Payslips, Shifts and + Events

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

+ Explore This + Module

+
+ + + +
+
+ +
+

+ Overview +

+
+
+
+ Employees can log in and see, their payslips, remaining leaves shift + schedule and any news or events HRs posting. +
+
+ + +
+
+ +
+

+ Features +

+
+
+
+ +
+ + Available in Odoo 16.0 Community +
+
+ + Employees can log in and see, their payslips +
+
+ + Employees can log in and see, their Shift schedule +
+
+ + Employees can log in and see, any news or events HRs posting. +
+
+
+ + +
+
+

+ Screenshots +

+
+
+

+ Employees can log in to see their Events, Payslips and Shifts with + respective counts.

+ +
+ +
+

+ Details of Payslips.When we click on the Payslips, we can see the + detailed view of the payslip.

+ +
+
+

+ Details of Payslips.

+ +
+ +
+

+ Shift details of the respective employee.

+ +
+ +
+

+ When we click on the event we can see the details of website + event.

+ +
+
+ + + +
+
+ +
+

+ 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

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

Need Help?

+
+
+
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + \ No newline at end of file diff --git a/website_hr_portal/views/event_templates.xml b/website_hr_portal/views/event_templates.xml new file mode 100644 index 000000000..a1b0fbaaa --- /dev/null +++ b/website_hr_portal/views/event_templates.xml @@ -0,0 +1,11 @@ + + + + + diff --git a/website_hr_portal/views/payslip_templates.xml b/website_hr_portal/views/payslip_templates.xml new file mode 100644 index 000000000..bffee8873 --- /dev/null +++ b/website_hr_portal/views/payslip_templates.xml @@ -0,0 +1,110 @@ + + + + + + diff --git a/website_hr_portal/views/portal_templates.xml b/website_hr_portal/views/portal_templates.xml new file mode 100755 index 000000000..99052a5fc --- /dev/null +++ b/website_hr_portal/views/portal_templates.xml @@ -0,0 +1,159 @@ + + + + + + + + +