Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[13.0][MIG] privacy #43

Closed
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
8f095a4
Structure the privacy_base app module
dreispt Jun 5, 2018
e2a3b88
Change menu item sequence
dreispt Jun 8, 2018
f284958
Update top menu name
bealdav Jun 8, 2018
891b9ab
[IMP] privacy: Icon
pedrobaeza Jun 12, 2018
0fa4a36
Port to 10.0
dreispt Jun 8, 2018
3fa7cf3
Port to 11.0
dreispt Jun 8, 2018
5906c12
[FIX] Readme and manifest
dreispt Oct 17, 2018
06bcb88
[ADD] Data Protection Settings menu action
dreispt Oct 17, 2018
0fb1d4e
[UPD] README.rst
OCA-git-bot Nov 14, 2018
5de4865
[FIX] Admin should be data_protetion_manager by default
MiquelRForgeFlow Jun 21, 2018
f25a983
[UPD] Update privacy.pot
oca-travis Nov 14, 2018
eb26c29
[ADD] privacy_consent: Privacy explicit consent tracking tools (#11)
yajo Aug 8, 2018
94edb86
Added translation using Weblate (Portuguese)
pedrocs-exo Sep 20, 2018
cd1ff40
[UPD] README.rst
OCA-git-bot Nov 16, 2018
3c8670d
[UPD] Update privacy.pot
oca-travis Nov 16, 2018
f600843
Added translation using Weblate (French)
gurneyalex Dec 11, 2018
e6992ec
[MIG] privacy: Migration to 12.0
Jan 26, 2019
fb0398a
[UPD] README.rst
OCA-git-bot Feb 10, 2019
53d51af
[UPD] Update privacy.pot
oca-travis Feb 10, 2019
5ca78f5
Translated using Weblate (Spanish)
mvrodriguez Mar 1, 2019
6fb77b4
Update translation files
oca-transbot Mar 3, 2019
389a875
Added translation using Weblate (Italian)
primes2h Mar 20, 2019
b135282
Translated using Weblate (Italian)
primes2h Mar 20, 2019
cb50fc6
Added translation using Weblate (German)
dw3gn3r Apr 10, 2019
ed836a2
Translated using Weblate (Italian)
primes2h Jun 6, 2019
6aa680d
[UPD] README.rst
OCA-git-bot Jul 29, 2019
ee835b4
Added translation using Weblate (Croatian)
badbole Nov 14, 2019
64e82ab
Translated using Weblate (Croatian)
badbole Nov 14, 2019
4178dc9
Add activity mixin to privacy.activity model
njeudy Dec 2, 2019
081e090
[UPD] Update privacy.pot
oca-travis Dec 3, 2019
abb83d8
privacy 12.0.1.1.0
OCA-git-bot Dec 3, 2019
07e59d1
Update translation files
oca-transbot Dec 3, 2019
f430b5d
[FIX] Travis.
mustuKantawala Sep 4, 2020
fc20432
[MIG][13.0] Privacy.
mustuKantawala Sep 4, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions privacy/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ Contributors
* Miquel Raïch <miquel.raich@eficent.com>
* Daniel Reis <dreis.pt@hotmail.com>
* Nicolas JEUDY <https://github.com/njeudy>
* TechUltra Solutions Pvt. Ltd. <contact@techultra.in>

Maintainers
~~~~~~~~~~~
Expand Down
5 changes: 2 additions & 3 deletions privacy/demo/res_users.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<?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>
<odoo>
<record id="base.user_demo" model="res.users">
<field name="groups_id" eval="[(4, ref('group_data_protection_user'))]" />
</record>
</data>
</odoo>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need to add this change, it was like that on purpose.

1 change: 1 addition & 0 deletions privacy/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
* Miquel Raïch <miquel.raich@eficent.com>
* Daniel Reis <dreis.pt@hotmail.com>
* Nicolas JEUDY <https://github.com/njeudy>
* TechUltra Solutions Pvt. Ltd. <contact@techultra.in>
48 changes: 21 additions & 27 deletions privacy/security/data_protection.xml
Original file line number Diff line number Diff line change
@@ -1,31 +1,25 @@
<?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">
yajo marked this conversation as resolved.
Show resolved Hide resolved
<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>
<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>
</odoo>
1 change: 1 addition & 0 deletions privacy/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,7 @@ <h2><a class="toc-backref" href="#id5">Contributors</a></h2>
<li>Miquel Raïch &lt;<a class="reference external" href="mailto:miquel.raich&#64;eficent.com">miquel.raich&#64;eficent.com</a>&gt;</li>
<li>Daniel Reis &lt;<a class="reference external" href="mailto:dreis.pt&#64;hotmail.com">dreis.pt&#64;hotmail.com</a>&gt;</li>
<li>Nicolas JEUDY &lt;<a class="reference external" href="https://github.com/njeudy">https://github.com/njeudy</a>&gt;</li>
<li>TechUltra Solutions Pvt. Ltd. &lt;<a class="reference external" href="mailto:contact&#64;techultra.in">contact&#64;techultra.in</a>&gt;</li>
</ul>
</div>
<div class="section" id="maintainers">
Expand Down
6 changes: 2 additions & 4 deletions privacy/views/data_protection_menu_view.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
<?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>
<odoo>
<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
Expand Down Expand Up @@ -59,4 +57,4 @@
groups="group_data_protection_manager"
sequence="90"
/>
</data>
</odoo>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unnecessary change. Undo please.

5 changes: 2 additions & 3 deletions privacy/views/privacy_activity_view.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?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>
<odoo>
<record model="ir.ui.view" id="activity_form">
<field name="name">Privacy Activity Form</field>
<field name="model">privacy.activity</field>
Expand Down Expand Up @@ -133,4 +132,4 @@
id="menu_privacy_activity"
parent="menu_data_protection_master_data"
/>
</data>
</odoo>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Undo also please.