diff --git a/cookie_consent_manager/README.rst b/cookie_consent_manager/README.rst new file mode 100644 index 000000000..a06562969 --- /dev/null +++ b/cookie_consent_manager/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 + +Cookie Consent Manager +====================== +Manage and customize website cookie consent templates + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developers: (V16) Rosmy John, Jumana Jabin MP , + (V17) Ayana KP, +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/cookie_consent_manager/__init__.py b/cookie_consent_manager/__init__.py new file mode 100644 index 000000000..8f31338bf --- /dev/null +++ b/cookie_consent_manager/__init__.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C)2024-TODAY Cybrosys Technologies(). +# Author: Ayana KP @cybrosys(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models + + +def uninstall_hook(env): + """ Delete `cookie.information` records created for the cookie design. """ + env['ir.config_parameter'].search([('key','=','cookie_consent_manager.cookie_template_id')]).unlink() diff --git a/cookie_consent_manager/__manifest__.py b/cookie_consent_manager/__manifest__.py new file mode 100644 index 000000000..98b266fbb --- /dev/null +++ b/cookie_consent_manager/__manifest__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C)2024-TODAY Cybrosys Technologies(). +# Author: Ayana KP @cybrosys(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Cookie Consent Manager', + 'version': '17.0.1.0.0', + 'category': 'Extra Tools', + 'summary': """Manage and customize website cookie consent templates""", + 'description': """The Cookie Consent Manager allows website owners to ' + 'manage and customize their cookie consent templates. ' + 'With this module, you can create, modify, and display ' + 'customized cookie consent banners to comply with ' + 'data protection regulations and improve user ' + 'privacy on your Odoo website.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base_setup','web', 'website'], + 'data': [ + 'security/ir.model.access.csv', + 'views/res_config_settings_views.xml', + 'views/cookie_information_views.xml', + 'views/website_cookie_bar_templates.xml', + ], + 'images': ['static/description/banner.jpg'], + 'uninstall_hook': 'uninstall_hook', + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/cookie_consent_manager/doc/RELEASE_NOTES.md b/cookie_consent_manager/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..e704b6086 --- /dev/null +++ b/cookie_consent_manager/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 11.10.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for Cookie Consent Manager diff --git a/cookie_consent_manager/models/__init__.py b/cookie_consent_manager/models/__init__.py new file mode 100644 index 000000000..d6a7b5d1d --- /dev/null +++ b/cookie_consent_manager/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ayana KP @cybrosys(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import cookie_information +from . import res_config_settings diff --git a/cookie_consent_manager/models/cookie_information.py b/cookie_consent_manager/models/cookie_information.py new file mode 100644 index 000000000..7ce201ba6 --- /dev/null +++ b/cookie_consent_manager/models/cookie_information.py @@ -0,0 +1,81 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C)2024-TODAY Cybrosys Technologies(). +# Author: Ayana KP @cybrosys(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, fields, models + +OBJECT_COLOR = { + "0": "#FFFFFF", # No color (default to white) + "1": "#FF0000", # Red + "2": "#FFA500", # Orange + "3": "#FFFF00", # Yellow + "4": "#ADD8E6", # Light blue + "5": "#800080", # Dark purple + "6": "#FA8072", # Salmon pink + "7": "#0000CD", # Medium blue + "8": "#00008B", # Dark blue + "9": "#FF00FF", # Fuchsia + "10": "#008000", # Green + "11": "#800080", # Purple +} + + +class CookieInformation(models.Model): + """This class is used to store information about a cookie template.""" + _name = "cookie.information" + _description = "Cookie Information" + _rec_name = 'template_title' + + template_title = fields.Char(string="Template Name", + help="Title of the template") + pop_up_text = fields.Char(string="Pop Up text", help="Cookie message") + cookie_color = fields.Integer(string="Cookie Color", + help="Change the color of cookie") + is_change_pop_up_position = fields.Boolean(string="Change Pop up position", + help="Change the pop up " + "position") + is_change_pop_up_position_top = fields.Boolean( + string="Move to Top", help="Change the pop up position to top") + is_change_pop_up_position_bottom = fields.Boolean( + string="Move to Bottom", help="Change the pop up position to bottom") + pop_up_position_top = fields.Selection([ + ('top_left', 'Top Left'), ('top_right', 'Top Right'), + ('top_center', 'Top Center'), + ('full_top_container', 'Full Top Container')], + help="Change the pop up position on top", + string="Pop Up Position on Top", ) + pop_up_position_bottom = fields.Selection([ + ('bottom_left', 'Bottom Left'), ('bottom_right', 'Bottom Right'), + ('bottom_center', 'Bottom Center'), + ('full_bottom_container', 'Full Bottom Container')], + help="Change the pop up position on bottom", + string="Pop Up Position on Bottom", ) + accept_btn_txt = fields.Char(string="Accept button text", + help="Name for the Accept button") + reject_btn_txt = fields.Char(string="Reject button text", + help="Name for the reject button") + cookie_policy_btn = fields.Char(string="Read button text", + help="Name for Cookie Policy") + + @api.model + def _get_color(self, value): + """Get the color code corresponding to the given value.""" + return OBJECT_COLOR.get(str(value), + "#FFFFFF") # default to white if not found diff --git a/cookie_consent_manager/models/res_config_settings.py b/cookie_consent_manager/models/res_config_settings.py new file mode 100644 index 000000000..838fc0d7c --- /dev/null +++ b/cookie_consent_manager/models/res_config_settings.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C)2024-TODAY Cybrosys Technologies(). +# Author: Ayana KP @cybrosys(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + """This class represents the user can select the cookie template """ + _inherit = 'res.config.settings' + + cookie_template_id = fields.Many2one( + 'cookie.information', string="Cookie Template", + config_parameter='cookie_consent_manager.cookie_template_id', + help="Select Cookie Template") diff --git a/cookie_consent_manager/security/ir.model.access.csv b/cookie_consent_manager/security/ir.model.access.csv new file mode 100644 index 000000000..8411fd485 --- /dev/null +++ b/cookie_consent_manager/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_cookie_information_model,access.cookie.information.model,model_cookie_information,base.group_system,1,1,1,1 diff --git a/cookie_consent_manager/static/description/assets/icons/capture (1).png b/cookie_consent_manager/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/capture (1).png differ diff --git a/cookie_consent_manager/static/description/assets/icons/check.png b/cookie_consent_manager/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/check.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/chevron.png b/cookie_consent_manager/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/chevron.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/cogs.png b/cookie_consent_manager/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/cogs.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/consultation.png b/cookie_consent_manager/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/consultation.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/ecom-black.png b/cookie_consent_manager/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/ecom-black.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/education-black.png b/cookie_consent_manager/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/education-black.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/hotel-black.png b/cookie_consent_manager/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/hotel-black.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/img.png b/cookie_consent_manager/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/img.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/license.png b/cookie_consent_manager/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/license.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/lifebuoy.png b/cookie_consent_manager/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/lifebuoy.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/manufacturing-black.png b/cookie_consent_manager/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/manufacturing-black.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/photo-capture.png b/cookie_consent_manager/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/photo-capture.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/pos-black.png b/cookie_consent_manager/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/pos-black.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/puzzle.png b/cookie_consent_manager/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/puzzle.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/restaurant-black.png b/cookie_consent_manager/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/restaurant-black.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/service-black.png b/cookie_consent_manager/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/service-black.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/trading-black.png b/cookie_consent_manager/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/trading-black.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/training.png b/cookie_consent_manager/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/training.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/update.png b/cookie_consent_manager/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/update.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/user.png b/cookie_consent_manager/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/user.png differ diff --git a/cookie_consent_manager/static/description/assets/icons/wrench.png b/cookie_consent_manager/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/cookie_consent_manager/static/description/assets/icons/wrench.png differ diff --git a/cookie_consent_manager/static/description/assets/misc/Cybrosys R.png b/cookie_consent_manager/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/misc/Cybrosys R.png differ diff --git a/cookie_consent_manager/static/description/assets/misc/email.svg b/cookie_consent_manager/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/cookie_consent_manager/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cookie_consent_manager/static/description/assets/misc/phone.svg b/cookie_consent_manager/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/cookie_consent_manager/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/cookie_consent_manager/static/description/assets/misc/star (1) 2.svg b/cookie_consent_manager/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/cookie_consent_manager/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/cookie_consent_manager/static/description/assets/misc/support (1) 1.svg b/cookie_consent_manager/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/cookie_consent_manager/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/cookie_consent_manager/static/description/assets/misc/support-email.svg b/cookie_consent_manager/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/cookie_consent_manager/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/cookie_consent_manager/static/description/assets/misc/tick-mark.svg b/cookie_consent_manager/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/cookie_consent_manager/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/cookie_consent_manager/static/description/assets/misc/whatsapp 1.svg b/cookie_consent_manager/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/cookie_consent_manager/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/cookie_consent_manager/static/description/assets/misc/whatsapp.svg b/cookie_consent_manager/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/cookie_consent_manager/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cookie_consent_manager/static/description/assets/modules/module_image (1).jpeg b/cookie_consent_manager/static/description/assets/modules/module_image (1).jpeg new file mode 100644 index 000000000..5ae24843e Binary files /dev/null and b/cookie_consent_manager/static/description/assets/modules/module_image (1).jpeg differ diff --git a/cookie_consent_manager/static/description/assets/modules/module_image (1).png b/cookie_consent_manager/static/description/assets/modules/module_image (1).png new file mode 100644 index 000000000..0dea4f332 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/modules/module_image (1).png differ diff --git a/cookie_consent_manager/static/description/assets/modules/module_image (2).png b/cookie_consent_manager/static/description/assets/modules/module_image (2).png new file mode 100644 index 000000000..a5dc79613 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/modules/module_image (2).png differ diff --git a/cookie_consent_manager/static/description/assets/modules/module_image-1.jpeg b/cookie_consent_manager/static/description/assets/modules/module_image-1.jpeg new file mode 100644 index 000000000..31f066e9c Binary files /dev/null and b/cookie_consent_manager/static/description/assets/modules/module_image-1.jpeg differ diff --git a/cookie_consent_manager/static/description/assets/modules/module_image.jpeg b/cookie_consent_manager/static/description/assets/modules/module_image.jpeg new file mode 100644 index 000000000..0cbac311c Binary files /dev/null and b/cookie_consent_manager/static/description/assets/modules/module_image.jpeg differ diff --git a/cookie_consent_manager/static/description/assets/modules/module_image.png b/cookie_consent_manager/static/description/assets/modules/module_image.png new file mode 100644 index 000000000..612be4b77 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/modules/module_image.png differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/2.png b/cookie_consent_manager/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..1720ca69d Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/2.png differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/2024-05-16_13-00.png b/cookie_consent_manager/static/description/assets/screenshots/2024-05-16_13-00.png new file mode 100644 index 000000000..194cc24eb Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/2024-05-16_13-00.png differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/3.png b/cookie_consent_manager/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..25fecfd52 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/3.png differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/hero-v17.gif b/cookie_consent_manager/static/description/assets/screenshots/hero-v17.gif new file mode 100644 index 000000000..6a695380a Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/hero-v17.gif differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/img.png b/cookie_consent_manager/static/description/assets/screenshots/img.png new file mode 100644 index 000000000..380465ea4 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/img.png differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/img_1.png b/cookie_consent_manager/static/description/assets/screenshots/img_1.png new file mode 100644 index 000000000..2095edfec Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/img_1.png differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/img_2.png b/cookie_consent_manager/static/description/assets/screenshots/img_2.png new file mode 100644 index 000000000..1105519f6 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/img_2.png differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/img_3.png b/cookie_consent_manager/static/description/assets/screenshots/img_3.png new file mode 100644 index 000000000..468163752 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/img_3.png differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/img_4.png b/cookie_consent_manager/static/description/assets/screenshots/img_4.png new file mode 100644 index 000000000..513955863 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/img_4.png differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/img_5.png b/cookie_consent_manager/static/description/assets/screenshots/img_5.png new file mode 100644 index 000000000..4a1fe6955 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/img_5.png differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/img_6.png b/cookie_consent_manager/static/description/assets/screenshots/img_6.png new file mode 100644 index 000000000..21ec1ad0e Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/img_6.png differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/img_7.png b/cookie_consent_manager/static/description/assets/screenshots/img_7.png new file mode 100644 index 000000000..5d2258f76 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/img_7.png differ diff --git a/cookie_consent_manager/static/description/banner.jpg b/cookie_consent_manager/static/description/banner.jpg new file mode 100644 index 000000000..e14c782a3 Binary files /dev/null and b/cookie_consent_manager/static/description/banner.jpg differ diff --git a/cookie_consent_manager/static/description/icon.png b/cookie_consent_manager/static/description/icon.png new file mode 100644 index 000000000..8957061f1 Binary files /dev/null and b/cookie_consent_manager/static/description/icon.png differ diff --git a/cookie_consent_manager/static/description/index.html b/cookie_consent_manager/static/description/index.html new file mode 100644 index 000000000..4ad0da01d --- /dev/null +++ b/cookie_consent_manager/static/description/index.html @@ -0,0 +1,791 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Cookie Consent Manager

+

+ Cookie Consent Manager Can Create Their Own Cookies + Templates. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Community, Enterprise and Odoo.sh Support

+

Available in + Odoo 17.0 Community, Enterprise and Odoo.sh +

+
+
+
+
+
+
+ +
+
+

+ Create a New Design for Cookie Settings.

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

+ Cookie Settings on the Configuration.

+
+
+
+
+
+
+ +
+
+

+ Configure the cookie position, color, and + button labels.

+
+
+
+
+
+
+ +
+
+

+ Enable cookies in the configuration settings + and select the cookie template.

+
+
+
+
+
+
+ +
+
+

+ When setting the popup position to the Top, + the popup's position on Top is Left.

+
+
+
+
+
+
+ +
+
+

+ When setting the popup position to the Top, + the popup's position on Top is Right.

+
+
+
+
+
+
+ +
+
+

+ When setting the popup position to the Top, + the popup's position on Top is Center.

+
+
+
+
+
+
+ +
+
+

+ When setting the popup position to the + Bottom, the popup's position on Bottom is + Left.

+
+
+
+
+
+
+ +
+
+

+ When setting the popup position to the + Bottom, the popup's position on Bottom is + Right.

+
+
+
+
+
+
+ +
+
+

+ When setting the popup position to the + Bottom, the popup's position on Bottom is + Full Bottom Container.

+
+
+
+
+
+
+ +
+
+

+ We can also change the color of the cookie container.

+
+
+
+
+
+
+
    +
  • + Available in + Odoo 17.0 Community, Enterprise and Odoo.sh +
  • +
  • + Helps to + customize your own template for + cookie. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:16th May 2024 +
+

+ + Initial Commit for Cookie Consent Manager.

+
+
+
+
+
+
+
+

+ 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/cookie_consent_manager/views/cookie_information_views.xml b/cookie_consent_manager/views/cookie_information_views.xml new file mode 100644 index 000000000..44a9fb7ab --- /dev/null +++ b/cookie_consent_manager/views/cookie_information_views.xml @@ -0,0 +1,71 @@ + + + + + Cookie Information + cookie.information + tree,form + + + + cookie.information.view.form + + cookie.information + +
+ +
+
+ + + + + + + + + + + + + + + + +
+
+
+
+ + + cookie.information.view.tree + + cookie.information + + + + + + + + + + + + + + + +
diff --git a/cookie_consent_manager/views/res_config_settings_views.xml b/cookie_consent_manager/views/res_config_settings_views.xml new file mode 100644 index 000000000..4cae89885 --- /dev/null +++ b/cookie_consent_manager/views/res_config_settings_views.xml @@ -0,0 +1,25 @@ + + + + + res.config.settings.view.form.inherit.cookie.consent.manager + res.config.settings + + + + +
+
+
+
+
+ + + + diff --git a/cookie_consent_manager/views/website_cookie_bar_templates.xml b/cookie_consent_manager/views/website_cookie_bar_templates.xml new file mode 100644 index 000000000..0b3db8435 --- /dev/null +++ b/cookie_consent_manager/views/website_cookie_bar_templates.xml @@ -0,0 +1,430 @@ + + + + +