diff --git a/website_hr_portal/README.rst b/website_hr_portal/README.rst deleted file mode 100755 index 781ae7a4e..000000000 --- a/website_hr_portal/README.rst +++ /dev/null @@ -1,47 +0,0 @@ -.. 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 - -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 (AGPL-3). -(https://www.gnu.org/licenses/agpl-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 deleted file mode 100755 index 5896c68b8..000000000 --- a/website_hr_portal/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- 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 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 controllers diff --git a/website_hr_portal/__manifest__.py b/website_hr_portal/__manifest__.py deleted file mode 100755 index 84f6cedfe..000000000 --- a/website_hr_portal/__manifest__.py +++ /dev/null @@ -1,45 +0,0 @@ -# -*- 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 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": "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": "AGPL-3", - "installable": True, - "auto_install": False, - "application": False, -} diff --git a/website_hr_portal/controllers/__init__.py b/website_hr_portal/controllers/__init__.py deleted file mode 100755 index bd121980c..000000000 --- a/website_hr_portal/controllers/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -# -*- 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 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 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 deleted file mode 100755 index 3a42f9ed4..000000000 --- a/website_hr_portal/controllers/portal_event.py +++ /dev/null @@ -1,94 +0,0 @@ -# -*- 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 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 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 deleted file mode 100755 index d5f9ed986..000000000 --- a/website_hr_portal/controllers/portal_payslip.py +++ /dev/null @@ -1,114 +0,0 @@ -# -*- 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 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 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 deleted file mode 100644 index 9c3057dde..000000000 --- a/website_hr_portal/controllers/portal_shift.py +++ /dev/null @@ -1,70 +0,0 @@ -# -*- 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 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 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 deleted file mode 100755 index 0c4645ad1..000000000 --- a/website_hr_portal/doc/RELEASE_NOTES.md +++ /dev/null @@ -1,6 +0,0 @@ -## 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 deleted file mode 100755 index c8e85f51d..000000000 Binary files a/website_hr_portal/static/description/assets/icons/check.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/icons/chevron.png b/website_hr_portal/static/description/assets/icons/chevron.png deleted file mode 100755 index 2089293d6..000000000 Binary files a/website_hr_portal/static/description/assets/icons/chevron.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/icons/cogs.png b/website_hr_portal/static/description/assets/icons/cogs.png deleted file mode 100755 index 95d0bad62..000000000 Binary files a/website_hr_portal/static/description/assets/icons/cogs.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/icons/consultation.png b/website_hr_portal/static/description/assets/icons/consultation.png deleted file mode 100755 index 8319d4baa..000000000 Binary files a/website_hr_portal/static/description/assets/icons/consultation.png and /dev/null 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 deleted file mode 100755 index a9385ff13..000000000 Binary files a/website_hr_portal/static/description/assets/icons/ecom-black.png and /dev/null 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 deleted file mode 100755 index 3eb09b27b..000000000 Binary files a/website_hr_portal/static/description/assets/icons/education-black.png and /dev/null 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 deleted file mode 100755 index 130f613be..000000000 Binary files a/website_hr_portal/static/description/assets/icons/hotel-black.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/icons/license.png b/website_hr_portal/static/description/assets/icons/license.png deleted file mode 100755 index a5869797e..000000000 Binary files a/website_hr_portal/static/description/assets/icons/license.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/icons/lifebuoy.png b/website_hr_portal/static/description/assets/icons/lifebuoy.png deleted file mode 100755 index 658d56ccc..000000000 Binary files a/website_hr_portal/static/description/assets/icons/lifebuoy.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/icons/logo.png b/website_hr_portal/static/description/assets/icons/logo.png deleted file mode 100755 index 478462d3e..000000000 Binary files a/website_hr_portal/static/description/assets/icons/logo.png and /dev/null 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 deleted file mode 100755 index 697eb0e9f..000000000 Binary files a/website_hr_portal/static/description/assets/icons/manufacturing-black.png and /dev/null 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 deleted file mode 100755 index 97c0f90c1..000000000 Binary files a/website_hr_portal/static/description/assets/icons/pos-black.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/icons/puzzle.png b/website_hr_portal/static/description/assets/icons/puzzle.png deleted file mode 100755 index 65cf854e7..000000000 Binary files a/website_hr_portal/static/description/assets/icons/puzzle.png and /dev/null 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 deleted file mode 100755 index 4a35eb939..000000000 Binary files a/website_hr_portal/static/description/assets/icons/restaurant-black.png and /dev/null 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 deleted file mode 100755 index 301ab51cb..000000000 Binary files a/website_hr_portal/static/description/assets/icons/service-black.png and /dev/null 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 deleted file mode 100755 index 9398ba2f1..000000000 Binary files a/website_hr_portal/static/description/assets/icons/trading-black.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/icons/training.png b/website_hr_portal/static/description/assets/icons/training.png deleted file mode 100755 index 884ca024d..000000000 Binary files a/website_hr_portal/static/description/assets/icons/training.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/icons/update.png b/website_hr_portal/static/description/assets/icons/update.png deleted file mode 100755 index ecbc5a01a..000000000 Binary files a/website_hr_portal/static/description/assets/icons/update.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/icons/user.png b/website_hr_portal/static/description/assets/icons/user.png deleted file mode 100755 index 6ffb23d9f..000000000 Binary files a/website_hr_portal/static/description/assets/icons/user.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/icons/wrench.png b/website_hr_portal/static/description/assets/icons/wrench.png deleted file mode 100755 index 6c04dea0f..000000000 Binary files a/website_hr_portal/static/description/assets/icons/wrench.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/misc/categories.png b/website_hr_portal/static/description/assets/misc/categories.png deleted file mode 100644 index bedf1e0b1..000000000 Binary files a/website_hr_portal/static/description/assets/misc/categories.png and /dev/null 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 deleted file mode 100644 index 42caf24b9..000000000 Binary files a/website_hr_portal/static/description/assets/misc/check-box.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/misc/compass.png b/website_hr_portal/static/description/assets/misc/compass.png deleted file mode 100644 index d5fed8faa..000000000 Binary files a/website_hr_portal/static/description/assets/misc/compass.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/misc/corporate.png b/website_hr_portal/static/description/assets/misc/corporate.png deleted file mode 100644 index 2eb13edbf..000000000 Binary files a/website_hr_portal/static/description/assets/misc/corporate.png and /dev/null 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 deleted file mode 100644 index 79efc72ed..000000000 Binary files a/website_hr_portal/static/description/assets/misc/customer-support.png and /dev/null 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 deleted file mode 100644 index cc3cc0ccf..000000000 Binary files a/website_hr_portal/static/description/assets/misc/cybrosys-logo.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/misc/features.png b/website_hr_portal/static/description/assets/misc/features.png deleted file mode 100644 index b41769f77..000000000 Binary files a/website_hr_portal/static/description/assets/misc/features.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/misc/logo.png b/website_hr_portal/static/description/assets/misc/logo.png deleted file mode 100644 index 478462d3e..000000000 Binary files a/website_hr_portal/static/description/assets/misc/logo.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/misc/pictures.png b/website_hr_portal/static/description/assets/misc/pictures.png deleted file mode 100644 index 56d255fe9..000000000 Binary files a/website_hr_portal/static/description/assets/misc/pictures.png and /dev/null 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 deleted file mode 100644 index 426e05244..000000000 Binary files a/website_hr_portal/static/description/assets/misc/pie-chart.png and /dev/null 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 deleted file mode 100644 index 730984a06..000000000 Binary files a/website_hr_portal/static/description/assets/misc/right-arrow.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/misc/star.png b/website_hr_portal/static/description/assets/misc/star.png deleted file mode 100644 index 2eb9ab29f..000000000 Binary files a/website_hr_portal/static/description/assets/misc/star.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/misc/support.png b/website_hr_portal/static/description/assets/misc/support.png deleted file mode 100644 index 4f18b8b82..000000000 Binary files a/website_hr_portal/static/description/assets/misc/support.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/misc/whatsapp.png b/website_hr_portal/static/description/assets/misc/whatsapp.png deleted file mode 100644 index d513a5356..000000000 Binary files a/website_hr_portal/static/description/assets/misc/whatsapp.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/modules/11.png b/website_hr_portal/static/description/assets/modules/11.png deleted file mode 100644 index e90228872..000000000 Binary files a/website_hr_portal/static/description/assets/modules/11.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/modules/12.png b/website_hr_portal/static/description/assets/modules/12.png deleted file mode 100644 index df65629bf..000000000 Binary files a/website_hr_portal/static/description/assets/modules/12.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/modules/13.png b/website_hr_portal/static/description/assets/modules/13.png deleted file mode 100644 index 7a9d3b1f6..000000000 Binary files a/website_hr_portal/static/description/assets/modules/13.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/modules/14.png b/website_hr_portal/static/description/assets/modules/14.png deleted file mode 100644 index 6058f6c3b..000000000 Binary files a/website_hr_portal/static/description/assets/modules/14.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/modules/15.png b/website_hr_portal/static/description/assets/modules/15.png deleted file mode 100644 index a44d454aa..000000000 Binary files a/website_hr_portal/static/description/assets/modules/15.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/modules/16.png b/website_hr_portal/static/description/assets/modules/16.png deleted file mode 100644 index d9374733c..000000000 Binary files a/website_hr_portal/static/description/assets/modules/16.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/screenshots/hero1.gif b/website_hr_portal/static/description/assets/screenshots/hero1.gif deleted file mode 100644 index effe03256..000000000 Binary files a/website_hr_portal/static/description/assets/screenshots/hero1.gif and /dev/null 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 deleted file mode 100644 index b28c57420..000000000 Binary files a/website_hr_portal/static/description/assets/screenshots/payslip_01.png and /dev/null 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 deleted file mode 100644 index 02c1905e8..000000000 Binary files a/website_hr_portal/static/description/assets/screenshots/payslip_02.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/screenshots/port1.png b/website_hr_portal/static/description/assets/screenshots/port1.png deleted file mode 100644 index 14f649f4d..000000000 Binary files a/website_hr_portal/static/description/assets/screenshots/port1.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/screenshots/port5.png b/website_hr_portal/static/description/assets/screenshots/port5.png deleted file mode 100644 index 0388cb5be..000000000 Binary files a/website_hr_portal/static/description/assets/screenshots/port5.png and /dev/null differ diff --git a/website_hr_portal/static/description/assets/screenshots/port6.png b/website_hr_portal/static/description/assets/screenshots/port6.png deleted file mode 100644 index 01849e5f7..000000000 Binary files a/website_hr_portal/static/description/assets/screenshots/port6.png and /dev/null differ diff --git a/website_hr_portal/static/description/banner.png b/website_hr_portal/static/description/banner.png deleted file mode 100755 index 9e1206db9..000000000 Binary files a/website_hr_portal/static/description/banner.png and /dev/null differ diff --git a/website_hr_portal/static/description/icon.png b/website_hr_portal/static/description/icon.png deleted file mode 100755 index 2cb2ea09e..000000000 Binary files a/website_hr_portal/static/description/icon.png and /dev/null differ diff --git a/website_hr_portal/static/description/index.html b/website_hr_portal/static/description/index.html deleted file mode 100755 index 476407b45..000000000 --- a/website_hr_portal/static/description/index.html +++ /dev/null @@ -1,637 +0,0 @@ -
- -
- -
-
- 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 deleted file mode 100644 index a1b0fbaaa..000000000 --- a/website_hr_portal/views/event_templates.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - diff --git a/website_hr_portal/views/payslip_templates.xml b/website_hr_portal/views/payslip_templates.xml deleted file mode 100644 index bffee8873..000000000 --- a/website_hr_portal/views/payslip_templates.xml +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - diff --git a/website_hr_portal/views/portal_templates.xml b/website_hr_portal/views/portal_templates.xml deleted file mode 100755 index 99052a5fc..000000000 --- a/website_hr_portal/views/portal_templates.xml +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - -