diff --git a/front_office_management_portal/README.rst b/front_office_management_portal/README.rst new file mode 100755 index 000000000..0a8eb1e2b --- /dev/null +++ b/front_office_management_portal/README.rst @@ -0,0 +1,48 @@ +.. 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 + +Front Office Management Portal +============================== +Helps You To Manage Front Office Operations through portal. + +Configuration +============= +* Install this module along with the Front Office Management module and select the user group "Receptionist" from the user form view. + +License +------- +GNU AFFERO GENERAL PUBLIC LICENSE Version 3 (AGPL v3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + + +Credits +------- +* Developer:(V15) Swaraj R , 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/front_office_management_portal/__init__.py b/front_office_management_portal/__init__.py new file mode 100755 index 000000000..ad76e763e --- /dev/null +++ b/front_office_management_portal/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Swaraj R() +# +# 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/front_office_management_portal/__manifest__.py b/front_office_management_portal/__manifest__.py new file mode 100755 index 000000000..3b96d48a2 --- /dev/null +++ b/front_office_management_portal/__manifest__.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Swaraj R() +# +# 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": "Front Office Management Portal", + "version": "15.0.1.0.0", + "category": "Human Resources", + "summary": "Employees visits management", + "description": "Module offering a basic solution " + "to manage employee visits efficiently through portal.", + "author": "Cybrosys Techno Solutions", + "company": "Cybrosys Techno Solutions", + "maintainer": "Cybrosys Techno Solutions", + "website": "https://www.cybrosys.com", + "depends": [ + "mail", + "contacts", + "hr", + "website", + "portal", + "front_office_management", + ], + "data": [ + "views/fo_visits_portal_templates.xml", + ], + "images": ["static/description/banner.png"], + "license": "AGPL-3", + "installable": True, + "auto_install": False, + "application": False, +} diff --git a/front_office_management_portal/controllers/__init__.py b/front_office_management_portal/controllers/__init__.py new file mode 100755 index 000000000..b3b7f646f --- /dev/null +++ b/front_office_management_portal/controllers/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Swaraj R() +# +# 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 front_office_management_portal +from . import portal diff --git a/front_office_management_portal/controllers/front_office_management_portal.py b/front_office_management_portal/controllers/front_office_management_portal.py new file mode 100755 index 000000000..469d0f9d1 --- /dev/null +++ b/front_office_management_portal/controllers/front_office_management_portal.py @@ -0,0 +1,95 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Swaraj R() +# +# 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.tools.safe_eval import datetime + + +class VisitsManagement(http.Controller): + """ Class to specify the route and template for + visits management document""" + + @http.route(['/visit_management'], type='http', auth='user', + website=True) + def create_visit_management(self): + """ Function to fetch visits records and pass to the portal + template""" + if request.env.user.has_group( + 'front_office_management.group_receptionist'): + visit_management = request.env['fo.visit'].sudo().search([]) + return request.render( + 'front_office_management_portal.portal_visit_management', + {'visit_management': visit_management, + 'page_name': 'employee_visits_management', }) + + @http.route(['/visit_management/'], type='http', + auth="user", website=True) + def visit_management_details(self, record): + """ Function to fetch data of selected visit record and pass to + the portal template""" + visit_management_rec = request.env['fo.visit'].sudo().browse(record) + visit_management_line_rec = request.env[ + 'fo.belongings'].sudo().search( + [('belongings_id_fov_visitor', '=', record)]) + if request.env.user.has_group( + 'front_office_management.group_receptionist'): + return http.request.render( + 'front_office_management_portal.portal_visit_record_details', + {'visit_management_rec': visit_management_rec, + 'visit_management_line_rec': visit_management_line_rec, + 'page_name': 'employee_visits_management_rec'}) + + @http.route(['/visit_management/check_in/'], type='http', + auth="user", website=True) + def visit_management_operation_check_in(self, record): + """ Function to change the state of draft visit record to + checked in """ + visit_management_rec_operation = request.env[ + 'fo.visit'].sudo().browse(record) + for record in visit_management_rec_operation: + record.write({'state': 'check_in', + 'check_in_date': datetime.datetime.now()}) + if request.env.user.has_group( + 'front_office_management.group_receptionist'): + visit_management = request.env['fo.visit'].sudo().search([]) + return request.render( + 'front_office_management_portal.portal_visit_management', + {'visit_management': visit_management, + 'page_name': 'employee_visits_management', }) + + @http.route(['/visit_management/check_out/'], + type='http', auth="user", website=True) + def visit_management_operation_check_out(self, record): + """ Function to change the state of checked in visit record to + checked out """ + visit_management_rec_operation = request.env[ + 'fo.visit'].sudo().browse(record) + for record in visit_management_rec_operation: + record.write({'state': 'check_out', + 'check_out_date': datetime.datetime.now()}) + if request.env.user.has_group( + 'front_office_management.group_receptionist'): + visit_management = request.env['fo.visit'].sudo().search([]) + return request.render( + 'front_office_management_portal.portal_visit_management', + {'visit_management': visit_management, + 'page_name': 'employee_visits_management'}) diff --git a/front_office_management_portal/controllers/portal.py b/front_office_management_portal/controllers/portal.py new file mode 100755 index 000000000..b8be67bd1 --- /dev/null +++ b/front_office_management_portal/controllers/portal.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Swaraj R() +# +# 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.addons.portal.controllers import portal +from odoo.http import request + + +class CustomerPortal(portal.CustomerPortal): + """Class for managing the customer portal functionality + of visits management.""" + def _prepare_home_portal_values(self, counters): + """ Function for finding the number of Visits records """ + values = super()._prepare_home_portal_values(counters) + if request.env.user.has_group( + 'front_office_management.group_receptionist'): + if 'visits_count' in counters: + values['visits_count'] = request.env[ + 'fo.visit'].sudo().search_count([]) + return values diff --git a/front_office_management_portal/doc/RELEASE_NOTES.md b/front_office_management_portal/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..9d8dfa906 --- /dev/null +++ b/front_office_management_portal/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 04.07.2024 +#### Version 15.0.1.0.0 +#### ADD +- Initial commit for Front Office Management Portal diff --git a/front_office_management_portal/static/description/assets/icons/cogs.png b/front_office_management_portal/static/description/assets/icons/cogs.png new file mode 100755 index 000000000..95d0bad62 Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/cogs.png differ diff --git a/front_office_management_portal/static/description/assets/icons/consultation.png b/front_office_management_portal/static/description/assets/icons/consultation.png new file mode 100755 index 000000000..8319d4baa Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/consultation.png differ diff --git a/front_office_management_portal/static/description/assets/icons/ecom-black.png b/front_office_management_portal/static/description/assets/icons/ecom-black.png new file mode 100755 index 000000000..a9385ff13 Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/ecom-black.png differ diff --git a/front_office_management_portal/static/description/assets/icons/education-black.png b/front_office_management_portal/static/description/assets/icons/education-black.png new file mode 100755 index 000000000..3eb09b27b Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/education-black.png differ diff --git a/front_office_management_portal/static/description/assets/icons/hotel-black.png b/front_office_management_portal/static/description/assets/icons/hotel-black.png new file mode 100755 index 000000000..130f613be Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/hotel-black.png differ diff --git a/front_office_management_portal/static/description/assets/icons/license.png b/front_office_management_portal/static/description/assets/icons/license.png new file mode 100755 index 000000000..a5869797e Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/license.png differ diff --git a/front_office_management_portal/static/description/assets/icons/lifebuoy.png b/front_office_management_portal/static/description/assets/icons/lifebuoy.png new file mode 100755 index 000000000..658d56ccc Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/lifebuoy.png differ diff --git a/front_office_management_portal/static/description/assets/icons/manufacturing-black.png b/front_office_management_portal/static/description/assets/icons/manufacturing-black.png new file mode 100755 index 000000000..697eb0e9f Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/manufacturing-black.png differ diff --git a/front_office_management_portal/static/description/assets/icons/pos-black.png b/front_office_management_portal/static/description/assets/icons/pos-black.png new file mode 100755 index 000000000..97c0f90c1 Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/pos-black.png differ diff --git a/front_office_management_portal/static/description/assets/icons/puzzle.png b/front_office_management_portal/static/description/assets/icons/puzzle.png new file mode 100755 index 000000000..65cf854e7 Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/puzzle.png differ diff --git a/front_office_management_portal/static/description/assets/icons/restaurant-black.png b/front_office_management_portal/static/description/assets/icons/restaurant-black.png new file mode 100755 index 000000000..4a35eb939 Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/restaurant-black.png differ diff --git a/front_office_management_portal/static/description/assets/icons/service-black.png b/front_office_management_portal/static/description/assets/icons/service-black.png new file mode 100755 index 000000000..301ab51cb Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/service-black.png differ diff --git a/front_office_management_portal/static/description/assets/icons/trading-black.png b/front_office_management_portal/static/description/assets/icons/trading-black.png new file mode 100755 index 000000000..9398ba2f1 Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/trading-black.png differ diff --git a/front_office_management_portal/static/description/assets/icons/training.png b/front_office_management_portal/static/description/assets/icons/training.png new file mode 100755 index 000000000..884ca024d Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/training.png differ diff --git a/front_office_management_portal/static/description/assets/icons/update.png b/front_office_management_portal/static/description/assets/icons/update.png new file mode 100755 index 000000000..ecbc5a01a Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/update.png differ diff --git a/front_office_management_portal/static/description/assets/icons/user.png b/front_office_management_portal/static/description/assets/icons/user.png new file mode 100755 index 000000000..6ffb23d9f Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/user.png differ diff --git a/front_office_management_portal/static/description/assets/icons/wrench.png b/front_office_management_portal/static/description/assets/icons/wrench.png new file mode 100755 index 000000000..6c04dea0f Binary files /dev/null and b/front_office_management_portal/static/description/assets/icons/wrench.png differ diff --git a/front_office_management_portal/static/description/assets/images/advance_image.png b/front_office_management_portal/static/description/assets/images/advance_image.png new file mode 100644 index 000000000..3d05cac13 Binary files /dev/null and b/front_office_management_portal/static/description/assets/images/advance_image.png differ diff --git a/front_office_management_portal/static/description/assets/images/appraisal_image.png b/front_office_management_portal/static/description/assets/images/appraisal_image.png new file mode 100644 index 000000000..cecf98605 Binary files /dev/null and b/front_office_management_portal/static/description/assets/images/appraisal_image.png differ diff --git a/front_office_management_portal/static/description/assets/images/core_image.gif b/front_office_management_portal/static/description/assets/images/core_image.gif new file mode 100644 index 000000000..4619d40a0 Binary files /dev/null and b/front_office_management_portal/static/description/assets/images/core_image.gif differ diff --git a/front_office_management_portal/static/description/assets/images/info_image.png b/front_office_management_portal/static/description/assets/images/info_image.png new file mode 100644 index 000000000..8bb7c80eb Binary files /dev/null and b/front_office_management_portal/static/description/assets/images/info_image.png differ diff --git a/front_office_management_portal/static/description/assets/images/multi_image.png b/front_office_management_portal/static/description/assets/images/multi_image.png new file mode 100644 index 000000000..0e2e34c7f Binary files /dev/null and b/front_office_management_portal/static/description/assets/images/multi_image.png differ diff --git a/front_office_management_portal/static/description/assets/images/overtime_image.png b/front_office_management_portal/static/description/assets/images/overtime_image.png new file mode 100644 index 000000000..9a7adb172 Binary files /dev/null and b/front_office_management_portal/static/description/assets/images/overtime_image.png differ diff --git a/front_office_management_portal/static/description/assets/images/salary_image.png b/front_office_management_portal/static/description/assets/images/salary_image.png new file mode 100644 index 000000000..3d05cac13 Binary files /dev/null and b/front_office_management_portal/static/description/assets/images/salary_image.png differ diff --git a/front_office_management_portal/static/description/assets/misc/categories.png b/front_office_management_portal/static/description/assets/misc/categories.png new file mode 100755 index 000000000..bedf1e0b1 Binary files /dev/null and b/front_office_management_portal/static/description/assets/misc/categories.png differ diff --git a/front_office_management_portal/static/description/assets/misc/check-box.png b/front_office_management_portal/static/description/assets/misc/check-box.png new file mode 100755 index 000000000..42caf24b9 Binary files /dev/null and b/front_office_management_portal/static/description/assets/misc/check-box.png differ diff --git a/front_office_management_portal/static/description/assets/misc/compass.png b/front_office_management_portal/static/description/assets/misc/compass.png new file mode 100755 index 000000000..d5fed8faa Binary files /dev/null and b/front_office_management_portal/static/description/assets/misc/compass.png differ diff --git a/front_office_management_portal/static/description/assets/misc/corporate.png b/front_office_management_portal/static/description/assets/misc/corporate.png new file mode 100755 index 000000000..2eb13edbf Binary files /dev/null and b/front_office_management_portal/static/description/assets/misc/corporate.png differ diff --git a/front_office_management_portal/static/description/assets/misc/customer-support.png b/front_office_management_portal/static/description/assets/misc/customer-support.png new file mode 100755 index 000000000..79efc72ed Binary files /dev/null and b/front_office_management_portal/static/description/assets/misc/customer-support.png differ diff --git a/front_office_management_portal/static/description/assets/misc/cybrosys-logo.png b/front_office_management_portal/static/description/assets/misc/cybrosys-logo.png new file mode 100755 index 000000000..cc3cc0ccf Binary files /dev/null and b/front_office_management_portal/static/description/assets/misc/cybrosys-logo.png differ diff --git a/front_office_management_portal/static/description/assets/misc/features.png b/front_office_management_portal/static/description/assets/misc/features.png new file mode 100755 index 000000000..b41769f77 Binary files /dev/null and b/front_office_management_portal/static/description/assets/misc/features.png differ diff --git a/front_office_management_portal/static/description/assets/misc/logo.png b/front_office_management_portal/static/description/assets/misc/logo.png new file mode 100755 index 000000000..478462d3e Binary files /dev/null and b/front_office_management_portal/static/description/assets/misc/logo.png differ diff --git a/front_office_management_portal/static/description/assets/misc/pictures.png b/front_office_management_portal/static/description/assets/misc/pictures.png new file mode 100755 index 000000000..56d255fe9 Binary files /dev/null and b/front_office_management_portal/static/description/assets/misc/pictures.png differ diff --git a/front_office_management_portal/static/description/assets/misc/pie-chart.png b/front_office_management_portal/static/description/assets/misc/pie-chart.png new file mode 100755 index 000000000..426e05244 Binary files /dev/null and b/front_office_management_portal/static/description/assets/misc/pie-chart.png differ diff --git a/front_office_management_portal/static/description/assets/misc/right-arrow.png b/front_office_management_portal/static/description/assets/misc/right-arrow.png new file mode 100755 index 000000000..730984a06 Binary files /dev/null and b/front_office_management_portal/static/description/assets/misc/right-arrow.png differ diff --git a/front_office_management_portal/static/description/assets/misc/star.png b/front_office_management_portal/static/description/assets/misc/star.png new file mode 100755 index 000000000..2eb9ab29f Binary files /dev/null and b/front_office_management_portal/static/description/assets/misc/star.png differ diff --git a/front_office_management_portal/static/description/assets/misc/support.png b/front_office_management_portal/static/description/assets/misc/support.png new file mode 100755 index 000000000..4f18b8b82 Binary files /dev/null and b/front_office_management_portal/static/description/assets/misc/support.png differ diff --git a/front_office_management_portal/static/description/assets/misc/whatsapp.png b/front_office_management_portal/static/description/assets/misc/whatsapp.png new file mode 100755 index 000000000..d513a5356 Binary files /dev/null and b/front_office_management_portal/static/description/assets/misc/whatsapp.png differ diff --git a/front_office_management_portal/static/description/assets/screenshots/fo_1.png b/front_office_management_portal/static/description/assets/screenshots/fo_1.png new file mode 100644 index 000000000..886bdbc83 Binary files /dev/null and b/front_office_management_portal/static/description/assets/screenshots/fo_1.png differ diff --git a/front_office_management_portal/static/description/assets/screenshots/hero.gif b/front_office_management_portal/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..6c09a6505 Binary files /dev/null and b/front_office_management_portal/static/description/assets/screenshots/hero.gif differ diff --git a/front_office_management_portal/static/description/assets/screenshots/portal.png b/front_office_management_portal/static/description/assets/screenshots/portal.png new file mode 100644 index 000000000..599485b1c Binary files /dev/null and b/front_office_management_portal/static/description/assets/screenshots/portal.png differ diff --git a/front_office_management_portal/static/description/assets/screenshots/portal2.png b/front_office_management_portal/static/description/assets/screenshots/portal2.png new file mode 100644 index 000000000..97326b5f2 Binary files /dev/null and b/front_office_management_portal/static/description/assets/screenshots/portal2.png differ diff --git a/front_office_management_portal/static/description/assets/screenshots/portal3.png b/front_office_management_portal/static/description/assets/screenshots/portal3.png new file mode 100644 index 000000000..c70d145ee Binary files /dev/null and b/front_office_management_portal/static/description/assets/screenshots/portal3.png differ diff --git a/front_office_management_portal/static/description/banner.png b/front_office_management_portal/static/description/banner.png new file mode 100644 index 000000000..374c74912 Binary files /dev/null and b/front_office_management_portal/static/description/banner.png differ diff --git a/front_office_management_portal/static/description/icon.png b/front_office_management_portal/static/description/icon.png new file mode 100644 index 000000000..57e0a5921 Binary files /dev/null and b/front_office_management_portal/static/description/icon.png differ diff --git a/front_office_management_portal/static/description/index.html b/front_office_management_portal/static/description/index.html new file mode 100755 index 000000000..3546bda64 --- /dev/null +++ b/front_office_management_portal/static/description/index.html @@ -0,0 +1,687 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+ +
+
+ +
+
+
+ +

+ Front Office Management Portal +

+

+ Managing and Recording the Visits in a Company through + Portal. +

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

+ Explore This + Module +

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ This module helps to manage the visits in a company through portal. +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + + Portal view for visits record. + +
+
+ + + Detailed view of visits record and also edit option are available. + +
+
+
+
+ + + Available in Odoo 15.0 + Community and Enterprise. + +
+
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+
+

+ Select Security Group +

+

+ Select security group "Receptionist" to create visits and view + it in portal. +

+ +
+
+

+ Visits in Portal View. +

+

+ From Portal Document section, able to view the Visits Records + along with the number of records created. +

+ +
+
+

+ Manage Visits Details +

+

+ On Clicking, Visits from Documents, will list all the created + Visits records with details as shown in the below image. It's + possible to change the State of the Visits by clicking on the + "Check Out" or "Check in" and also able to edit the Visits + records in Draft State by clicking on the edit icon. +

+ +
+
+

+ Visits Records Portal Form View +

+

+ On clicking each Visits records, detailed information's + regarding the Visits will be displayed. +

+ +
+
+
+ + +
+
+

Suggested Products

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

+ Our Services +

+
+ +
+
+
+
+ +
+
+ Odoo + Customization +
+
+ +
+
+ +
+
+ Odoo + Implementation +
+
+ +
+
+ +
+
+ Odoo + Support +
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer +
+
+ +
+
+ +
+
+ Odoo + Integration +
+
+ +
+
+ +
+
+ Odoo + Migration +
+
+ + +
+
+ +
+
+ Odoo + Consultancy +
+
+ +
+
+ +
+
+ Odoo + Implementation +
+
+ +
+
+ +
+
+ Odoo + Licensing Consultancy +
+
+
+ +
+ + + + + +
+
+ +
+

+ Our + Industries +

+
+ +
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products +

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience +

+
+
+ +
+
+ +
+ Education +
+

+ A platform for + educational management +

+
+
+ +
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations +

+
+
+ +
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages +

+
+
+ +
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice +

+
+
+ +
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically +

+
+
+ +
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application +

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

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get in touch. +

+ +

+ odoo@cybrosys.com +

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+ +91 86068 + 27707 +

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/front_office_management_portal/views/fo_visits_portal_templates.xml b/front_office_management_portal/views/fo_visits_portal_templates.xml new file mode 100755 index 000000000..48a8915ba --- /dev/null +++ b/front_office_management_portal/views/fo_visits_portal_templates.xml @@ -0,0 +1,216 @@ + + + + + + + + + + + + +