diff --git a/website_gdpr_odoo/README.rst b/website_gdpr_odoo/README.rst new file mode 100755 index 000000000..2af12cdc6 --- /dev/null +++ b/website_gdpr_odoo/README.rst @@ -0,0 +1,49 @@ +.. 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 + +Website GDPR In Odoo +==================== +This module allows customers to manage personal data and information. + +Configuration +============= +* No additional configuration is needed. + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +Affero General Public License, v3.0 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developers : (V16) Yadhukrishnan, + (V17) Safa Faheem PE, + (V18) Aysha Shalin + Contact: odoo@cyrosys.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_gdpr_odoo/__init__.py b/website_gdpr_odoo/__init__.py new file mode 100755 index 000000000..bd781c66c --- /dev/null +++ b/website_gdpr_odoo/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (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 controllers +from . import models diff --git a/website_gdpr_odoo/__manifest__.py b/website_gdpr_odoo/__manifest__.py new file mode 100755 index 000000000..0fe345120 --- /dev/null +++ b/website_gdpr_odoo/__manifest__.py @@ -0,0 +1,58 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (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": "Website GDPR In Odoo", + "version": "18.0.1.0.0", + "category": "Website", + "summary": """General Data Protection Regulation is implemented On Odoo 18 + Enterprise Edition.""", + "description": """This module allows customers to manage personal data and + information. Customer have the access to download and delete their + information like names,emails, phone numbers, biometric information, + location data, financial data etc.""", + "author": "Cybrosys Techno Solutions", + "company": "Cybrosys Techno Solutions", + "maintainer": "Cybrosys Techno Solutions", + "website": "https://www.cybrosys.com", + "depends": ["website", "contacts"], + "data": [ + "security/ir.model.access.csv", + "views/gdpr_request_views.xml", + "views/gdpr_template_views.xml", + "views/gdpr_request_templates.xml", + "views/mail_templates.xml", + "report/gdpr_request_templates.xml", + "views/gdpr_request_report_views.xml", + ], + "assets": { + "web.assets_frontend": [ + "website_gdpr_odoo/static/src/js/gdpr_portal.js", + "website_gdpr_odoo/static/src/css/gdpr_portal.css", + ] + }, + "images": ["static/description/banner.png"], + "license": "AGPL-3", + "installable": True, + "auto_install": False, + "application": False, +} + diff --git a/website_gdpr_odoo/controllers/__init__.py b/website_gdpr_odoo/controllers/__init__.py new file mode 100755 index 000000000..f2bd3aba0 --- /dev/null +++ b/website_gdpr_odoo/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (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 website_gdpr_odoo diff --git a/website_gdpr_odoo/controllers/website_gdpr_odoo.py b/website_gdpr_odoo/controllers/website_gdpr_odoo.py new file mode 100755 index 000000000..f40fb4ee0 --- /dev/null +++ b/website_gdpr_odoo/controllers/website_gdpr_odoo.py @@ -0,0 +1,111 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (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 http +from odoo.http import request + + +class WebsiteForm(http.Controller): + """ + The WebsiteForm class provides the data to the page when it's loaded. + Methods: + gdpr_data_management(self): + When the page is loaded passing the values related to the gdpr + template and requests. + Return a dict variable. + data_management_confirm(self,**kw): + Creating gdpr requests based the type of request and the user. + create_request_submit(self): + Opening the submit window. + request_delete_done(self): + Opening the deleted window. + request_canceled(self): + opening the cancelled window. + """ + + @http.route(['/my/data_management'], type='http', auth="user", + website=True) + def gdpr_data_management(self): + """ + Summary: + Transferring data to the frontend + Returns: + Type:dict , it contains the data for the opening window. + """ + return request.render("website_gdpr_odoo.gdpr_manager", { + 'values': [{'name': gdpr_template_id['name'], + 'description': gdpr_template_id['description'], + 'id': gdpr_template_id['id'], } for gdpr_template_id in + request.env['gdpr.template'].sudo().search_read( + [], ['name','description'])], + 'request_values': [{ + 'name': gdpr_request_id.req_name, + 'partner': gdpr_request_id.partner_id.name, + 'date': gdpr_request_id.create_date, + 'state': gdpr_request_id.state, + 'type': gdpr_request_id.req_type, + 'template': gdpr_request_id.template_id.name, + 'id': gdpr_request_id.id + } for gdpr_request_id in request.env['gdpr.request'].sudo().search( + [('partner_id', '=', request.env.user.partner_id.id)])], + }) + + @http.route(['/gdpr_management/confirm'], type='json', auth="public", + website=True) + def data_management_confirm(self, **kw): + """ + Summary: + Transferring data to the frontend + Arguments: + kw: dictionary + It contains selected template id user id. + """ + partner_id = request.env['res.partner'].search([ + ('user_id', '=', request.env.user.id) + ]) + if partner_id: + request.env['gdpr.request'].sudo().create({ + 'req_name': f"{partner_id.name}'s {kw.get('type')} data", + 'partner_id': partner_id.id, + 'req_type': kw.get('type'), + 'state': 'pending', + 'template_id': kw.get('template_id') + }) + else: + request.redirect('/my/home') + + @http.route(['/gdpr_management/submit'], type='http', auth="user", + website=True) + def create_request_submit(self): + """ Opening submit window """ + return request.render("website_gdpr_odoo.gdpr_submit") + + @http.route(['/gdpr_management/success/delete'], type='http', + auth="user", website=True) + def request_delete_done(self): + """ Opening delete window """ + return request.render("website_gdpr_odoo.gdpr_delete_success") + + @http.route(['/gdpr_management/canceled'], type='http', auth="user", + website=True) + def request_canceled(self): + """ Opening cancel window """ + return request.render("website_gdpr_odoo.gdpr_cancel_success") diff --git a/website_gdpr_odoo/doc/RELEASE_NOTES.md b/website_gdpr_odoo/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..5b6671703 --- /dev/null +++ b/website_gdpr_odoo/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 04.10.2024 +#### Version 18.0.1.0.0 +##### ADD +- Initial Commit for Website GDPR In Odoo diff --git a/website_gdpr_odoo/models/__init__.py b/website_gdpr_odoo/models/__init__.py new file mode 100755 index 000000000..cdbd1f0a0 --- /dev/null +++ b/website_gdpr_odoo/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (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 gdpr_request +from . import gdpr_template diff --git a/website_gdpr_odoo/models/gdpr_request.py b/website_gdpr_odoo/models/gdpr_request.py new file mode 100755 index 000000000..10b5c8f89 --- /dev/null +++ b/website_gdpr_odoo/models/gdpr_request.py @@ -0,0 +1,141 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (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 . +# +############################################################################### +import base64 +from odoo import api, fields, models + + +class GDPRRequest(models.Model): + """ + The GDPRRequest class fields and different methods are included. + Methods: + action_confirm_request(self): + For action confirm button change state to confirm. + action_delete_request(self,**kw): + For updating the values in 'res.partner'(deleting records). + action_cancel_request(self): + For action cancel button change state to cancel. + action_download_pdf(self): + For downloading the selected data. + create(self): + For getting overriding sequence number. + """ + _name = "gdpr.request" + _description = "GDPR Request" + + name = fields.Char(string="Serial Number", readonly=True, + copy=False, default='New', help="The serial number") + req_name = fields.Char(string="Name", help="Request Name") + partner_id = fields.Many2one('res.partner', string="Customer", + help="Specify the customer for the request.") + req_type = fields.Selection([ + ('download', 'Download Data'), + ('delete', 'Delete Data')], string="Request Type", + help="Please specify the type of request you want to make.") + state = fields.Selection([ + ('pending', 'Pending'), + ('cancel', 'Cancel'), + ('done', 'Done')], default="pending", help="State of the request") + template_id = fields.Many2one('gdpr.template', string="Template", + help="Selected Template") + + def action_confirm_request(self): + """ For action confirm """ + self.write({'state': 'done'}) + self.action_send_email() + + def action_send_email(self): + """ For sending mail to the partner when the request is confirmed or + canceled. """ + state = "Confirmed" if self.state == "done" else "Cancelled" + email_values = { + 'email_to': self.partner_id.email, + 'content': "Your Gdpr Request " + self.name + " for " + + self.req_type + " data is " + state, + 'company': self.env.company.name, + } + mail_template = self.env.ref( + 'website_gdpr_odoo.gdpr_request_email_template') + mail_template.with_context(email_values).send_mail(self.id, + email_layout_xmlid='mail.mail_notification_light', + force_send=True) + + def action_delete_request(self): + """ For updating the values in 'res.partner'(deleting records) """ + value_list = [partner_field.name for partner_field in + self.template_id.field_ids] + for value in value_list: + self.partner_id.write({ + value: False, + }) + self.write({'state': 'done'}) + + def action_cancel_request(self): + """ For action cancel """ + self.write({'state': 'cancel'}) + self.action_send_email() + + def action_download_pdf(self, data): + """ For downloading the selected data """ + value_list = [] + request_id = self.env['gdpr.request'].sudo().browse(data) + partner_fields = request_id.template_id.sudo().field_ids + partner_id = request_id.partner_id + for rec in partner_fields: + if rec.ttype == "many2one": + field_val = partner_id.mapped(rec.name).name + if field_val: + list_to_str = ' '.join([str(elem) for elem in field_val]) + else: + list_to_str = False + value_list.append({'data': list_to_str, + 'name': rec.field_description}) + else: + field_val = partner_id.mapped(rec.name) + list_to_str = ' '.join([str(elem) for elem in field_val]) + value_list.append({'data': list_to_str, + 'name': rec.field_description}) + values = { + 'name': partner_id.name, + 'value': value_list + } + pdf = self.env['ir.actions.report'].sudo()._render_qweb_pdf( + 'website_gdpr_odoo.action_pdf_download', request_id.id, data=values) + attachment = self.env['ir.attachment'].sudo().create({ + 'datas': base64.b64encode(pdf[0]), + 'name': "Data Download", + 'type': 'binary', + 'res_model': 'gdpr.request', + 'res_id': request_id.id, + 'public': True + }) + return { + 'url': f'/web/content/{attachment.id}?download=true&access_token=', + } + + @api.model_create_multi + def create(self, vals): + """ For getting overriding sequence number """ + for val in vals: + if val.get('name', 'New') == 'New': + val['name'] = self.env['ir.sequence'].next_by_code( + 'request.sequence') or 'New' + return super(GDPRRequest, self).create(vals) diff --git a/website_gdpr_odoo/models/gdpr_template.py b/website_gdpr_odoo/models/gdpr_template.py new file mode 100755 index 000000000..f2cf7b923 --- /dev/null +++ b/website_gdpr_odoo/models/gdpr_template.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (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 GDPRTemplate(models.Model): + """ + The GDPRTemplate class included fields and methode to archive. + Methods: + action_archive_template(self): + To archive the record. + """ + _name = "gdpr.template" + _description = "GDPR Template" + + name = fields.Char(string="Title", required=True, + help="Providing the name of the template") + description = fields.Html(string="Short Description", required=True, + help="Providing the description for the template") + active = fields.Boolean(default=True) + allow_messages = fields.Boolean(string="Allow Gdpr Message", default=True, + help="By enabling this an email will send " + "to the partner while confirming the " + "gdpr request") + field_ids = fields.Many2many('ir.model.fields', + domain="[('model', '=', 'res.partner')]", + string="Data Fields", + required=True, + help="Select the fields to" + " visible to the customer") + + def action_archive_template(self): + """ To archive the record """ + self.active = False diff --git a/website_gdpr_odoo/report/gdpr_request_templates.xml b/website_gdpr_odoo/report/gdpr_request_templates.xml new file mode 100644 index 000000000..425761f00 --- /dev/null +++ b/website_gdpr_odoo/report/gdpr_request_templates.xml @@ -0,0 +1,39 @@ + + + + + diff --git a/website_gdpr_odoo/security/ir.model.access.csv b/website_gdpr_odoo/security/ir.model.access.csv new file mode 100755 index 000000000..9a652de3b --- /dev/null +++ b/website_gdpr_odoo/security/ir.model.access.csv @@ -0,0 +1,5 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +gdpr_request_group_website_designer,access.gdpr.request.designer,model_gdpr_request,website.group_website_designer,1,1,1,1 +gdpr_request_group_restricted_editor,access.gdpr.request.restricted.editor,model_gdpr_request,website.group_website_restricted_editor,1,0,0,0 +gdpr_template_group_website_designer,access.gdpr.template.designer,model_gdpr_template,website.group_website_designer,1,1,1,1 +gdpr_template_group_restricted_editor,access.gdpr.template.restricted.editor,model_gdpr_template,website.group_website_restricted_editor,1,0,0,0 diff --git a/website_gdpr_odoo/static/description/assets/cybro-icon.png b/website_gdpr_odoo/static/description/assets/cybro-icon.png new file mode 100644 index 000000000..06e73e11d Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/cybro-icon.png differ diff --git a/website_gdpr_odoo/static/description/assets/cybro-odoo.png b/website_gdpr_odoo/static/description/assets/cybro-odoo.png new file mode 100644 index 000000000..ed02e07a4 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/cybro-odoo.png differ diff --git a/website_gdpr_odoo/static/description/assets/h2.png b/website_gdpr_odoo/static/description/assets/h2.png new file mode 100644 index 000000000..0bfc4707d Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/h2.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/arrows-repeat.svg b/website_gdpr_odoo/static/description/assets/icons/arrows-repeat.svg new file mode 100644 index 000000000..1d7efabc5 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/banner-1.png b/website_gdpr_odoo/static/description/assets/icons/banner-1.png new file mode 100644 index 000000000..c180db172 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/banner-1.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/banner-2.svg b/website_gdpr_odoo/static/description/assets/icons/banner-2.svg new file mode 100644 index 000000000..e606d97d9 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/banner-bg.png b/website_gdpr_odoo/static/description/assets/icons/banner-bg.png new file mode 100644 index 000000000..a8238d3c0 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/banner-bg.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/banner-bg.svg b/website_gdpr_odoo/static/description/assets/icons/banner-bg.svg new file mode 100644 index 000000000..b1378103e --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/banner-call.svg b/website_gdpr_odoo/static/description/assets/icons/banner-call.svg new file mode 100644 index 000000000..96c687e81 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/banner-mail.svg b/website_gdpr_odoo/static/description/assets/icons/banner-mail.svg new file mode 100644 index 000000000..cbf0d158d --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/banner-pattern.svg b/website_gdpr_odoo/static/description/assets/icons/banner-pattern.svg new file mode 100644 index 000000000..9c1c7e101 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/banner-promo.svg b/website_gdpr_odoo/static/description/assets/icons/banner-promo.svg new file mode 100644 index 000000000..d52791b11 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/brand-pair.svg b/website_gdpr_odoo/static/description/assets/icons/brand-pair.svg new file mode 100644 index 000000000..d8db7fc1e --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/check.png b/website_gdpr_odoo/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/check.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/chevron.png b/website_gdpr_odoo/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/chevron.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/close-icon.svg b/website_gdpr_odoo/static/description/assets/icons/close-icon.svg new file mode 100644 index 000000000..df8cce37a --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/cogs.png b/website_gdpr_odoo/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/cogs.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/collabarate-icon.svg b/website_gdpr_odoo/static/description/assets/icons/collabarate-icon.svg new file mode 100644 index 000000000..dd4e10518 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/consultation.png b/website_gdpr_odoo/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/consultation.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/cybro-logo.png b/website_gdpr_odoo/static/description/assets/icons/cybro-logo.png new file mode 100644 index 000000000..ff4b78220 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/cybro-logo.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/down.svg b/website_gdpr_odoo/static/description/assets/icons/down.svg new file mode 100644 index 000000000..f21c36271 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/website_gdpr_odoo/static/description/assets/icons/ecom-black.png b/website_gdpr_odoo/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/ecom-black.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/education-black.png b/website_gdpr_odoo/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/education-black.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/faq.png b/website_gdpr_odoo/static/description/assets/icons/faq.png new file mode 100644 index 000000000..4250b5b81 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/faq.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/feature-icon.svg b/website_gdpr_odoo/static/description/assets/icons/feature-icon.svg new file mode 100644 index 000000000..fa0ea6850 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/feature.png b/website_gdpr_odoo/static/description/assets/icons/feature.png new file mode 100644 index 000000000..ac7a785c0 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/feature.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/gear.svg b/website_gdpr_odoo/static/description/assets/icons/gear.svg new file mode 100644 index 000000000..0cc66b6ea --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/hire-odoo.svg b/website_gdpr_odoo/static/description/assets/icons/hire-odoo.svg new file mode 100644 index 000000000..e1ac089b0 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/hotel-black.png b/website_gdpr_odoo/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/hotel-black.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/license.png b/website_gdpr_odoo/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/license.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/life-ring-icon.svg b/website_gdpr_odoo/static/description/assets/icons/life-ring-icon.svg new file mode 100644 index 000000000..3ae6e1d89 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/lifebuoy.png b/website_gdpr_odoo/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/lifebuoy.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/mail.svg b/website_gdpr_odoo/static/description/assets/icons/mail.svg new file mode 100644 index 000000000..1eedde695 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/manufacturing-black.png b/website_gdpr_odoo/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/manufacturing-black.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/notes.png b/website_gdpr_odoo/static/description/assets/icons/notes.png new file mode 100644 index 000000000..ee5e95404 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/notes.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/notification icon.svg b/website_gdpr_odoo/static/description/assets/icons/notification icon.svg new file mode 100644 index 000000000..053189973 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/odoo-consultancy.svg b/website_gdpr_odoo/static/description/assets/icons/odoo-consultancy.svg new file mode 100644 index 000000000..e05f65bde --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/odoo-licencing.svg b/website_gdpr_odoo/static/description/assets/icons/odoo-licencing.svg new file mode 100644 index 000000000..2606c88b0 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/odoo-logo.png b/website_gdpr_odoo/static/description/assets/icons/odoo-logo.png new file mode 100644 index 000000000..0e4d0eb5a Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/odoo-logo.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/patter.svg b/website_gdpr_odoo/static/description/assets/icons/patter.svg new file mode 100644 index 000000000..25c9c0a8f --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/pattern1.png b/website_gdpr_odoo/static/description/assets/icons/pattern1.png new file mode 100644 index 000000000..09ab0fb2d Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/pattern1.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/pos-black.png b/website_gdpr_odoo/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/pos-black.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/puzzle-piece-icon.svg b/website_gdpr_odoo/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100644 index 000000000..3e9ad9373 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/puzzle.png b/website_gdpr_odoo/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/puzzle.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/replace-icon.svg b/website_gdpr_odoo/static/description/assets/icons/replace-icon.svg new file mode 100644 index 000000000..d0e3a7af1 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/restaurant-black.png b/website_gdpr_odoo/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/restaurant-black.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/screenshot-main.png b/website_gdpr_odoo/static/description/assets/icons/screenshot-main.png new file mode 100644 index 000000000..575f8e676 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/screenshot-main.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/screenshot.png b/website_gdpr_odoo/static/description/assets/icons/screenshot.png new file mode 100644 index 000000000..cef272529 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/screenshot.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/service-black.png b/website_gdpr_odoo/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/service-black.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/skype-fill.svg b/website_gdpr_odoo/static/description/assets/icons/skype-fill.svg new file mode 100644 index 000000000..c17423639 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/skype.png b/website_gdpr_odoo/static/description/assets/icons/skype.png new file mode 100644 index 000000000..51b409fb3 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/skype.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/skype.svg b/website_gdpr_odoo/static/description/assets/icons/skype.svg new file mode 100644 index 000000000..df3dad39b --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/star-1.svg b/website_gdpr_odoo/static/description/assets/icons/star-1.svg new file mode 100644 index 000000000..7e55ab162 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/star-2.svg b/website_gdpr_odoo/static/description/assets/icons/star-2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/support.png b/website_gdpr_odoo/static/description/assets/icons/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/support.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/test-1 - Copy.png b/website_gdpr_odoo/static/description/assets/icons/test-1 - Copy.png new file mode 100644 index 000000000..f6a902663 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/test-1 - Copy.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/test-1.png b/website_gdpr_odoo/static/description/assets/icons/test-1.png new file mode 100644 index 000000000..0908add2b Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/test-1.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/test-2.png b/website_gdpr_odoo/static/description/assets/icons/test-2.png new file mode 100644 index 000000000..4671fe91e Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/test-2.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/trading-black.png b/website_gdpr_odoo/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/trading-black.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/training.png b/website_gdpr_odoo/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/training.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/translate.svg b/website_gdpr_odoo/static/description/assets/icons/translate.svg new file mode 100644 index 000000000..af9c8a1aa --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/update.png b/website_gdpr_odoo/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/update.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/user.png b/website_gdpr_odoo/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/user.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/video.png b/website_gdpr_odoo/static/description/assets/icons/video.png new file mode 100644 index 000000000..576705b17 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/video.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/whatsapp.png b/website_gdpr_odoo/static/description/assets/icons/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/whatsapp.png differ diff --git a/website_gdpr_odoo/static/description/assets/icons/wrench-icon.svg b/website_gdpr_odoo/static/description/assets/icons/wrench-icon.svg new file mode 100644 index 000000000..174b5a465 --- /dev/null +++ b/website_gdpr_odoo/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/website_gdpr_odoo/static/description/assets/icons/wrench.png b/website_gdpr_odoo/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/icons/wrench.png differ diff --git a/website_gdpr_odoo/static/description/assets/modules/1.gif b/website_gdpr_odoo/static/description/assets/modules/1.gif new file mode 100755 index 000000000..ae3a880a2 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/modules/1.gif differ diff --git a/website_gdpr_odoo/static/description/assets/modules/2.gif b/website_gdpr_odoo/static/description/assets/modules/2.gif new file mode 100755 index 000000000..d19e2b352 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/modules/2.gif differ diff --git a/website_gdpr_odoo/static/description/assets/modules/3.png b/website_gdpr_odoo/static/description/assets/modules/3.png new file mode 100755 index 000000000..8513873ea Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/modules/3.png differ diff --git a/website_gdpr_odoo/static/description/assets/modules/4.png b/website_gdpr_odoo/static/description/assets/modules/4.png new file mode 100755 index 000000000..3bedf7981 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/modules/4.png differ diff --git a/website_gdpr_odoo/static/description/assets/modules/5.png b/website_gdpr_odoo/static/description/assets/modules/5.png new file mode 100755 index 000000000..0e311ca87 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/modules/5.png differ diff --git a/website_gdpr_odoo/static/description/assets/modules/6.jpg b/website_gdpr_odoo/static/description/assets/modules/6.jpg new file mode 100755 index 000000000..67c7f7062 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/modules/6.jpg differ diff --git a/website_gdpr_odoo/static/description/assets/screenshots/1.png b/website_gdpr_odoo/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..9572fb694 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/screenshots/1.png differ diff --git a/website_gdpr_odoo/static/description/assets/screenshots/2.png b/website_gdpr_odoo/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..efbd7f5a7 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/screenshots/2.png differ diff --git a/website_gdpr_odoo/static/description/assets/screenshots/3.png b/website_gdpr_odoo/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..b6ae56336 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/screenshots/3.png differ diff --git a/website_gdpr_odoo/static/description/assets/screenshots/4.png b/website_gdpr_odoo/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..97bca666b Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/screenshots/4.png differ diff --git a/website_gdpr_odoo/static/description/assets/screenshots/5.png b/website_gdpr_odoo/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..b60a19dd2 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/screenshots/5.png differ diff --git a/website_gdpr_odoo/static/description/assets/screenshots/6.png b/website_gdpr_odoo/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..f239fbcc6 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/screenshots/6.png differ diff --git a/website_gdpr_odoo/static/description/assets/screenshots/7.png b/website_gdpr_odoo/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..a23a60638 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/screenshots/7.png differ diff --git a/website_gdpr_odoo/static/description/assets/screenshots/8.png b/website_gdpr_odoo/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..ade8e97c3 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/screenshots/8.png differ diff --git a/website_gdpr_odoo/static/description/assets/screenshots/hero.gif b/website_gdpr_odoo/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..b84320535 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/screenshots/hero.gif differ diff --git a/website_gdpr_odoo/static/description/assets/y18.jpg b/website_gdpr_odoo/static/description/assets/y18.jpg new file mode 100644 index 000000000..eea1714f2 Binary files /dev/null and b/website_gdpr_odoo/static/description/assets/y18.jpg differ diff --git a/website_gdpr_odoo/static/description/banner.png b/website_gdpr_odoo/static/description/banner.png new file mode 100644 index 000000000..093f023bb Binary files /dev/null and b/website_gdpr_odoo/static/description/banner.png differ diff --git a/website_gdpr_odoo/static/description/icon.png b/website_gdpr_odoo/static/description/icon.png new file mode 100644 index 000000000..989b30bab Binary files /dev/null and b/website_gdpr_odoo/static/description/icon.png differ diff --git a/website_gdpr_odoo/static/description/index.html b/website_gdpr_odoo/static/description/index.html new file mode 100644 index 000000000..fb58e5a31 --- /dev/null +++ b/website_gdpr_odoo/static/description/index.html @@ -0,0 +1,1144 @@ + + + + + + Website GDPR In Odoo + + + + + + + + + + +
+
+ + + +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+
+

+ General Data Protection Regulation (GDPR) for Odoo. +

+

Website GDPR In Odoo +

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

Key + Highlights

+
+
+
+
+ +
+
+ Access Data from Database. +
+

+ Allow Customers to Access their Data in your Database.

+
+
+
+
+
+ +
+
+ Request for Data +
+

+ Customers can Request their Data for Downloading. +

+
+
+
+
+
+ +
+
+ Manage Personal Data +
+

+ Customers can Manage their Personal Data. +

+
+
+
+
+
+ +
+
+ Remove the Data +
+

+ Customers can Request for Removing their Data.

+
+
+
+
+ +
+
+
+ Website GDPR In Odoo +

+ Are you ready to make your business more + organized? +
Improve now! +

+ +
+
+ +
+
+
+ + + + +
+
+ +
+
+
+
+ acc_bg +
+ +
+
+
+
+

+ GDPR Template + +

+
+
+

+ Go to Website > Configuration > GDPR Template. +

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

+ Admin can create the + + GDPR Template. +

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

Go to + + My Account. +

+
+
+

+ Click on the link "Manage your personal data". +

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

+ User can View All + + + Requests and Templates. +

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

+ Request for + + + Downloading the Data. +

+
+
+

+ Clicking the Download Button Creates a Request in the Backend. + Go to Website > Configuration > GDPR Request +

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

+ Download the + + GDPR Data. +

+
+
+

+ Click on the Download Icon for Downloading the Data. +

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

+ Downloaded + + GDPR Data. +

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

+ Request for + + Removing Data. +

+
+
+

+ Users can Remove the Data by Clicking on the Delete Button. +

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

+ Customers can Access and Manage their Data.

+
+
+
+
+
+
+
+ +
+

+ Customers can Request their Data for Downloading or Deleting.

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

+ While configuring a + backup, selecting + the Zip option will + include the + filestore in the + backup, while + choosing the Dump + option will create a + backup without the + filestore. +

+
+
+ +
+ +
+

+ Enable the "Remove + Old Backups" option + in the backup + creation view to + automatically delete + previous backups + based on the number + of days specified. +

+
+
+ +
+ +
+

+ Enable the "Notify + User" option and + specify a contact to + receive an email + containing a + detailed report with + the failure reason + and backup details. + This option will + also send an email + upon successful + backup. +

+
+
+ +
+ +
+

+ Select the backup + destination as local + storage and specify + a backup path to a + location on the + system to create + backups on your own + system. +

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

+ Latest Release 18.0.1.0.0 +

+ + 04th November, 2024 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit for Website GDPR In Odoo +
  • +
+
+
+
+
+
+
+
+
+
+ + + +
+

+ Related Products +

+ +
+ + +
+

+ Our Services

+ +
+ +
+
+ .... +
+
+ +
+ + +
+
+ + + + + + diff --git a/website_gdpr_odoo/static/src/css/gdpr_portal.css b/website_gdpr_odoo/static/src/css/gdpr_portal.css new file mode 100755 index 000000000..6da694243 --- /dev/null +++ b/website_gdpr_odoo/static/src/css/gdpr_portal.css @@ -0,0 +1,85 @@ +.c-pill { + align-items: center; + font-family: "Open Sans", Arial, Verdana, sans-serif; + font-weight: bold; + font-size: 11px; + display: inline-block; + height: 100%; + white-space: nowrap; + width: auto; + position: relative; + border-radius: 100px; + line-height: 1; + overflow: hidden; + padding: 0px 12px 0px 20px; + text-overflow: ellipsis; + line-height: 1.25rem; + color: #fff; + word-break: break-word; +} +.c-pill--success { + background: #6BC167; +} +.c-pill--warning { + background: #ffc400; +} +.c-pill--danger { + background: #ff4436; +} +.card-gdpr:hover { + background-color: coral; +} +.table-gdpr { + font-family: arial, sans-serif; + border-collapse: collapse; + width: 100% +} +.th-gdpr { + background-color: #04AA6D; + color: white; +} +.td-gdpr, +.th-gdpr { + border: 2px solid #dddddd; + padding: 8px; +} +.gdpr-modal { + position: fixed; + left: 0; + top: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.5); + opacity: 0; + visibility: hidden; + transform: scale(1.1); + transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s; +} +.gdpr-modal-content { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + background-color: white; + padding: 1rem 1.5rem; + width: 30rem; + border-radius: 0.5rem; +} +.gdpr-close-button { + float: right; + width: 1.5rem; + line-height: 1.5rem; + text-align: center; + cursor: pointer; + border-radius: 0.25rem; + background-color: lightgray; +} +.gdpr-close-button:hover { + background-color: darkgray; +} +.gdpr-show-modal { + opacity: 1; + visibility: visible; + transform: scale(1.0); + transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s; +} diff --git a/website_gdpr_odoo/static/src/js/gdpr_portal.js b/website_gdpr_odoo/static/src/js/gdpr_portal.js new file mode 100755 index 000000000..be0802645 --- /dev/null +++ b/website_gdpr_odoo/static/src/js/gdpr_portal.js @@ -0,0 +1,59 @@ +/** @odoo-module */ + +import publicWidget from '@web/legacy/js/public/public_widget'; +import {session} from "@web/session"; +import { rpc } from "@web/core/network/rpc"; + +var Template = publicWidget.Widget.extend({ + selector: '.gdpr_portal_template', + events: { + 'click ._actionDelete': '_actionModalCloseAndOpen', + 'click ._actionDownload': '_onClickActionDownload', + 'click ._actionReqDownload': '_onClickActionReqDownload', + 'click .gdpr-close-button': '_actionModalCloseAndOpen', + 'click .gdpr-modal-confirm': '_onClickActionDelete', + }, + init() { + this._super(...arguments); + this.orm = this.bindService("orm"); + }, + /** + * Action to transfer data to create record type of delete + */ + _onClickActionDelete: function(ev) { + rpc('/gdpr_management/confirm',{ + user_id: session.user_id, + template_id: this.template_id, + type: 'delete' + }) + }, + /** + * For opening and closing the modal + */ + _actionModalCloseAndOpen: function(ev) { + this.template_id = Number(ev.currentTarget.getAttribute("id")) + this.el.querySelector(".gdpr-modal").classList.toggle("gdpr-show-modal") + }, + /** + * Action to transfer data to create record type of download + */ + _onClickActionDownload: function(ev) { + rpc('/gdpr_management/confirm',{ + user_id: session.user_id, + template_id: Number(ev.currentTarget.getAttribute("id")), + type: 'download' + }) + }, + /** + * Action to open window of the content to download + */ + _onClickActionReqDownload: function(ev) { + var req_id = Number(ev.currentTarget.getAttribute("id")) + this.orm.call('gdpr.request', 'action_download_pdf',[,req_id],{} + ).then(function(result) { + window.open(result['url']) + }); + } +}) +publicWidget.registry.gdpr_portal_template = Template; +return Template; diff --git a/website_gdpr_odoo/views/gdpr_request_report_views.xml b/website_gdpr_odoo/views/gdpr_request_report_views.xml new file mode 100755 index 000000000..2c9ac9db9 --- /dev/null +++ b/website_gdpr_odoo/views/gdpr_request_report_views.xml @@ -0,0 +1,14 @@ + + + + + Download Data + gdpr.request + qweb-pdf + website_gdpr_odoo.download_template + website_gdpr_odoo.download_template + Download Data + + report + + \ No newline at end of file diff --git a/website_gdpr_odoo/views/gdpr_request_templates.xml b/website_gdpr_odoo/views/gdpr_request_templates.xml new file mode 100755 index 000000000..98236bc8c --- /dev/null +++ b/website_gdpr_odoo/views/gdpr_request_templates.xml @@ -0,0 +1,278 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/website_gdpr_odoo/views/gdpr_request_views.xml b/website_gdpr_odoo/views/gdpr_request_views.xml new file mode 100755 index 000000000..78348082a --- /dev/null +++ b/website_gdpr_odoo/views/gdpr_request_views.xml @@ -0,0 +1,74 @@ + + + + + gdpr.request.view.list + gdpr.request + + + + + + + + + + + + + Request Sequence + request.sequence + GDPR + 6 + + + + gdpr.request.view.form + gdpr.request + +
+
+
+ +

+ +

+ + + + + + + + + +
+
+
+
+ + + GDPR Request + gdpr.request + list,form + + + + + +
\ No newline at end of file diff --git a/website_gdpr_odoo/views/gdpr_template_views.xml b/website_gdpr_odoo/views/gdpr_template_views.xml new file mode 100755 index 000000000..14337369f --- /dev/null +++ b/website_gdpr_odoo/views/gdpr_template_views.xml @@ -0,0 +1,48 @@ + + + + + gdpr.template.view.list + gdpr.template + + + + + + + + + + + gdpr.template.view.form + gdpr.template + +
+ +
+
+ + + + + + + + +
+
+
+
+ + + GDPR Template + gdpr.template + list,form + + + +
\ No newline at end of file diff --git a/website_gdpr_odoo/views/mail_templates.xml b/website_gdpr_odoo/views/mail_templates.xml new file mode 100644 index 000000000..0dcf21109 --- /dev/null +++ b/website_gdpr_odoo/views/mail_templates.xml @@ -0,0 +1,25 @@ + + + + + Gdpr Requests + + Your Gdpr Request Status + + +
+

+ Hi, +
+
+ +

+
+ Regards, +
+ +
+ +
+
+
\ No newline at end of file