diff --git a/cookie_consent_manager/README.rst b/cookie_consent_manager/README.rst new file mode 100644 index 000000000..10ccd09a3 --- /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 +====================== +Cookie consent Manger to handle cookie template + +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..2a8a2b696 --- /dev/null +++ b/cookie_consent_manager/__init__.py @@ -0,0 +1,22 @@ +# -*- 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 diff --git a/cookie_consent_manager/__manifest__.py b/cookie_consent_manager/__manifest__.py new file mode 100644 index 000000000..b242291dc --- /dev/null +++ b/cookie_consent_manager/__manifest__.py @@ -0,0 +1,47 @@ +# -*- 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': '15.0.1.0.0', + 'category': 'Extra Tools', + 'summary': """Manage and customize website cookie consent templates""", + 'description': """This 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', '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'], + '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..ba97199c3 --- /dev/null +++ b/cookie_consent_manager/doc/RELEASE_NOTES.md @@ -0,0 +1,5 @@ +## Module +#### 18.11.2024 +#### Version 15.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..4d276444d --- /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..18181dae4 --- /dev/null +++ b/cookie_consent_manager/models/cookie_information.py @@ -0,0 +1,96 @@ +# -*- 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 +from odoo.exceptions import ValidationError + + +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 + + @api.onchange('is_change_pop_up_position_bottom') + def _onchange_is_change_pop_up_position_bottom(self): + if(self.pop_up_position_top): + self.pop_up_position_top = "" + + @api.onchange('is_change_pop_up_position_top') + def _onchange_is_change_pop_up_position_top(self): + if (self.pop_up_position_bottom): + self.pop_up_position_bottom = "" + + + 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..9d444ef58 --- /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="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/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/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/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/categories.png b/cookie_consent_manager/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/misc/categories.png differ diff --git a/cookie_consent_manager/static/description/assets/misc/check-box.png b/cookie_consent_manager/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/misc/check-box.png differ diff --git a/cookie_consent_manager/static/description/assets/misc/compass.png b/cookie_consent_manager/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/cookie_consent_manager/static/description/assets/misc/compass.png differ diff --git a/cookie_consent_manager/static/description/assets/misc/corporate.png b/cookie_consent_manager/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/cookie_consent_manager/static/description/assets/misc/corporate.png differ diff --git a/cookie_consent_manager/static/description/assets/misc/customer-support.png b/cookie_consent_manager/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/cookie_consent_manager/static/description/assets/misc/customer-support.png differ diff --git a/cookie_consent_manager/static/description/assets/misc/cybrosys-logo.png b/cookie_consent_manager/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/cookie_consent_manager/static/description/assets/misc/cybrosys-logo.png differ diff --git a/cookie_consent_manager/static/description/assets/misc/features.png b/cookie_consent_manager/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/misc/features.png differ diff --git a/cookie_consent_manager/static/description/assets/misc/logo.png b/cookie_consent_manager/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/cookie_consent_manager/static/description/assets/misc/logo.png differ diff --git a/cookie_consent_manager/static/description/assets/misc/pictures.png b/cookie_consent_manager/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/misc/pictures.png differ diff --git a/cookie_consent_manager/static/description/assets/misc/pie-chart.png b/cookie_consent_manager/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/misc/pie-chart.png differ diff --git a/cookie_consent_manager/static/description/assets/misc/right-arrow.png b/cookie_consent_manager/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/misc/right-arrow.png differ diff --git a/cookie_consent_manager/static/description/assets/misc/star.png b/cookie_consent_manager/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/cookie_consent_manager/static/description/assets/misc/star.png differ diff --git a/cookie_consent_manager/static/description/assets/misc/support.png b/cookie_consent_manager/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/misc/support.png differ diff --git a/cookie_consent_manager/static/description/assets/misc/whatsapp.png b/cookie_consent_manager/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/misc/whatsapp.png differ diff --git a/cookie_consent_manager/static/description/assets/modules/1.png b/cookie_consent_manager/static/description/assets/modules/1.png new file mode 100644 index 000000000..e6bee65a9 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/modules/1.png differ diff --git a/cookie_consent_manager/static/description/assets/modules/2.png b/cookie_consent_manager/static/description/assets/modules/2.png new file mode 100644 index 000000000..b4c3395f7 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/modules/2.png differ diff --git a/cookie_consent_manager/static/description/assets/modules/3.png b/cookie_consent_manager/static/description/assets/modules/3.png new file mode 100644 index 000000000..00104b670 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/modules/3.png differ diff --git a/cookie_consent_manager/static/description/assets/modules/4.png b/cookie_consent_manager/static/description/assets/modules/4.png new file mode 100644 index 000000000..aa9cb6262 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/modules/4.png differ diff --git a/cookie_consent_manager/static/description/assets/modules/5.png b/cookie_consent_manager/static/description/assets/modules/5.png new file mode 100644 index 000000000..bf93d4f80 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/modules/5.png differ diff --git a/cookie_consent_manager/static/description/assets/modules/6.png b/cookie_consent_manager/static/description/assets/modules/6.png new file mode 100644 index 000000000..ae3e11bff Binary files /dev/null and b/cookie_consent_manager/static/description/assets/modules/6.png differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/1.png b/cookie_consent_manager/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..a83d1a2a4 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/1.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..391ef3f85 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/4.png b/cookie_consent_manager/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..7382faf25 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/4.png differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/5.png b/cookie_consent_manager/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..bb4befcf3 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/5.png differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/6.png b/cookie_consent_manager/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..1212f6285 Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/6.png differ diff --git a/cookie_consent_manager/static/description/assets/screenshots/v15-hero.gif b/cookie_consent_manager/static/description/assets/screenshots/v15-hero.gif new file mode 100644 index 000000000..f671789dc Binary files /dev/null and b/cookie_consent_manager/static/description/assets/screenshots/v15-hero.gif 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..b249755e3 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..7b367bd51 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..9da5752cc --- /dev/null +++ b/cookie_consent_manager/static/description/index.html @@ -0,0 +1,613 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Cookie Consent Manager

+

+ Cookie Consent Manager Can Create Their Own Cookies + Templates

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

+ Explore This + Module

+
+ + + +
+
+ +
+

+ Overview +

+
+
+
+ This module helps to customize your own template for + cookie. +
+
+ + +
+
+ +
+

+ Features +

+
+
+
+
+ +
+ Create a New Design for Cookie Settings. + +
+
+
+ +
+ Customize cookie design according to your taste + +
+
+
+
+ + +
+
+ +
+

+ Screenshots +

+
+
+
+
+

+ Cookie Settings on the Configuration

+ +
+
+

+ Setting the Cookie position, Color and Button name also.

+ +
+
+

+ Choose the Template from Settings.

+ +
+
+

+ We can change the Cookie Position to Top and change color.

+ +
+
+

+ We can change the Cookie position to the Bottom and change + color.

+ +
+
+
+ + +
+
+ +
+

+ Related + Products +

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

+ Our Services +

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

+ Our + Industries +

+
+
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

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

+ Mobile + friendly, + awe-inspiring product pages

+
+
+
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+
+
+ + +
+
+ +
+

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ 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..53cfc5227 --- /dev/null +++ b/cookie_consent_manager/views/cookie_information_views.xml @@ -0,0 +1,67 @@ + + + + + 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..e7b5444d8 --- /dev/null +++ b/cookie_consent_manager/views/res_config_settings_views.xml @@ -0,0 +1,27 @@ + + + + + + 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..e544da612 --- /dev/null +++ b/cookie_consent_manager/views/website_cookie_bar_templates.xml @@ -0,0 +1,432 @@ + + + + +