-
-
Notifications
You must be signed in to change notification settings - Fork 68
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
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 e2a3b88
Change menu item sequence
dreispt f284958
Update top menu name
bealdav 891b9ab
[IMP] privacy: Icon
pedrobaeza 0fa4a36
Port to 10.0
dreispt 3fa7cf3
Port to 11.0
dreispt 5906c12
[FIX] Readme and manifest
dreispt 06bcb88
[ADD] Data Protection Settings menu action
dreispt 0fb1d4e
[UPD] README.rst
OCA-git-bot 5de4865
[FIX] Admin should be data_protetion_manager by default
MiquelRForgeFlow f25a983
[UPD] Update privacy.pot
oca-travis eb26c29
[ADD] privacy_consent: Privacy explicit consent tracking tools (#11)
yajo 94edb86
Added translation using Weblate (Portuguese)
pedrocs-exo cd1ff40
[UPD] README.rst
OCA-git-bot 3c8670d
[UPD] Update privacy.pot
oca-travis f600843
Added translation using Weblate (French)
gurneyalex e6992ec
[MIG] privacy: Migration to 12.0
fb0398a
[UPD] README.rst
OCA-git-bot 53d51af
[UPD] Update privacy.pot
oca-travis 5ca78f5
Translated using Weblate (Spanish)
mvrodriguez 6fb77b4
Update translation files
oca-transbot 389a875
Added translation using Weblate (Italian)
primes2h b135282
Translated using Weblate (Italian)
primes2h cb50fc6
Added translation using Weblate (German)
dw3gn3r ed836a2
Translated using Weblate (Italian)
primes2h 6aa680d
[UPD] README.rst
OCA-git-bot ee835b4
Added translation using Weblate (Croatian)
badbole 64e82ab
Translated using Weblate (Croatian)
badbole 4178dc9
Add activity mixin to privacy.activity model
njeudy 081e090
[UPD] Update privacy.pot
oca-travis abb83d8
privacy 12.0.1.1.0
OCA-git-bot 07e59d1
Update translation files
oca-transbot f430b5d
[FIX] Travis.
mustuKantawala fc20432
[MIG][13.0] Privacy.
mustuKantawala File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -59,4 +57,4 @@ | |
groups="group_data_protection_manager" | ||
sequence="90" | ||
/> | ||
</data> | ||
</odoo> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unnecessary change. Undo please. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
@@ -133,4 +132,4 @@ | |
id="menu_privacy_activity" | ||
parent="menu_data_protection_master_data" | ||
/> | ||
</data> | ||
</odoo> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Undo also please. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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.