Kevin Khao
5 years ago
committed by
Carlos Roca
12 changed files with 73 additions and 62 deletions
-
11partner_deduplicate_acl/README.rst
-
2partner_deduplicate_acl/__init__.py
-
4partner_deduplicate_acl/__manifest__.py
-
5partner_deduplicate_acl/i18n/partner_deduplicate_acl.pot
-
1partner_deduplicate_acl/readme/CONTRIBUTORS.rst
-
8partner_deduplicate_acl/security/partner_deduplicate_acl_security.xml
-
7partner_deduplicate_acl/static/description/index.html
-
4partner_deduplicate_acl/tests/test_partner_deduplicate_acl.py
-
13partner_deduplicate_acl/views/base_partner_merge_view.xml
-
2partner_deduplicate_acl/wizards/__init__.py
-
2partner_deduplicate_acl/wizards/partner_merge.py
-
28partner_deduplicate_acl/wizards/partner_merge_view.xml
@ -1,3 +1,3 @@ |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from . import wizards |
@ -1,35 +1,29 @@ |
|||
<?xml version="1.0" encoding="utf-8" ?> |
|||
<!-- © 2016 Tecnativa S.L. - Jairo Llopis |
|||
© 2016 Tecnativa S.L. - Vicent Cubells |
|||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). --> |
|||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). --> |
|||
<odoo> |
|||
|
|||
<!-- New user group category --> |
|||
<record id="category" model="ir.module.category"> |
|||
<field name="name">Deduplicate Contacts</field> |
|||
</record> |
|||
|
|||
<!-- New user groups --> |
|||
<record id="group_manually" model="res.groups"> |
|||
<field name="name">Manually</field> |
|||
<field name="category_id" ref="category" /> |
|||
</record> |
|||
|
|||
<record id="group_automatically" model="res.groups"> |
|||
<field name="name">Automatically</field> |
|||
<field name="category_id" ref="category" /> |
|||
<field name="implied_ids" eval="[(4, ref('group_manually'))]" /> |
|||
</record> |
|||
|
|||
<record id="group_unrestricted" model="res.groups"> |
|||
<field name="name">Without restrictions</field> |
|||
<field name="category_id" ref="category" /> |
|||
<field name="implied_ids" eval="[(4, ref('group_automatically'))]" /> |
|||
</record> |
|||
|
|||
<!-- Respect previous behavior --> |
|||
<record id="base.group_system" model="res.groups"> |
|||
<field name="implied_ids" eval="[(4, ref('group_unrestricted'))]" /> |
|||
</record> |
|||
|
|||
</odoo> |
@ -1,3 +1,3 @@ |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). |
|||
|
|||
from . import partner_merge |
Write
Preview
Loading…
Cancel
Save
Reference in new issue