Browse Source
Merge pull request #21 from njeudy/12.0-mig-privacy
Merge pull request #21 from njeudy/12.0-mig-privacy
[12.0][MIG] migration module privacypull/28/head
Pedro M. Baeza
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
22 changed files with 1793 additions and 32 deletions
-
36.travis.yml
-
86privacy/README.rst
-
1privacy/__init__.py
-
28privacy/__manifest__.py
-
10privacy/demo/res_users.xml
-
211privacy/i18n/es.po
-
200privacy/i18n/fr.po
-
200privacy/i18n/privacy.pot
-
204privacy/i18n/pt.po
-
1privacy/models/__init__.py
-
52privacy/models/privacy_activity.py
-
2privacy/readme/CONFIGURATION.rst
-
3privacy/readme/CONTRIBUTORS.rst
-
2privacy/readme/DESCRIPTION.rst
-
6privacy/readme/USAGE.rst
-
30privacy/security/data_protection.xml
-
3privacy/security/ir.model.access.csv
-
BINprivacy/static/description/icon.png
-
115privacy/static/description/icon.svg
-
432privacy/static/description/index.html
-
61privacy/views/data_protection_menu_view.xml
-
142privacy/views/privacy_activity_view.xml
@ -0,0 +1,86 @@ |
|||
=========================== |
|||
Data Privacy and Protection |
|||
=========================== |
|||
|
|||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
|||
!! This file is generated by oca-gen-addon-readme !! |
|||
!! changes will be overwritten. !! |
|||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
|||
|
|||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png |
|||
:target: https://odoo-community.org/page/development-status |
|||
:alt: Beta |
|||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png |
|||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html |
|||
:alt: License: AGPL-3 |
|||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fdata--protection-lightgray.png?logo=github |
|||
:target: https://github.com/OCA/data-protection/tree/12.0/privacy |
|||
:alt: OCA/data-protection |
|||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png |
|||
:target: https://translation.odoo-community.org/projects/data-protection-11-0/data-protection-11-0-privacy |
|||
:alt: Translate me on Weblate |
|||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png |
|||
:target: https://runbot.odoo-community.org/runbot/263/12.0 |
|||
:alt: Try me on Runbot |
|||
|
|||
|badge1| |badge2| |badge3| |badge4| |badge5| |
|||
|
|||
This application provides data protection and privacy feature, |
|||
to comply with regulations such as GDPR. |
|||
|
|||
**Table of contents** |
|||
|
|||
.. contents:: |
|||
:local: |
|||
|
|||
Usage |
|||
===== |
|||
|
|||
To define data processing activities: |
|||
|
|||
#. Go to *Privacy > Master Data > Activities* and create one. |
|||
#. Define the data processing activity using the provided tools. |
|||
|
|||
Consult your lawyer! |
|||
|
|||
Bug Tracker |
|||
=========== |
|||
|
|||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/data-protection/issues>`_. |
|||
In case of trouble, please check there if your issue has already been reported. |
|||
If you spotted it first, help us smashing it by providing a detailed and welcomed |
|||
`feedback <https://github.com/OCA/data-protection/issues/new?body=module:%20privacy%0Aversion:%2011.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. |
|||
|
|||
Do not contact contributors directly about support or help with technical issues. |
|||
|
|||
Credits |
|||
======= |
|||
|
|||
Authors |
|||
~~~~~~~ |
|||
|
|||
* Eficent |
|||
* Tecnativa |
|||
|
|||
Contributors |
|||
~~~~~~~~~~~~ |
|||
|
|||
* Miquel Raïch <miquel.raich@eficent.com> |
|||
* Daniel Reis <dreis.pt@hotmail.com> |
|||
|
|||
Maintainers |
|||
~~~~~~~~~~~ |
|||
|
|||
This module is maintained by the OCA. |
|||
|
|||
.. image:: https://odoo-community.org/logo.png |
|||
:alt: Odoo Community Association |
|||
:target: https://odoo-community.org |
|||
|
|||
OCA, or the Odoo Community Association, is a nonprofit organization whose |
|||
mission is to support the collaborative development of Odoo features and |
|||
promote its widespread use. |
|||
|
|||
This module is part of the `OCA/data-protection <https://github.com/OCA/data-protection/tree/12.0/privacy>`_ project on GitHub. |
|||
|
|||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
@ -0,0 +1 @@ |
|||
from . import models |
@ -0,0 +1,28 @@ |
|||
# Copyright 2018 Eficent Business and IT Consulting Services S.L. |
|||
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html |
|||
{ |
|||
'name': 'Data Privacy and Protection', |
|||
'version': '12.0.1.0.0', |
|||
'category': 'Data Protection', |
|||
'summary': 'Provides data privacy and protection features ' |
|||
'to comply to regulations, such as GDPR.', |
|||
'author': "Eficent, " |
|||
"Tecnativa, " |
|||
"Odoo Community Association (OCA)", |
|||
'website': 'http://www.github.com/OCA/data-protection', |
|||
'license': 'AGPL-3', |
|||
'data': [ |
|||
'security/data_protection.xml', |
|||
'security/ir.model.access.csv', |
|||
'views/data_protection_menu_view.xml', |
|||
'views/privacy_activity_view.xml', |
|||
], |
|||
'demo': [ |
|||
'demo/res_users.xml', |
|||
], |
|||
'depends': [ |
|||
'mail', |
|||
], |
|||
'installable': True, |
|||
'application': True, |
|||
} |
@ -0,0 +1,10 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<!-- Copyright 2018 Tecnativa - Jairo Llopis |
|||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). --> |
|||
<data> |
|||
|
|||
<record id="base.user_demo" model="res.users"> |
|||
<field name="groups_id" eval="[(4, ref('group_data_protection_user'))]"/> |
|||
</record> |
|||
|
|||
</data> |
@ -0,0 +1,211 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * privacy |
|||
# |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2018-07-11 08:39+0000\n" |
|||
"PO-Revision-Date: 2018-07-11 10:46+0200\n" |
|||
"Last-Translator: Jairo Llopis <yajo.sk8@gmail.com>\n" |
|||
"Language-Team: \n" |
|||
"Language: es_ES\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: 8bit\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
"X-Generator: Poedit 2.0.8\n" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_active |
|||
msgid "Active" |
|||
msgstr "Activa" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,name:privacy.activity_action |
|||
#: model:ir.ui.menu,name:privacy.menu_privacy_activity |
|||
msgid "Activities" |
|||
msgstr "Actividades" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.view,arch_db:privacy.activity_search |
|||
msgid "Archived" |
|||
msgstr "Archivada" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_subject_find |
|||
msgid "Are affected subjects present in this database?" |
|||
msgstr "¿Los sujetos interesados se encuentran en esta base de datos?" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,help:privacy.activity_action |
|||
msgid "Click to add a data processing activity." |
|||
msgstr "Pulse para añadir una actividad de tratamiento de datos." |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_controller_id |
|||
#: model:ir.ui.view,arch_db:privacy.activity_search |
|||
msgid "Controller" |
|||
msgstr "Responsable" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_create_uid |
|||
msgid "Created by" |
|||
msgstr "Creado por" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_create_date |
|||
msgid "Created on" |
|||
msgstr "Creado el" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.module.category,name:privacy.module_category_data_protection |
|||
msgid "Data Protection" |
|||
msgstr "Protección de datos" |
|||
|
|||
#. module: privacy |
|||
#: model:res.groups,name:privacy.group_data_protection_manager |
|||
msgid "Data Protection Manager" |
|||
msgstr "Gestor de protección de datos" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,name:privacy.action_data_protection_config |
|||
#, fuzzy |
|||
msgid "Data Protection Settings" |
|||
msgstr "Usuario de protección de datos" |
|||
|
|||
#. module: privacy |
|||
#: model:res.groups,name:privacy.group_data_protection_user |
|||
msgid "Data Protection User" |
|||
msgstr "Usuario de protección de datos" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model,name:privacy.model_privacy_activity |
|||
msgid "Data processing activities" |
|||
msgstr "Actividades de tratamiento de datos" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,help:privacy.activity_action |
|||
msgid "" |
|||
"Data processing activities define why, how and what you do\n" |
|||
" with subjects' personal data." |
|||
msgstr "" |
|||
"Las actividades de tratamiento definen por qué, cómo y qué se hace\n" |
|||
"\t\tcon los datos personales de los interesados." |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_subject_find |
|||
msgid "Define subjects" |
|||
msgstr "Definir interesados" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_description |
|||
#: model:ir.ui.view,arch_db:privacy.activity_form |
|||
msgid "Description" |
|||
msgstr "Descripción" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.view,arch_db:privacy.activity_form |
|||
msgid "Details" |
|||
msgstr "Detalles" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nombre a mostrar" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.view,arch_db:privacy.activity_search |
|||
msgid "Group By" |
|||
msgstr "Agrupar por" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_description |
|||
msgid "How is personal data used here? Why? Etc." |
|||
msgstr "¿Cómo se usan los datos personales aquí? ¿Por qué? Etc." |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_id |
|||
msgid "ID" |
|||
msgstr "ID" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Última modificación en" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Última actualización por" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Última actualización el" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_master_data |
|||
msgid "Master Data" |
|||
msgstr "Datos maestros" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_name |
|||
msgid "Name" |
|||
msgstr "Nombre" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,name:privacy.action_data_protection_partner_form |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_partner |
|||
msgid "Partners" |
|||
msgstr "Contactos" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.parent_menu_data_protection |
|||
msgid "Privacy" |
|||
msgstr "Privacidad" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_processor_ids |
|||
msgid "Processors" |
|||
msgstr "Encargados del tratamiento" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_report |
|||
msgid "Reports" |
|||
msgstr "Informes" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_subject_domain |
|||
msgid "Selection filter to find specific subjects included." |
|||
msgstr "" |
|||
"Filtro de selección para encontrar los interesados específicos incluidos." |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_setting |
|||
msgid "Settings" |
|||
msgstr "Configuración" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_subject_domain |
|||
msgid "Subjects filter" |
|||
msgstr "Filtro de interesados" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_transaction |
|||
msgid "Transactions" |
|||
msgstr "Transacciones" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_controller_id |
|||
msgid "" |
|||
"Whoever determines the purposes and means of the processing of personal data." |
|||
msgstr "" |
|||
"Quien determina los propósitos y medios del procesamiento de datos " |
|||
"personales." |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_processor_ids |
|||
msgid "Whoever processes personal data on behalf of the controller." |
|||
msgstr "Quien procesa los datos personales en nombre del responsable." |
@ -0,0 +1,200 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * privacy |
|||
# |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 11.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"Last-Translator: Automatically generated\n" |
|||
"Language-Team: none\n" |
|||
"Language: fr\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=n > 1;\n" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,name:privacy.activity_action |
|||
#: model:ir.ui.menu,name:privacy.menu_privacy_activity |
|||
msgid "Activities" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.view,arch_db:privacy.activity_search |
|||
msgid "Archived" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_subject_find |
|||
msgid "Are affected subjects present in this database?" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,help:privacy.activity_action |
|||
msgid "Click to add a data processing activity." |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_controller_id |
|||
#: model:ir.ui.view,arch_db:privacy.activity_search |
|||
msgid "Controller" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_create_uid |
|||
msgid "Created by" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_create_date |
|||
msgid "Created on" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.module.category,name:privacy.module_category_data_protection |
|||
msgid "Data Protection" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:res.groups,name:privacy.group_data_protection_manager |
|||
msgid "Data Protection Manager" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,name:privacy.action_data_protection_config |
|||
msgid "Data Protection Settings" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:res.groups,name:privacy.group_data_protection_user |
|||
msgid "Data Protection User" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model,name:privacy.model_privacy_activity |
|||
msgid "Data processing activities" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,help:privacy.activity_action |
|||
msgid "Data processing activities define why, how and what you do\n" |
|||
" with subjects' personal data." |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_subject_find |
|||
msgid "Define subjects" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_description |
|||
#: model:ir.ui.view,arch_db:privacy.activity_form |
|||
msgid "Description" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.view,arch_db:privacy.activity_form |
|||
msgid "Details" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_display_name |
|||
msgid "Display Name" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.view,arch_db:privacy.activity_search |
|||
msgid "Group By" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_description |
|||
msgid "How is personal data used here? Why? Etc." |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_id |
|||
msgid "ID" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_master_data |
|||
msgid "Master Data" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_name |
|||
msgid "Name" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,name:privacy.action_data_protection_partner_form |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_partner |
|||
msgid "Partners" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.parent_menu_data_protection |
|||
msgid "Privacy" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_processor_ids |
|||
msgid "Processors" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_report |
|||
msgid "Reports" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_subject_domain |
|||
msgid "Selection filter to find specific subjects included." |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_setting |
|||
msgid "Settings" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_subject_domain |
|||
msgid "Subjects filter" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_transaction |
|||
msgid "Transactions" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_controller_id |
|||
msgid "Whoever determines the purposes and means of the processing of personal data." |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_processor_ids |
|||
msgid "Whoever processes personal data on behalf of the controller." |
|||
msgstr "" |
@ -0,0 +1,200 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * privacy |
|||
# |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 11.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"Last-Translator: <>\n" |
|||
"Language-Team: \n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: \n" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_active |
|||
msgid "Active" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,name:privacy.activity_action |
|||
#: model:ir.ui.menu,name:privacy.menu_privacy_activity |
|||
msgid "Activities" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.view,arch_db:privacy.activity_search |
|||
msgid "Archived" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_subject_find |
|||
msgid "Are affected subjects present in this database?" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,help:privacy.activity_action |
|||
msgid "Click to add a data processing activity." |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_controller_id |
|||
#: model:ir.ui.view,arch_db:privacy.activity_search |
|||
msgid "Controller" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_create_uid |
|||
msgid "Created by" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_create_date |
|||
msgid "Created on" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.module.category,name:privacy.module_category_data_protection |
|||
msgid "Data Protection" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:res.groups,name:privacy.group_data_protection_manager |
|||
msgid "Data Protection Manager" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,name:privacy.action_data_protection_config |
|||
msgid "Data Protection Settings" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:res.groups,name:privacy.group_data_protection_user |
|||
msgid "Data Protection User" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model,name:privacy.model_privacy_activity |
|||
msgid "Data processing activities" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,help:privacy.activity_action |
|||
msgid "Data processing activities define why, how and what you do\n" |
|||
" with subjects' personal data." |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_subject_find |
|||
msgid "Define subjects" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_description |
|||
#: model:ir.ui.view,arch_db:privacy.activity_form |
|||
msgid "Description" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.view,arch_db:privacy.activity_form |
|||
msgid "Details" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_display_name |
|||
msgid "Display Name" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.view,arch_db:privacy.activity_search |
|||
msgid "Group By" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_description |
|||
msgid "How is personal data used here? Why? Etc." |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_id |
|||
msgid "ID" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_master_data |
|||
msgid "Master Data" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_name |
|||
msgid "Name" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,name:privacy.action_data_protection_partner_form |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_partner |
|||
msgid "Partners" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.parent_menu_data_protection |
|||
msgid "Privacy" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_processor_ids |
|||
msgid "Processors" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_report |
|||
msgid "Reports" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_subject_domain |
|||
msgid "Selection filter to find specific subjects included." |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_setting |
|||
msgid "Settings" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_subject_domain |
|||
msgid "Subjects filter" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_transaction |
|||
msgid "Transactions" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_controller_id |
|||
msgid "Whoever determines the purposes and means of the processing of personal data." |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_processor_ids |
|||
msgid "Whoever processes personal data on behalf of the controller." |
|||
msgstr "" |
|||
|
@ -0,0 +1,204 @@ |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Portuguese (data-protection-10.0)\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"PO-Revision-Date: 2018-09-22 09:43+0000\n" |
|||
"Last-Translator: Pedro Castro Silva <pedrocs@exo.pt>\n" |
|||
"Language-Team: Portuguese <https://translation.odoo-community.org/projects/" |
|||
"data-protection-10-0/data-protection-10-0-privacy/pt/>\n" |
|||
"Language: pt\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Plural-Forms: nplurals=2; plural=n > 1;\n" |
|||
"X-Generator: Weblate 3.1.1\n" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_active |
|||
msgid "Active" |
|||
msgstr "Ativo" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,name:privacy.activity_action |
|||
#: model:ir.ui.menu,name:privacy.menu_privacy_activity |
|||
msgid "Activities" |
|||
msgstr "Atividades" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.view,arch_db:privacy.activity_search |
|||
msgid "Archived" |
|||
msgstr "Arquivado" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_subject_find |
|||
msgid "Are affected subjects present in this database?" |
|||
msgstr "Os titulares afetados estão presentes nesta base de dados?" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,help:privacy.activity_action |
|||
msgid "Click to add a data processing activity." |
|||
msgstr "Clique para adicionar uma atividade de processamento de dados." |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_controller_id |
|||
#: model:ir.ui.view,arch_db:privacy.activity_search |
|||
msgid "Controller" |
|||
msgstr "Controlador" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_create_uid |
|||
msgid "Created by" |
|||
msgstr "Criado por" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_create_date |
|||
msgid "Created on" |
|||
msgstr "Criado em" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.module.category,name:privacy.module_category_data_protection |
|||
msgid "Data Protection" |
|||
msgstr "Proteção de Dados" |
|||
|
|||
#. module: privacy |
|||
#: model:res.groups,name:privacy.group_data_protection_manager |
|||
msgid "Data Protection Manager" |
|||
msgstr "Gestor de Proteção de Dados" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,name:privacy.action_data_protection_config |
|||
#, fuzzy |
|||
msgid "Data Protection Settings" |
|||
msgstr "Utilizador de Proteção de Dados" |
|||
|
|||
#. module: privacy |
|||
#: model:res.groups,name:privacy.group_data_protection_user |
|||
msgid "Data Protection User" |
|||
msgstr "Utilizador de Proteção de Dados" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model,name:privacy.model_privacy_activity |
|||
msgid "Data processing activities" |
|||
msgstr "Atividades de processamento de dados" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,help:privacy.activity_action |
|||
msgid "" |
|||
"Data processing activities define why, how and what you do\n" |
|||
" with subjects' personal data." |
|||
msgstr "" |
|||
"As atividades de processamento de dados definem porquê, como e o que faz com " |
|||
"os dados pessoais dos titulares." |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_subject_find |
|||
msgid "Define subjects" |
|||
msgstr "Definir titulares" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_description |
|||
#: model:ir.ui.view,arch_db:privacy.activity_form |
|||
msgid "Description" |
|||
msgstr "Descrição" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.view,arch_db:privacy.activity_form |
|||
msgid "Details" |
|||
msgstr "Detalhes" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_display_name |
|||
msgid "Display Name" |
|||
msgstr "Nome a Exibir" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.view,arch_db:privacy.activity_search |
|||
msgid "Group By" |
|||
msgstr "Agrupar Por" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_description |
|||
msgid "How is personal data used here? Why? Etc." |
|||
msgstr "Como são usados os dados pessoais aqui? Porquê? Etc." |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_id |
|||
msgid "ID" |
|||
msgstr "" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity___last_update |
|||
msgid "Last Modified on" |
|||
msgstr "Última Modificação em" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_write_uid |
|||
msgid "Last Updated by" |
|||
msgstr "Última Atualização por" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_write_date |
|||
msgid "Last Updated on" |
|||
msgstr "Última Atualização em" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_master_data |
|||
msgid "Master Data" |
|||
msgstr "Dados Principais" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_name |
|||
msgid "Name" |
|||
msgstr "Nome" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.actions.act_window,name:privacy.action_data_protection_partner_form |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_partner |
|||
msgid "Partners" |
|||
msgstr "Parceiros" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.parent_menu_data_protection |
|||
msgid "Privacy" |
|||
msgstr "Privacidade" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_processor_ids |
|||
msgid "Processors" |
|||
msgstr "Processadores" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_report |
|||
msgid "Reports" |
|||
msgstr "Relatórios" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_subject_domain |
|||
msgid "Selection filter to find specific subjects included." |
|||
msgstr "Filtro de seleção para procurar titulares específicos incluídos." |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_setting |
|||
msgid "Settings" |
|||
msgstr "Configurações" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,field_description:privacy.field_privacy_activity_subject_domain |
|||
msgid "Subjects filter" |
|||
msgstr "Filtro de titulares" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.ui.menu,name:privacy.menu_data_protection_transaction |
|||
msgid "Transactions" |
|||
msgstr "Transações" |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_controller_id |
|||
msgid "" |
|||
"Whoever determines the purposes and means of the processing of personal data." |
|||
msgstr "Quem determina os fins e meios do processamento de dados pessoais." |
|||
|
|||
#. module: privacy |
|||
#: model:ir.model.fields,help:privacy.field_privacy_activity_processor_ids |
|||
msgid "Whoever processes personal data on behalf of the controller." |
|||
msgstr "Quem processa dados pessoais em nome do controlador." |
@ -0,0 +1 @@ |
|||
from . import privacy_activity |
@ -0,0 +1,52 @@ |
|||
# Copyright 2018 Tecnativa - Jairo Llopis |
|||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). |
|||
|
|||
from odoo import api, fields, models |
|||
|
|||
|
|||
class PrivacyActivity(models.Model): |
|||
_name = "privacy.activity" |
|||
_description = "Data processing activities" |
|||
_inherit = "mail.thread" |
|||
|
|||
active = fields.Boolean( |
|||
default=True, |
|||
index=True, |
|||
) |
|||
name = fields.Char( |
|||
index=True, |
|||
required=True, |
|||
translate=True, |
|||
) |
|||
description = fields.Html( |
|||
translate=True, |
|||
help="How is personal data used here? Why? Etc." |
|||
) |
|||
controller_id = fields.Many2one( |
|||
"res.partner", |
|||
string="Controller", |
|||
required=True, |
|||
default=lambda self: self._default_controller_id(), |
|||
help="Whoever determines the purposes and means of the processing " |
|||
"of personal data.", |
|||
) |
|||
processor_ids = fields.Many2many( |
|||
"res.partner", |
|||
"privacy_activity_res_partner_processor_ids", |
|||
string="Processors", |
|||
help="Whoever processes personal data on behalf of the controller.", |
|||
) |
|||
subject_find = fields.Boolean( |
|||
"Define subjects", |
|||
help="Are affected subjects present in this database?", |
|||
) |
|||
subject_domain = fields.Char( |
|||
"Subjects filter", |
|||
default="[]", |
|||
help="Selection filter to find specific subjects included.", |
|||
) |
|||
|
|||
@api.model |
|||
def _default_controller_id(self): |
|||
"""By default it should be the current user's company.""" |
|||
return self.env.user.company_id |
@ -0,0 +1,2 @@ |
|||
In the "Privacy", open the "Settings" menu to find and enable |
|||
the main features available. |
@ -0,0 +1,3 @@ |
|||
* Miquel Raïch <miquel.raich@eficent.com> |
|||
* Daniel Reis <dreis.pt@hotmail.com> |
|||
* Nicolas JEUDY <https://github.com/njeudy> |
@ -0,0 +1,2 @@ |
|||
This application provides data protection and privacy feature, |
|||
to comply with regulations such as GDPR. |
@ -0,0 +1,6 @@ |
|||
To define data processing activities: |
|||
|
|||
#. Go to *Privacy > Master Data > Activities* and create one. |
|||
#. Define the data processing activity using the provided tools. |
|||
|
|||
Consult your lawyer! |
@ -0,0 +1,30 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<!-- Copyright 2018 Eficent Business and IT Consulting Services S.L. |
|||
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0) --> |
|||
<odoo> |
|||
<data noupdate="0"> |
|||
|
|||
<record model="ir.module.category" id="module_category_data_protection"> |
|||
<field name="name">Data Protection</field> |
|||
<field name="sequence">30</field> |
|||
</record> |
|||
|
|||
<record id="group_data_protection_user" model="res.groups"> |
|||
<field name="name">Data Protection User</field> |
|||
<field name="implied_ids" eval="[(4, ref('base.group_user'))]"/> |
|||
<field name="category_id" ref="module_category_data_protection"/> |
|||
</record> |
|||
|
|||
<record id="group_data_protection_manager" model="res.groups"> |
|||
<field name="name">Data Protection Manager</field> |
|||
<field name="implied_ids" eval="[(4, ref('privacy.group_data_protection_user'))]"/> |
|||
<field name="category_id" ref="module_category_data_protection"/> |
|||
<field name="users" eval="[(4, ref('base.user_root'))]"/> |
|||
</record> |
|||
|
|||
<record id="base.user_root" model="res.users"> |
|||
<field name="groups_id" eval="[(4, ref('group_data_protection_manager'))]"/> |
|||
</record> |
|||
|
|||
</data> |
|||
</odoo> |
@ -0,0 +1,3 @@ |
|||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink |
|||
read,Permission to read activities,model_privacy_activity,group_data_protection_user,1,0,0,0 |
|||
write,Permission to write activities,model_privacy_activity,group_data_protection_manager,1,1,1,1 |
After Width: 128 | Height: 128 | Size: 2.1 KiB |
@ -0,0 +1,115 @@ |
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
|||
<!-- Created with Inkscape (http://www.inkscape.org/) --> |
|||
|
|||
<svg |
|||
xmlns:dc="http://purl.org/dc/elements/1.1/" |
|||
xmlns:cc="http://creativecommons.org/ns#" |
|||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
|||
xmlns:svg="http://www.w3.org/2000/svg" |
|||
xmlns="http://www.w3.org/2000/svg" |
|||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" |
|||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" |
|||
id="svg2" |
|||
version="1.1" |
|||
inkscape:version="0.92.3 (2405546, 2018-03-11)" |
|||
width="60" |
|||
height="60" |
|||
viewBox="0 0 60 60" |
|||
sodipodi:docname="icon.svg" |
|||
inkscape:export-filename="icon.png" |
|||
inkscape:export-xdpi="204.8" |
|||
inkscape:export-ydpi="204.8"> |
|||
<metadata |
|||
id="metadata8"> |
|||
<rdf:RDF> |
|||
<cc:Work |
|||
rdf:about=""> |
|||
<dc:format>image/svg+xml</dc:format> |
|||
<dc:type |
|||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> |
|||
<dc:title /> |
|||
</cc:Work> |
|||
</rdf:RDF> |
|||
</metadata> |
|||
<defs |
|||
id="defs6" /> |
|||
<sodipodi:namedview |
|||
pagecolor="#ffffff" |
|||
bordercolor="#666666" |
|||
borderopacity="1" |
|||
objecttolerance="10" |
|||
gridtolerance="10" |
|||
guidetolerance="10" |
|||
inkscape:pageopacity="0" |
|||
inkscape:pageshadow="2" |
|||
inkscape:window-width="1853" |
|||
inkscape:window-height="1018" |
|||
id="namedview4" |
|||
showgrid="false" |
|||
inkscape:zoom="5.6568542" |
|||
inkscape:cx="-13.498037" |
|||
inkscape:cy="27.319233" |
|||
inkscape:window-x="67" |
|||
inkscape:window-y="34" |
|||
inkscape:window-maximized="1" |
|||
inkscape:current-layer="svg2" |
|||
showguides="true" |
|||
inkscape:guide-bbox="true"> |
|||
<sodipodi:guide |
|||
position="0,41.75" |
|||
orientation="1,0" |
|||
id="guide3360" |
|||
inkscape:locked="false" /> |
|||
<sodipodi:guide |
|||
position="60,60.074219" |
|||
orientation="1,0" |
|||
id="guide3362" |
|||
inkscape:locked="false" /> |
|||
<sodipodi:guide |
|||
position="0.17578125,60" |
|||
orientation="0,1" |
|||
id="guide3364" |
|||
inkscape:locked="false" /> |
|||
<sodipodi:guide |
|||
position="58.71196,-0.0055242717" |
|||
orientation="0,1" |
|||
id="guide3366" |
|||
inkscape:locked="false" /> |
|||
<sodipodi:guide |
|||
position="47.0625,10.9375" |
|||
orientation="-0.70710678,0.70710678" |
|||
id="guide3347" |
|||
inkscape:locked="false" /> |
|||
<sodipodi:guide |
|||
position="21.743534,47.376154" |
|||
orientation="-0.70710678,0.70710678" |
|||
id="guide23" |
|||
inkscape:locked="false" /> |
|||
</sodipodi:namedview> |
|||
<rect |
|||
style="opacity:1;fill:#0092d7;fill-opacity:1" |
|||
id="rect4147" |
|||
width="60" |
|||
height="60" |
|||
x="0" |
|||
y="0" /> |
|||
<path |
|||
style="opacity:1;fill:#000000;fill-opacity:0.39215686" |
|||
d="M 0.0078125,34.359568 0,60 36.1162,60.0088 47.0625,49.0625 37.871757,16.233181 21.743534,12.623846 Z" |
|||
id="rect4171" |
|||
inkscape:connector-curvature="0" |
|||
sodipodi:nodetypes="ccccccc" /> |
|||
<g |
|||
id="g4169" |
|||
transform="matrix(0.3061173,0,0,0.3061173,-1.0360053,-1.0457906)" |
|||
style="fill:#ffffff;stroke:none" /> |
|||
<g |
|||
aria-label="" |
|||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.38242626px;line-height:0%;font-family:FontAwesome;-inkscape-font-specification:FontAwesome;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.78186888px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" |
|||
id="text3352"> |
|||
<path |
|||
d="m 44.064502,27.442816 c 1.038855,0 1.917886,0.399559 2.717006,1.118767 0.719207,0.799119 1.118767,1.67815 1.118767,2.717006 v 15.343092 c 0,1.118767 -0.39956,1.997799 -1.118767,2.717006 -0.79912,0.799119 -1.678151,1.118767 -2.717006,1.118767 H 15.935499 c -1.118767,0 -1.997799,-0.319648 -2.717006,-1.118767 -0.79912,-0.719207 -1.118767,-1.598239 -1.118767,-2.717006 V 31.278589 c 0,-1.038856 0.319647,-1.917887 1.118767,-2.717006 0.719207,-0.719208 1.598239,-1.118767 2.717006,-1.118767 h 1.917886 v -5.75366 c 0,-2.157622 0.479472,-4.155421 1.598239,-6.073308 1.118767,-1.837974 2.557182,-3.276389 4.475069,-4.395156 C 25.764667,10.101925 27.762466,9.542541 30,9.542541 c 2.157623,0 4.155421,0.559384 6.073308,1.678151 1.837974,1.118767 3.276389,2.557182 4.395156,4.395156 1.118768,1.917887 1.678151,3.915686 1.678151,6.073308 v 5.75366 z m -8.310842,0 v -5.75366 c 0,-1.598239 -0.559384,-2.956742 -1.678151,-4.075509 C 32.956742,16.49488 31.598239,15.935496 30,15.935496 c -1.598239,0 -2.956742,0.559384 -4.075509,1.678151 -1.118767,1.118767 -1.67815,2.47727 -1.67815,4.075509 v 5.75366 z" |
|||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40.91491318px;line-height:1.25;font-family:'Font Awesome 5 Free';-inkscape-font-specification:'Font Awesome 5 Free';stroke-width:0.78186888px" |
|||
id="path25" /> |
|||
</g> |
|||
</svg> |
@ -0,0 +1,432 @@ |
|||
<?xml version="1.0" encoding="utf-8" ?> |
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
|||
<head> |
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|||
<meta name="generator" content="Docutils 0.14: http://docutils.sourceforge.net/" /> |
|||
<title>Data Privacy and Protection</title> |
|||
<style type="text/css"> |
|||
|
|||
/* |
|||
:Author: David Goodger (goodger@python.org) |
|||
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $ |
|||
:Copyright: This stylesheet has been placed in the public domain. |
|||
|
|||
Default cascading style sheet for the HTML output of Docutils. |
|||
|
|||
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to |
|||
customize this style sheet. |
|||
*/ |
|||
|
|||
/* used to remove borders from tables and images */ |
|||
.borderless, table.borderless td, table.borderless th { |
|||
border: 0 } |
|||
|
|||
table.borderless td, table.borderless th { |
|||
/* Override padding for "table.docutils td" with "! important". |
|||
The right padding separates the table cells. */ |
|||
padding: 0 0.5em 0 0 ! important } |
|||
|
|||
.first { |
|||
/* Override more specific margin styles with "! important". */ |
|||
margin-top: 0 ! important } |
|||
|
|||
.last, .with-subtitle { |
|||
margin-bottom: 0 ! important } |
|||
|
|||
.hidden { |
|||
display: none } |
|||
|
|||
.subscript { |
|||
vertical-align: sub; |
|||
font-size: smaller } |
|||
|
|||
.superscript { |
|||
vertical-align: super; |
|||
font-size: smaller } |
|||
|
|||
a.toc-backref { |
|||
text-decoration: none ; |
|||
color: black } |
|||
|
|||
blockquote.epigraph { |
|||
margin: 2em 5em ; } |
|||
|
|||
dl.docutils dd { |
|||
margin-bottom: 0.5em } |
|||
|
|||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] { |
|||
overflow: hidden; |
|||
} |
|||
|
|||
/* Uncomment (and remove this text!) to get bold-faced definition list terms |
|||
dl.docutils dt { |
|||
font-weight: bold } |
|||
*/ |
|||
|
|||
div.abstract { |
|||
margin: 2em 5em } |
|||
|
|||
div.abstract p.topic-title { |
|||
font-weight: bold ; |
|||
text-align: center } |
|||
|
|||
div.admonition, div.attention, div.caution, div.danger, div.error, |
|||
div.hint, div.important, div.note, div.tip, div.warning { |
|||
margin: 2em ; |
|||
border: medium outset ; |
|||
padding: 1em } |
|||
|
|||
div.admonition p.admonition-title, div.hint p.admonition-title, |
|||
div.important p.admonition-title, div.note p.admonition-title, |
|||
div.tip p.admonition-title { |
|||
font-weight: bold ; |
|||
font-family: sans-serif } |
|||
|
|||
div.attention p.admonition-title, div.caution p.admonition-title, |
|||
div.danger p.admonition-title, div.error p.admonition-title, |
|||
div.warning p.admonition-title, .code .error { |
|||
color: red ; |
|||
font-weight: bold ; |
|||
font-family: sans-serif } |
|||
|
|||
/* Uncomment (and remove this text!) to get reduced vertical space in |
|||
compound paragraphs. |
|||
div.compound .compound-first, div.compound .compound-middle { |
|||
margin-bottom: 0.5em } |
|||
|
|||
div.compound .compound-last, div.compound .compound-middle { |
|||
margin-top: 0.5em } |
|||
*/ |
|||
|
|||
div.dedication { |
|||
margin: 2em 5em ; |
|||
text-align: center ; |
|||
font-style: italic } |
|||
|
|||
div.dedication p.topic-title { |
|||
font-weight: bold ; |
|||
font-style: normal } |
|||
|
|||
div.figure { |
|||
margin-left: 2em ; |
|||
margin-right: 2em } |
|||
|
|||
div.footer, div.header { |
|||
clear: both; |
|||
font-size: smaller } |
|||
|
|||
div.line-block { |
|||
display: block ; |
|||
margin-top: 1em ; |
|||
margin-bottom: 1em } |
|||
|
|||
div.line-block div.line-block { |
|||
margin-top: 0 ; |
|||
margin-bottom: 0 ; |
|||
margin-left: 1.5em } |
|||
|
|||
div.sidebar { |
|||
margin: 0 0 0.5em 1em ; |
|||
border: medium outset ; |
|||
padding: 1em ; |
|||
background-color: #ffffee ; |
|||
width: 40% ; |
|||
float: right ; |
|||
clear: right } |
|||
|
|||
div.sidebar p.rubric { |
|||
font-family: sans-serif ; |
|||
font-size: medium } |
|||
|
|||
div.system-messages { |
|||
margin: 5em } |
|||
|
|||
div.system-messages h1 { |
|||
color: red } |
|||
|
|||
div.system-message { |
|||
border: medium outset ; |
|||
padding: 1em } |
|||
|
|||
div.system-message p.system-message-title { |
|||
color: red ; |
|||
font-weight: bold } |
|||
|
|||
div.topic { |
|||
margin: 2em } |
|||
|
|||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle, |
|||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle { |
|||
margin-top: 0.4em } |
|||
|
|||
h1.title { |
|||
text-align: center } |
|||
|
|||
h2.subtitle { |
|||
text-align: center } |
|||
|
|||
hr.docutils { |
|||
width: 75% } |
|||
|
|||
img.align-left, .figure.align-left, object.align-left, table.align-left { |
|||
clear: left ; |
|||
float: left ; |
|||
margin-right: 1em } |
|||
|
|||
img.align-right, .figure.align-right, object.align-right, table.align-right { |
|||
clear: right ; |
|||
float: right ; |
|||
margin-left: 1em } |
|||
|
|||
img.align-center, .figure.align-center, object.align-center { |
|||
display: block; |
|||
margin-left: auto; |
|||
margin-right: auto; |
|||
} |
|||
|
|||
table.align-center { |
|||
margin-left: auto; |
|||
margin-right: auto; |
|||
} |
|||
|
|||
.align-left { |
|||
text-align: left } |
|||
|
|||
.align-center { |
|||
clear: both ; |
|||
text-align: center } |
|||
|
|||
.align-right { |
|||
text-align: right } |
|||
|
|||
/* reset inner alignment in figures */ |
|||
div.align-right { |
|||
text-align: inherit } |
|||
|
|||
/* div.align-center * { */ |
|||
/* text-align: left } */ |
|||
|
|||
.align-top { |
|||
vertical-align: top } |
|||
|
|||
.align-middle { |
|||
vertical-align: middle } |
|||
|
|||
.align-bottom { |
|||
vertical-align: bottom } |
|||
|
|||
ol.simple, ul.simple { |
|||
margin-bottom: 1em } |
|||
|
|||
ol.arabic { |
|||
list-style: decimal } |
|||
|
|||
ol.loweralpha { |
|||
list-style: lower-alpha } |
|||
|
|||
ol.upperalpha { |
|||
list-style: upper-alpha } |
|||
|
|||
ol.lowerroman { |
|||
list-style: lower-roman } |
|||
|
|||
ol.upperroman { |
|||
list-style: upper-roman } |
|||
|
|||
p.attribution { |
|||
text-align: right ; |
|||
margin-left: 50% } |
|||
|
|||
p.caption { |
|||
font-style: italic } |
|||
|
|||
p.credits { |
|||
font-style: italic ; |
|||
font-size: smaller } |
|||
|
|||
p.label { |
|||
white-space: nowrap } |
|||
|
|||
p.rubric { |
|||
font-weight: bold ; |
|||
font-size: larger ; |
|||
color: maroon ; |
|||
text-align: center } |
|||
|
|||
p.sidebar-title { |
|||
font-family: sans-serif ; |
|||
font-weight: bold ; |
|||
font-size: larger } |
|||
|
|||
p.sidebar-subtitle { |
|||
font-family: sans-serif ; |
|||
font-weight: bold } |
|||
|
|||
p.topic-title { |
|||
font-weight: bold } |
|||
|
|||
pre.address { |
|||
margin-bottom: 0 ; |
|||
margin-top: 0 ; |
|||
font: inherit } |
|||
|
|||
pre.literal-block, pre.doctest-block, pre.math, pre.code { |
|||
margin-left: 2em ; |
|||
margin-right: 2em } |
|||
|
|||
pre.code .ln { color: grey; } /* line numbers */ |
|||
pre.code, code { background-color: #eeeeee } |
|||
pre.code .comment, code .comment { color: #5C6576 } |
|||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold } |
|||
pre.code .literal.string, code .literal.string { color: #0C5404 } |
|||
pre.code .name.builtin, code .name.builtin { color: #352B84 } |
|||
pre.code .deleted, code .deleted { background-color: #DEB0A1} |
|||
pre.code .inserted, code .inserted { background-color: #A3D289} |
|||
|
|||
span.classifier { |
|||
font-family: sans-serif ; |
|||
font-style: oblique } |
|||
|
|||
span.classifier-delimiter { |
|||
font-family: sans-serif ; |
|||
font-weight: bold } |
|||
|
|||
span.interpreted { |
|||
font-family: sans-serif } |
|||
|
|||
span.option { |
|||
white-space: nowrap } |
|||
|
|||
span.pre { |
|||
white-space: pre } |
|||
|
|||
span.problematic { |
|||
color: red } |
|||
|
|||
span.section-subtitle { |
|||
/* font-size relative to parent (h1..h6 element) */ |
|||
font-size: 80% } |
|||
|
|||
table.citation { |
|||
border-left: solid 1px gray; |
|||
margin-left: 1px } |
|||
|
|||
table.docinfo { |
|||
margin: 2em 4em } |
|||
|
|||
table.docutils { |
|||
margin-top: 0.5em ; |
|||
margin-bottom: 0.5em } |
|||
|
|||
table.footnote { |
|||
border-left: solid 1px black; |
|||
margin-left: 1px } |
|||
|
|||
table.docutils td, table.docutils th, |
|||
table.docinfo td, table.docinfo th { |
|||
padding-left: 0.5em ; |
|||
padding-right: 0.5em ; |
|||
vertical-align: top } |
|||
|
|||
table.docutils th.field-name, table.docinfo th.docinfo-name { |
|||
font-weight: bold ; |
|||
text-align: left ; |
|||
white-space: nowrap ; |
|||
padding-left: 0 } |
|||
|
|||
/* "booktabs" style (no vertical lines) */ |
|||
table.docutils.booktabs { |
|||
border: 0px; |
|||
border-top: 2px solid; |
|||
border-bottom: 2px solid; |
|||
border-collapse: collapse; |
|||
} |
|||
table.docutils.booktabs * { |
|||
border: 0px; |
|||
} |
|||
table.docutils.booktabs th { |
|||
border-bottom: thin solid; |
|||
text-align: left; |
|||
} |
|||
|
|||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils, |
|||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils { |
|||
font-size: 100% } |
|||
|
|||
ul.auto-toc { |
|||
list-style-type: none } |
|||
|
|||
</style> |
|||
</head> |
|||
<body> |
|||
<div class="document" id="data-privacy-and-protection"> |
|||
<h1 class="title">Data Privacy and Protection</h1> |
|||
|
|||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
|||
!! This file is generated by oca-gen-addon-readme !! |
|||
!! changes will be overwritten. !! |
|||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> |
|||
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/data-protection/tree/12.0/privacy"><img alt="OCA/data-protection" src="https://img.shields.io/badge/github-OCA%2Fdata--protection-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/data-protection-11-0/data-protection-11-0-privacy"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/263/12.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p> |
|||
<p>This application provides data protection and privacy feature, |
|||
to comply with regulations such as GDPR.</p> |
|||
<p><strong>Table of contents</strong></p> |
|||
<div class="contents local topic" id="contents"> |
|||
<ul class="simple"> |
|||
<li><a class="reference internal" href="#usage" id="id1">Usage</a></li> |
|||
<li><a class="reference internal" href="#bug-tracker" id="id2">Bug Tracker</a></li> |
|||
<li><a class="reference internal" href="#credits" id="id3">Credits</a><ul> |
|||
<li><a class="reference internal" href="#authors" id="id4">Authors</a></li> |
|||
<li><a class="reference internal" href="#contributors" id="id5">Contributors</a></li> |
|||
<li><a class="reference internal" href="#maintainers" id="id6">Maintainers</a></li> |
|||
</ul> |
|||
</li> |
|||
</ul> |
|||
</div> |
|||
<div class="section" id="usage"> |
|||
<h1><a class="toc-backref" href="#id1">Usage</a></h1> |
|||
<p>To define data processing activities:</p> |
|||
<ol class="arabic simple"> |
|||
<li>Go to <em>Privacy > Master Data > Activities</em> and create one.</li> |
|||
<li>Define the data processing activity using the provided tools.</li> |
|||
</ol> |
|||
<p>Consult your lawyer!</p> |
|||
</div> |
|||
<div class="section" id="bug-tracker"> |
|||
<h1><a class="toc-backref" href="#id2">Bug Tracker</a></h1> |
|||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/data-protection/issues">GitHub Issues</a>. |
|||
In case of trouble, please check there if your issue has already been reported. |
|||
If you spotted it first, help us smashing it by providing a detailed and welcomed |
|||
<a class="reference external" href="https://github.com/OCA/data-protection/issues/new?body=module:%20privacy%0Aversion:%2011.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p> |
|||
<p>Do not contact contributors directly about support or help with technical issues.</p> |
|||
</div> |
|||
<div class="section" id="credits"> |
|||
<h1><a class="toc-backref" href="#id3">Credits</a></h1> |
|||
<div class="section" id="authors"> |
|||
<h2><a class="toc-backref" href="#id4">Authors</a></h2> |
|||
<ul class="simple"> |
|||
<li>Eficent</li> |
|||
<li>Tecnativa</li> |
|||
</ul> |
|||
</div> |
|||
<div class="section" id="contributors"> |
|||
<h2><a class="toc-backref" href="#id5">Contributors</a></h2> |
|||
<ul class="simple"> |
|||
<li>Miquel Raïch <<a class="reference external" href="mailto:miquel.raich@eficent.com">miquel.raich@eficent.com</a>></li> |
|||
<li>Daniel Reis <<a class="reference external" href="mailto:dreis.pt@hotmail.com">dreis.pt@hotmail.com</a>></li> |
|||
</ul> |
|||
</div> |
|||
<div class="section" id="maintainers"> |
|||
<h2><a class="toc-backref" href="#id6">Maintainers</a></h2> |
|||
<p>This module is maintained by the OCA.</p> |
|||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a> |
|||
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose |
|||
mission is to support the collaborative development of Odoo features and |
|||
promote its widespread use.</p> |
|||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/data-protection/tree/12.0/privacy">OCA/data-protection</a> project on GitHub.</p> |
|||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</body> |
|||
</html> |
@ -0,0 +1,61 @@ |
|||
<?xml version="1.0"?> |
|||
<!-- Copyright 2018 Eficent Business and IT Consulting Services S.L. |
|||
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0) --> |
|||
<data> |
|||
|
|||
<record id="action_data_protection_partner_form" model="ir.actions.act_window"> |
|||
<field name="name">Partners</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">res.partner</field> |
|||
<field name="view_type">form</field> |
|||
<field name="view_mode">kanban,tree,form</field> |
|||
</record> |
|||
|
|||
<menuitem id="parent_menu_data_protection" |
|||
name="Privacy" |
|||
groups="group_data_protection_user" |
|||
web_icon="privacy,static/description/icon.png" |
|||
/> |
|||
|
|||
<menuitem id="menu_data_protection_master_data" |
|||
name="Master Data" |
|||
parent="parent_menu_data_protection" |
|||
groups="group_data_protection_user" |
|||
sequence="10" |
|||
/> |
|||
<menuitem id="menu_data_protection_partner" |
|||
name="Partners" |
|||
parent="menu_data_protection_master_data" |
|||
action="action_data_protection_partner_form" |
|||
sequence="1010" |
|||
/> |
|||
<menuitem id="menu_data_protection_transaction" |
|||
name="Transactions" |
|||
parent="parent_menu_data_protection" |
|||
groups="group_data_protection_user" |
|||
sequence="20" |
|||
/> |
|||
<menuitem id="menu_data_protection_report" |
|||
name="Reports" |
|||
parent="parent_menu_data_protection" |
|||
groups="group_data_protection_user" |
|||
sequence="30" |
|||
/> |
|||
|
|||
<record id="action_data_protection_config" model="ir.actions.act_window"> |
|||
<field name="name">Data Protection Settings</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">res.config.settings</field> |
|||
<field name="view_mode">form</field> |
|||
<field name="target">inline</field> |
|||
<field name="context">{'module': 'data_protection'}</field> |
|||
</record> |
|||
<menuitem id="menu_data_protection_setting" |
|||
name="Settings" |
|||
parent="parent_menu_data_protection" |
|||
action="action_data_protection_config" |
|||
groups="group_data_protection_manager" |
|||
sequence="90" |
|||
/> |
|||
|
|||
</data> |
@ -0,0 +1,142 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<!-- Copyright 2018 Tecnativa - Jairo Llopis |
|||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). --> |
|||
<data> |
|||
|
|||
<record model="ir.ui.view" id="activity_form"> |
|||
<field name="name">Privacy Activity Form</field> |
|||
<field name="model">privacy.activity</field> |
|||
<field name="arch" type="xml"> |
|||
<form> |
|||
<header> |
|||
<!-- Placeholder for submodules --> |
|||
</header> |
|||
<sheet> |
|||
<div class="oe_button_box" name="button_box"> |
|||
<button |
|||
class="oe_stat_button" |
|||
icon="fa-archive" |
|||
name="toggle_active" |
|||
type="object" |
|||
> |
|||
<field |
|||
name="active" |
|||
options='{"terminology": "archive"}' |
|||
widget="boolean_button" |
|||
/> |
|||
</button> |
|||
</div> |
|||
<div class="oe_title"> |
|||
<label for="name" class="oe_edit_only"/> |
|||
<h1><field name="name"/></h1> |
|||
</div> |
|||
<group name="basic"> |
|||
<group name="owners"> |
|||
<field name="controller_id"/> |
|||
</group> |
|||
<group name="dates"> |
|||
<field name="create_date" readonly="1"/> |
|||
<field name="write_date" readonly="1"/> |
|||
<field name="write_uid" readonly="1"/> |
|||
</group> |
|||
</group> |
|||
<separator name="subjects" string="Subjects details"/> |
|||
<group name="subjects"> |
|||
<field name="subject_find"/> |
|||
<field |
|||
name="subject_domain" |
|||
widget="domain" |
|||
options='{"model": "res.partner"}' |
|||
attrs='{"required": [("subject_find", "=", True)], |
|||
"invisible": [("subject_find", "=", False)]}' |
|||
/> |
|||
</group> |
|||
<separator name="processors" string="Processors"/> |
|||
<group name="processors"> |
|||
<field |
|||
name="processor_ids" |
|||
widget="many2many" |
|||
> |
|||
<tree string="processors"> |
|||
<field name="name"/> |
|||
<field name="email"/> |
|||
<field name="country_id"/> |
|||
</tree> |
|||
</field> |
|||
</group> |
|||
<notebook string="Details" name="advanced"> |
|||
<page string="Description"> |
|||
<group> |
|||
<field name="description" nolabel="1"/> |
|||
</group> |
|||
</page> |
|||
</notebook> |
|||
</sheet> |
|||
<div class="oe_chatter"> |
|||
<field name="message_follower_ids" widget="mail_followers"/> |
|||
<field name="message_ids" widget="mail_thread"/> |
|||
</div> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
|
|||
<record model="ir.ui.view" id="activity_tree"> |
|||
<field name="name">Privacy Activity Tree</field> |
|||
<field name="model">privacy.activity</field> |
|||
<field name="arch" type="xml"> |
|||
<tree> |
|||
<field name="name"/> |
|||
<field name="controller_id"/> |
|||
<field name="processor_ids"/> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
|
|||
<record model="ir.ui.view" id="activity_search"> |
|||
<field name="name">Privacy Activity Search</field> |
|||
<field name="model">privacy.activity</field> |
|||
<field name="arch" type="xml"> |
|||
<search> |
|||
<field name="name"/> |
|||
<field name="controller_id"/> |
|||
<field name="processor_ids"/> |
|||
<separator/> |
|||
<filter |
|||
string="Archived" |
|||
name="inactive" |
|||
domain="[('active', '=', False)]" |
|||
/> |
|||
<separator/> |
|||
<group string="Group By" name="groupby"> |
|||
<filter |
|||
name="controller_id_groupby" |
|||
string="Controller" |
|||
context="{'group_by': 'controller_id'}" |
|||
/> |
|||
</group> |
|||
</search> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="activity_action" model="ir.actions.act_window"> |
|||
<field name="name">Activities</field> |
|||
<field name="res_model">privacy.activity</field> |
|||
<field name="view_mode">tree,form</field> |
|||
<field name="help" type="html"> |
|||
<p class="oe_view_nocontent_create"> |
|||
Click to add a data processing activity. |
|||
</p><p> |
|||
Data processing activities define why, how and what you do |
|||
with subjects' personal data. |
|||
</p> |
|||
</field> |
|||
</record> |
|||
|
|||
<menuitem |
|||
action="activity_action" |
|||
groups="group_data_protection_user" |
|||
id="menu_privacy_activity" |
|||
parent="menu_data_protection_master_data" |
|||
/> |
|||
|
|||
</data> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue