diff --git a/website_portal_events/README.rst b/website_portal_events/README.rst deleted file mode 100755 index c497f365c..000000000 --- a/website_portal_events/README.rst +++ /dev/null @@ -1,49 +0,0 @@ -.. image:: https://img.shields.io/badge/licenses-AGPL--3-blue.svg - :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 - -Website Portal Events -===================== -This module helps to show event tickets in the portal in odoo17. - -Configuration -============= -* No additional configurations needed - -Company -------- -* `Cybrosys Techno Solutions `__ - -License -------- -General Public License, Version 3 (AGPL v3). -(https://www.gnu.org/licenses/agpl-3.0-standalone.html) - -Credits -------- -* Developer: - (V16) Sruthi MK - (V17) Anjhana A K - 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/website_portal_events/__init__.py b/website_portal_events/__init__.py deleted file mode 100644 index 91a3b0f49..000000000 --- a/website_portal_events/__init__.py +++ /dev/null @@ -1,21 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################# -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author:Anjhana A K() -# 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_portal_events/__manifest__.py b/website_portal_events/__manifest__.py deleted file mode 100644 index aa7429d72..000000000 --- a/website_portal_events/__manifest__.py +++ /dev/null @@ -1,42 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################# -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author:Anjhana A K() -# 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': 'Website Portal Events', - 'version': '17.0.1.0.0', - 'category': 'Website', - 'summary': 'Show event tickets in customer portal', - 'description': """Which will helps to show all events in the customer - portal. Also there is an option to search, filter, sort the events to - get it easily and we can download the events""", - 'author': 'Cybrosys Techno solutions', - 'company': 'Cybrosys Techno Solutions', - 'maintainer': 'Cybrosys Techno Solutions', - 'website': 'https://www.cybrosys.com', - 'depends': ['website_event', 'portal'], - 'data': [ - 'views/event_portal_templates.xml' - ], - 'images': ['static/description/banner.jpg'], - 'license': 'AGPL-3', - 'installable': True, - 'application': False, - 'auto_install': False, -} diff --git a/website_portal_events/controllers/__init__.py b/website_portal_events/controllers/__init__.py deleted file mode 100644 index 76ea0e621..000000000 --- a/website_portal_events/controllers/__init__.py +++ /dev/null @@ -1,21 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################# -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author:Anjhana A K() -# 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 website_portal_events diff --git a/website_portal_events/controllers/website_portal_events.py b/website_portal_events/controllers/website_portal_events.py deleted file mode 100644 index 16177ccf1..000000000 --- a/website_portal_events/controllers/website_portal_events.py +++ /dev/null @@ -1,283 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################# -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2024-TODAY Cybrosys Technologies() -# Author:Anjhana A K() -# 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 collections import OrderedDict -from datetime import date, timedelta -from odoo import fields, http, _ -from odoo.http import request -from odoo.exceptions import AccessError, MissingError -from odoo.osv import expression -from odoo.osv.expression import OR, AND -from odoo.addons.portal.controllers.portal import CustomerPortal, \ - pager as portal_pager - - -class PortalEvent(CustomerPortal): - """PortalEvent helps to show the information of all events in the - customer portal""" - - def _prepare_home_portal_values(self, counters): - """Which will set all portal values. And return total events count""" - values = super()._prepare_home_portal_values(counters) - if 'event_count' in counters: - event_count = request.env['event.registration'].search_count( - self._get_events_domain()) \ - if request.env['event.registration'].check_access_rights('read', - raise_exception=False) else 0 - values['event_count'] = event_count - return values - - def _get_events_domain(self): - """Returns the events that are in stage 'cancel' and 'draft'""" - return [('state', 'not in', ('cancel', 'draft'))] - - @http.route(['/my/events', '/my/events/page/'], type='http', - auth="user", website=True) - def portal_my_events(self, page=1, date_begin=None, date_end=None, - sortby=None, filterby=None, search=None, - search_in='content', **kw): - """Returns the corresponding event datas and pager information. - Which will render a newtemplate to show the events""" - values = self._prepare_my_event_values(page, date_begin, date_end, - sortby, filterby, - search, search_in) - # Pager - pager = portal_pager(**values['pager']) - # Content according to pager and archive selected - events = values['events'](pager['offset']) - request.session['my_events_history'] = events.ids[:100] - values.update({ - 'events': events, - 'pager': pager, - }) - return request.render("website_portal_events.portal_my_events", values) - - @http.route(['/my/event_data/'], - type='http', auth="public", - website=True) - def portal_my_helpdesk(self, event=None, access_token=None, **kw): - """Helps to show the portal event datas. Which will redirected - to the portal form""" - try: - event_sudo = self._document_check_access('event.registration', - event, - access_token) - except (AccessError, MissingError): - return request.redirect('/my') - values = self._get_event_page_view_values(event_sudo, access_token, - **kw) - return request.render("website_portal_events.event_portal_form", - values) - - @http.route(['/download/event_data/'], - type='http', auth="public", - website=True) - def portal_my_event_download(self, event=None, access_token=None, **kw): - """Helps to download event ticket from the portal""" - if event: - pdf, _ = request.env['ir.actions.report'].sudo()._render_qweb_pdf( - 'event.action_report_event_registration_full_page_ticket', - [event]) - pdfhttpheaders = [('Content-Type', 'application/pdf'), - ('Content-Length', str(len(pdf))), - ('Content-Disposition', - 'attachment; filename=report.pdf')] - response = request.make_response(pdf, headers=pdfhttpheaders) - response.mimetype = 'application/pdf' - return response - else: - return request.redirect('/my/event_data') - - def _get_event_page_view_values(self, event, access_token, **kwargs): - """Get the page view values""" - values = { - 'event': event, - 'page_name': 'event', - } - return self._get_page_view_values(event, access_token, values, - 'my_events_history', False, **kwargs) - - def _get_event_searchbar_sortings(self): - """Sort the events based on the date and name""" - return { - 'date': {'label': _('Date'), 'order': 'create_date desc'}, - 'name': {'label': _('Name'), 'order': 'name asc'}, - } - - def _get_event_searchbar_filters(self): - """Filter the events by All, Last month, This Month, Last Week, - This Week, Last Year, This Year, Today and This Quarter""" - # today = date.today() - today = fields.Date.today() - this_month_start = today.replace(day=1) - this_quarter_start = today.replace(day=1, month=(( - today.month - 1) // 3) * 3 + 1) - this_week_start = today - timedelta(days=today.weekday()) - this_year_start = today.replace(month=1, day=1) - return { - 'all': {'label': _('All'), 'domain': []}, - 'last_month': { - 'label': _('Last Month'), - 'domain': [('create_date', '>=', - (this_month_start - timedelta(days=30)).strftime( - '%Y-%m-%d')), - ('create_date', '<=', - (this_month_start - timedelta(days=1)).strftime( - '%Y-%m-%d'))] - }, - 'this_month': { - 'label': _('This Month'), - 'domain': [ - ( - 'create_date', '>=', - this_month_start.strftime('%Y-%m-%d')), - ('create_date', '<=', today.strftime('%Y-%m-%d'))] - }, - 'last_week': { - 'label': _('Last Week'), - 'domain': [('create_date', '>=', - (this_week_start - timedelta(days=7)).strftime( - '%Y-%m-%d')), - ('create_date', '<=', - (this_week_start - timedelta(days=1)).strftime( - '%Y-%m-%d'))] - }, - 'this_week': { - 'label': _('This Week'), - 'domain': [ - ('create_date', '>=', this_week_start.strftime('%Y-%m-%d')), - ('create_date', '<=', today.strftime('%Y-%m-%d'))] - }, - 'last_year': { - 'label': _('Last Year'), - 'domain': [('create_date', '>=', - (this_year_start - timedelta(days=365)).strftime( - '%Y-%m-%d')), - ('create_date', '<=', - (this_year_start - timedelta(days=1)).strftime( - '%Y-%m-%d'))] - }, - 'this_year': { - 'label': _('This Year'), - 'domain': [ - ('create_date', '>=', this_year_start.strftime('%Y-%m-%d')), - ('create_date', '<=', today.strftime('%Y-%m-%d'))] - }, - 'today': { - 'label': _('Today'), - 'domain': [('create_date', '=', today.strftime('%Y-%m-%d'))] - }, - 'this_quarter': { - 'label': _('This Quarter'), - 'domain': [ - ('create_date', '>=', - this_quarter_start.strftime('%Y-%m-%d')), - ('create_date', '<=', today.strftime('%Y-%m-%d'))] - } - } - - def _get_event_search_domain(self, search_in, search): - """Returns the events for the given search(If we have not entered - the full name which will also gives the output""" - search_domain = [] - if search_in == 'all': - search_domain.append([('name', 'ilike', - f'{search}%')]) - search_domain.append([('email', 'ilike', - f'{search}%')]) - search_domain.append([('phone', 'ilike', - f'{search}%')]) - if search_in in ('event', 'all'): - search_domain.append([('event_id', 'ilike', - f'{search}%')]) - return OR(search_domain) - - def _get_event_searchbar_inputs(self): - """Which will returns a dictionary of values by the search contents - as Search in All, in Content, Search in Stages, Search in Event""" - values = { - 'all': {'input': 'all', 'label': _('Search in All'), 'order': 1}, - 'event': {'input': 'event', 'label': _('Search in Event'), - 'order': 2}, - } - return dict(sorted(values.items(), key=lambda item: item[1]["order"])) - - def _prepare_my_event_values(self, page, date_begin, date_end, sortby, - filterby, search, search_in, - domain=None, url="/my/events"): - """Add all event values to the portal. Which will return the - values event, page, pager, filter, sort, and search""" - values = self._prepare_portal_layout_values() - Events = request.env['event.registration'] - domain = expression.AND([ - domain or [], - self._get_events_domain(), - ]) - searchbar_sortings = self._get_event_searchbar_sortings() - # default sort by order - if not sortby: - sortby = 'date' - order = searchbar_sortings[sortby]['order'] - searchbar_filters = self._get_event_searchbar_filters() - # default filter by value - if not filterby: - filterby = 'all' - domain += searchbar_filters[filterby]['domain'] - searchbar_inputs = self._get_event_searchbar_inputs() - if search and search_in: - domain += self._get_event_search_domain(search_in, search) - if date_begin and date_end: - domain += [('create_date', '>', date_begin), - ('create_date', '<=', date_end)] - values.update({ - 'date': date_begin, - # content according to pager and archive selected - # lambda function to get the invoices recordset when the pager - # will be defined in the main method of a route - 'events': lambda pager_offset: self._get_grouped_events(Events, - domain, - order, - pager_offset), - 'page_name': 'event', - 'pager': { - "url": url, - "url_args": {'date_begin': date_begin, 'date_end': date_end, - 'sortby': sortby, 'search_in': search_in, - 'search': search}, - "total": Events.search_count(domain), - "page": page, - "step": self._items_per_page, - }, - 'default_url': url, - 'searchbar_sortings': searchbar_sortings, - 'sortby': sortby, - 'searchbar_filters': OrderedDict(sorted(searchbar_filters.items())), - 'filterby': filterby, - 'searchbar_inputs': searchbar_inputs, - 'search_in': search_in, - 'search': search, - }) - return values - - def _get_grouped_events(self, Events, domain, order, pager_offset, ): - """Returns the grouped evnts for a given domain""" - events = Events.search(domain, order=order, limit=self._items_per_page, - offset=pager_offset) - return events diff --git a/website_portal_events/doc/RELEASE_NOTES.md b/website_portal_events/doc/RELEASE_NOTES.md deleted file mode 100755 index 5fd94fc31..000000000 --- a/website_portal_events/doc/RELEASE_NOTES.md +++ /dev/null @@ -1,5 +0,0 @@ -## Module -#### 08.02.2024 -#### Version 17.0.1.0.0 -#### ADD -- Initial commit for Website Portal Events diff --git a/website_portal_events/static/description/assets/icons/check.png b/website_portal_events/static/description/assets/icons/check.png deleted file mode 100644 index c8e85f51d..000000000 Binary files a/website_portal_events/static/description/assets/icons/check.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/chevron.png b/website_portal_events/static/description/assets/icons/chevron.png deleted file mode 100644 index 2089293d6..000000000 Binary files a/website_portal_events/static/description/assets/icons/chevron.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/cogs.png b/website_portal_events/static/description/assets/icons/cogs.png deleted file mode 100644 index 95d0bad62..000000000 Binary files a/website_portal_events/static/description/assets/icons/cogs.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/consultation.png b/website_portal_events/static/description/assets/icons/consultation.png deleted file mode 100644 index 8319d4baa..000000000 Binary files a/website_portal_events/static/description/assets/icons/consultation.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/ecom-black.png b/website_portal_events/static/description/assets/icons/ecom-black.png deleted file mode 100644 index a9385ff13..000000000 Binary files a/website_portal_events/static/description/assets/icons/ecom-black.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/education-black.png b/website_portal_events/static/description/assets/icons/education-black.png deleted file mode 100644 index 3eb09b27b..000000000 Binary files a/website_portal_events/static/description/assets/icons/education-black.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/hotel-black.png b/website_portal_events/static/description/assets/icons/hotel-black.png deleted file mode 100644 index 130f613be..000000000 Binary files a/website_portal_events/static/description/assets/icons/hotel-black.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/license.png b/website_portal_events/static/description/assets/icons/license.png deleted file mode 100644 index a5869797e..000000000 Binary files a/website_portal_events/static/description/assets/icons/license.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/lifebuoy.png b/website_portal_events/static/description/assets/icons/lifebuoy.png deleted file mode 100644 index 658d56ccc..000000000 Binary files a/website_portal_events/static/description/assets/icons/lifebuoy.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/manufacturing-black.png b/website_portal_events/static/description/assets/icons/manufacturing-black.png deleted file mode 100644 index 697eb0e9f..000000000 Binary files a/website_portal_events/static/description/assets/icons/manufacturing-black.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/pos-black.png b/website_portal_events/static/description/assets/icons/pos-black.png deleted file mode 100644 index 97c0f90c1..000000000 Binary files a/website_portal_events/static/description/assets/icons/pos-black.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/puzzle.png b/website_portal_events/static/description/assets/icons/puzzle.png deleted file mode 100644 index 65cf854e7..000000000 Binary files a/website_portal_events/static/description/assets/icons/puzzle.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/restaurant-black.png b/website_portal_events/static/description/assets/icons/restaurant-black.png deleted file mode 100644 index 4a35eb939..000000000 Binary files a/website_portal_events/static/description/assets/icons/restaurant-black.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/service-black.png b/website_portal_events/static/description/assets/icons/service-black.png deleted file mode 100644 index 301ab51cb..000000000 Binary files a/website_portal_events/static/description/assets/icons/service-black.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/trading-black.png b/website_portal_events/static/description/assets/icons/trading-black.png deleted file mode 100644 index 9398ba2f1..000000000 Binary files a/website_portal_events/static/description/assets/icons/trading-black.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/training.png b/website_portal_events/static/description/assets/icons/training.png deleted file mode 100644 index 884ca024d..000000000 Binary files a/website_portal_events/static/description/assets/icons/training.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/update.png b/website_portal_events/static/description/assets/icons/update.png deleted file mode 100644 index ecbc5a01a..000000000 Binary files a/website_portal_events/static/description/assets/icons/update.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/user.png b/website_portal_events/static/description/assets/icons/user.png deleted file mode 100644 index 6ffb23d9f..000000000 Binary files a/website_portal_events/static/description/assets/icons/user.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/icons/wrench.png b/website_portal_events/static/description/assets/icons/wrench.png deleted file mode 100644 index 6c04dea0f..000000000 Binary files a/website_portal_events/static/description/assets/icons/wrench.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/misc/Cybrosys R.png b/website_portal_events/static/description/assets/misc/Cybrosys R.png deleted file mode 100644 index da4058087..000000000 Binary files a/website_portal_events/static/description/assets/misc/Cybrosys R.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/misc/categories.png b/website_portal_events/static/description/assets/misc/categories.png deleted file mode 100644 index bedf1e0b1..000000000 Binary files a/website_portal_events/static/description/assets/misc/categories.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/misc/check-box.png b/website_portal_events/static/description/assets/misc/check-box.png deleted file mode 100644 index 42caf24b9..000000000 Binary files a/website_portal_events/static/description/assets/misc/check-box.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/misc/compass.png b/website_portal_events/static/description/assets/misc/compass.png deleted file mode 100644 index d5fed8faa..000000000 Binary files a/website_portal_events/static/description/assets/misc/compass.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/misc/corporate.png b/website_portal_events/static/description/assets/misc/corporate.png deleted file mode 100644 index 2eb13edbf..000000000 Binary files a/website_portal_events/static/description/assets/misc/corporate.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/misc/customer-support.png b/website_portal_events/static/description/assets/misc/customer-support.png deleted file mode 100644 index 79efc72ed..000000000 Binary files a/website_portal_events/static/description/assets/misc/customer-support.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/misc/cybrosys-logo.png b/website_portal_events/static/description/assets/misc/cybrosys-logo.png deleted file mode 100644 index cc3cc0ccf..000000000 Binary files a/website_portal_events/static/description/assets/misc/cybrosys-logo.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/misc/features.png b/website_portal_events/static/description/assets/misc/features.png deleted file mode 100644 index b41769f77..000000000 Binary files a/website_portal_events/static/description/assets/misc/features.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/misc/logo.png b/website_portal_events/static/description/assets/misc/logo.png deleted file mode 100644 index 478462d3e..000000000 Binary files a/website_portal_events/static/description/assets/misc/logo.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/misc/pictures.png b/website_portal_events/static/description/assets/misc/pictures.png deleted file mode 100644 index 56d255fe9..000000000 Binary files a/website_portal_events/static/description/assets/misc/pictures.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/misc/pie-chart.png b/website_portal_events/static/description/assets/misc/pie-chart.png deleted file mode 100644 index 426e05244..000000000 Binary files a/website_portal_events/static/description/assets/misc/pie-chart.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/misc/right-arrow.png b/website_portal_events/static/description/assets/misc/right-arrow.png deleted file mode 100644 index 730984a06..000000000 Binary files a/website_portal_events/static/description/assets/misc/right-arrow.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/misc/star.png b/website_portal_events/static/description/assets/misc/star.png deleted file mode 100644 index 2eb9ab29f..000000000 Binary files a/website_portal_events/static/description/assets/misc/star.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/misc/support.png b/website_portal_events/static/description/assets/misc/support.png deleted file mode 100644 index 4f18b8b82..000000000 Binary files a/website_portal_events/static/description/assets/misc/support.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/misc/whatsapp.png b/website_portal_events/static/description/assets/misc/whatsapp.png deleted file mode 100644 index d513a5356..000000000 Binary files a/website_portal_events/static/description/assets/misc/whatsapp.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/modules/1.jpg b/website_portal_events/static/description/assets/modules/1.jpg deleted file mode 100644 index 67c7f7062..000000000 Binary files a/website_portal_events/static/description/assets/modules/1.jpg and /dev/null differ diff --git a/website_portal_events/static/description/assets/modules/2.jpg b/website_portal_events/static/description/assets/modules/2.jpg deleted file mode 100644 index 87c2bb2ba..000000000 Binary files a/website_portal_events/static/description/assets/modules/2.jpg and /dev/null differ diff --git a/website_portal_events/static/description/assets/modules/3.png b/website_portal_events/static/description/assets/modules/3.png deleted file mode 100644 index a5299d338..000000000 Binary files a/website_portal_events/static/description/assets/modules/3.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/modules/4.png b/website_portal_events/static/description/assets/modules/4.png deleted file mode 100644 index a0ac2d840..000000000 Binary files a/website_portal_events/static/description/assets/modules/4.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/modules/5.jpg b/website_portal_events/static/description/assets/modules/5.jpg deleted file mode 100644 index 6a102f103..000000000 Binary files a/website_portal_events/static/description/assets/modules/5.jpg and /dev/null differ diff --git a/website_portal_events/static/description/assets/modules/6.jpg b/website_portal_events/static/description/assets/modules/6.jpg deleted file mode 100644 index eaf13fef5..000000000 Binary files a/website_portal_events/static/description/assets/modules/6.jpg and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/hero.gif b/website_portal_events/static/description/assets/screenshots/hero.gif deleted file mode 100644 index 5893a9caf..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/hero.gif and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot1.png b/website_portal_events/static/description/assets/screenshots/screenshot1.png deleted file mode 100644 index f55299893..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot1.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot10.png b/website_portal_events/static/description/assets/screenshots/screenshot10.png deleted file mode 100644 index 66199b9ea..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot10.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot11.png b/website_portal_events/static/description/assets/screenshots/screenshot11.png deleted file mode 100644 index 0d13afc9e..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot11.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot12.png b/website_portal_events/static/description/assets/screenshots/screenshot12.png deleted file mode 100644 index e4a133972..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot12.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot13.png b/website_portal_events/static/description/assets/screenshots/screenshot13.png deleted file mode 100644 index d8269f3a9..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot13.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot14.png b/website_portal_events/static/description/assets/screenshots/screenshot14.png deleted file mode 100644 index 68a107be9..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot14.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot15.png b/website_portal_events/static/description/assets/screenshots/screenshot15.png deleted file mode 100644 index 5446096f7..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot15.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot16.png b/website_portal_events/static/description/assets/screenshots/screenshot16.png deleted file mode 100644 index ca7611954..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot16.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot17.png b/website_portal_events/static/description/assets/screenshots/screenshot17.png deleted file mode 100644 index 57057c5bb..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot17.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot18.png b/website_portal_events/static/description/assets/screenshots/screenshot18.png deleted file mode 100644 index ad622ae13..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot18.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot19.png b/website_portal_events/static/description/assets/screenshots/screenshot19.png deleted file mode 100644 index cb3cdf298..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot19.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot2.png b/website_portal_events/static/description/assets/screenshots/screenshot2.png deleted file mode 100644 index d2fb3de3e..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot2.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot20.png b/website_portal_events/static/description/assets/screenshots/screenshot20.png deleted file mode 100644 index c195fb84a..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot20.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot21.png b/website_portal_events/static/description/assets/screenshots/screenshot21.png deleted file mode 100644 index 4bb2dd699..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot21.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot3.png b/website_portal_events/static/description/assets/screenshots/screenshot3.png deleted file mode 100644 index dbf1c6312..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot3.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot4.png b/website_portal_events/static/description/assets/screenshots/screenshot4.png deleted file mode 100644 index c3d18794d..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot4.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot5.png b/website_portal_events/static/description/assets/screenshots/screenshot5.png deleted file mode 100644 index 83e62c824..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot5.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot6.png b/website_portal_events/static/description/assets/screenshots/screenshot6.png deleted file mode 100644 index 2294c5cda..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot6.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot7.png b/website_portal_events/static/description/assets/screenshots/screenshot7.png deleted file mode 100644 index b2eb2b4b5..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot7.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot8.png b/website_portal_events/static/description/assets/screenshots/screenshot8.png deleted file mode 100644 index 474d51e4d..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot8.png and /dev/null differ diff --git a/website_portal_events/static/description/assets/screenshots/screenshot9.png b/website_portal_events/static/description/assets/screenshots/screenshot9.png deleted file mode 100644 index c77962f4c..000000000 Binary files a/website_portal_events/static/description/assets/screenshots/screenshot9.png and /dev/null differ diff --git a/website_portal_events/static/description/banner.jpg b/website_portal_events/static/description/banner.jpg deleted file mode 100644 index daf8cd3db..000000000 Binary files a/website_portal_events/static/description/banner.jpg and /dev/null differ diff --git a/website_portal_events/static/description/icon.png b/website_portal_events/static/description/icon.png deleted file mode 100644 index 854b3a73e..000000000 Binary files a/website_portal_events/static/description/icon.png and /dev/null differ diff --git a/website_portal_events/static/description/index.html b/website_portal_events/static/description/index.html deleted file mode 100644 index 7ae65fe2f..000000000 --- a/website_portal_events/static/description/index.html +++ /dev/null @@ -1,944 +0,0 @@ - - - - - - - Odoo App 3 Index - - - - - - - - -
-
-
-
-
- -
-
-
- Community -
-
- Enterprise -
-
- Odoo.sh -
-
-
-
-
-
-

- Website Portal Events

-

- This module is helps to show all events in customer portal -

-
- -
-
-
-
-
-

- Key Highlights -

-
-
-
-
-
- -
-
-

- Website Portal Events

-

This module helps to show events tickets in portal. -

-
-
-
-
-
-
- -
-
-

- Sort , filter and download option

-

The sort, filter, search options are available in the portal to get the details easily. Also there is an option to download the ticket from the portal. -

-
-
- -
-
-
- -
-
-
-
-
- -
-
-

- Open My Account from website

-
-
-
-
-
-
- - -
-
-

- We can see the Events document in portal.

-
-
-
-
-
-
- -
-
-

Show all events corresponding to the logged in user.

-
-
-
-
-
-
- -
-
-

Here we can sort th records by Date and Name

-
-
-
-
-
-
- -
-
-

The events which are sort by Date

-
-
-
-
-
-
- -
-
-

We can Filter the records by All, Today, Week, Month, Quarter, Year

-
-
-
-
-
-
- -
-
-

Filter the records by All

-
-
-
-
-
-
- -
-
-

Filter the records by Last Month

-
-
-
-
-
-
- -
-
-

Filter the records by Last Week

-
-
-
-
-
-
- -
-
-

Filter the records by Last Year

-
-
-
-
-
-
- -
-
-

We can Search the records by Search in All and Search in Event

-
-
-
-
-
-
- -
-
-

Search the records based on Search in All case.

-
-
-
-
-
-
- -
-
-

Output of Search in All case.

-
-
-
-
-
-
- -
-
-

Search the records based on Search in Event case.

-
-
-
-
-
-
- -
-
-

Output of Search in Event case.

-
-
-
-
-
-
- -
-
-

An option to download ticket from the portal

-
-
-
-
-
-
- -
-
-

The downloaded ticket view

-
-
-
-
-
- -
-
-

Form view of the ticket in portal

-
-
-
-
-
-
- -
-
-

We can download ticket from the form view also.

-
-
-
-
-
-
- -
-
-

We can send messages and attachments. Which will be visible in the backend

-
-
-
-
-
-
- -
-
-

Backend view of the events

-
-
-
-
- -
-
-
    -
  • - View event tickets in portal. -
  • -
  • - An option to sort, filter, search the events to get it easily. -
  • -
  • - An option to download the events ticket. -
  • -
-
-
-
-
-
-
Version - 17.0.1.0.0|Released on:24th January 2024 -
-

- - Initial Commit for Website Portal Events.

-
-
-
-
-
-
-
-

- Related Products

-
-
- -
-
-

- Our Services

- -
-
-
-
-
-
-
-
- service-icon -
-
-

Odoo - Customization

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Implementation

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Support

-
-
-
-
-
-
- service-icon -
-
-

Hire - Odoo Developer

-
-
-
-
- -
-
- service-icon -
-
-

Odoo - Integration

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Migration

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Consultancy

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Implementation

-
-
-
-
-
-
- service-icon -
-
-

Odoo - Licensing Consultancy

-
-
-
-
-
-
-

- Our Industries

- -
-
-
-
-
-
- -

Trading

-

Easily procure and sell your products

-
-
-
-
- -

POS

-

Easy configuration and convivial experience

-
-
-
-
- -

- Education

-

A platform for educational management

-
-
-
-
- -

- Manufacturing

-

Plan, track and schedule your operations

-
-
-
-
- -

E-commerce & - Website

-

Mobile friendly, awe-inspiring product pages

-
-
-
-
- -

Service - Management

-

Keep track of services and invoice

-
-
-
-
- -

- Restaurant

-

Run your bar or restaurant methodically

-
-
-
-
- -

Hotel - Management

-

An all-inclusive hotel management application

-
-
-
-
-
-
-

- Support

-
-
-
-
-
-
-
- -
- Need - Help? -

Got - questions or need help? Get in touch.

-
odoo@cybrosys.com -
-
-
-
-
-
-
-
- -
- WhatsApp -

Say hi to - us on WhatsApp!

-
+91 - 99456767686 -
-
-
-
-
-
-
-
-
- - - - - - diff --git a/website_portal_events/views/event_portal_templates.xml b/website_portal_events/views/event_portal_templates.xml deleted file mode 100644 index 4fef564ec..000000000 --- a/website_portal_events/views/event_portal_templates.xml +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - - - - - \ No newline at end of file