Browse Source
[MIG] partner_deduplicate_filter: Migration to 13.0
[MIG] partner_deduplicate_filter: Migration to 13.0
Co-authored-by: João Marques <joao.marques@tecnativa.com> [UPD] Update partner_deduplicate_filter.pot [UPD] README.rst14.0
Kevin Khao
5 years ago
committed by
Víctor Martínez
18 changed files with 66 additions and 70 deletions
-
27partner_deduplicate_filter/README.rst
-
2partner_deduplicate_filter/__init__.py
-
10partner_deduplicate_filter/__manifest__.py
-
3partner_deduplicate_filter/i18n/de.po
-
3partner_deduplicate_filter/i18n/es.po
-
3partner_deduplicate_filter/i18n/hr.po
-
3partner_deduplicate_filter/i18n/nl_NL.po
-
7partner_deduplicate_filter/i18n/partner_deduplicate_filter.pot
-
3partner_deduplicate_filter/i18n/sk.po
-
3partner_deduplicate_filter/i18n/tr.po
-
13partner_deduplicate_filter/readme/CONTRIBUTORS.rst
-
4partner_deduplicate_filter/readme/USAGE.rst
-
21partner_deduplicate_filter/static/description/index.html
-
2partner_deduplicate_filter/tests/__init__.py
-
4partner_deduplicate_filter/tests/test_partner_deduplicate_filter.py
-
2partner_deduplicate_filter/wizards/__init__.py
-
5partner_deduplicate_filter/wizards/partner_merge.py
-
21partner_deduplicate_filter/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,4 +1,9 @@ |
|||
* Pedro M. Baeza <pedro.baeza@tecnativa.com> |
|||
* Vicent Cubells <vicent.cubells@tecnativa.com> |
|||
* Luis M. Ontalba <luis.martinez@tecnativa.com> |
|||
* Victor M.M. Torres <victor.martin@tecnativa.com> |
|||
|
|||
* `Tecnativa <https://www.tecnativa.com>`_: |
|||
* Pedro M. Baeza |
|||
* Vicent Cubells |
|||
* Luis M. Ontalba |
|||
* Victor M.M. Torres |
|||
* João Marques |
|||
|
|||
* Kevin Khao <kevin.khao@gmail.com> |
@ -1,6 +1,8 @@ |
|||
To use this module, you need to: |
|||
|
|||
#. Go to *CRM/Sales > Tools > Deduplicate Contacts*. |
|||
#. Follow the instructions in the partner_deduplicate_acl addon to set up the |
|||
correct user permissions. |
|||
#. Go to *Contacts > Tools > Deduplicate Contacts*. |
|||
#. Mark "'Is a company?' field selected", "Parent company not set" or |
|||
"Parent company set (Contacts)" in the section 'Exclude contacts having'. |
|||
#. This criteria will be used for excluding in the deduplication the selected |
|||
|
@ -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 test_partner_deduplicate_filter |
@ -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 |
@ -1,21 +1,18 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<!-- Copyright 2016 Pedro M. Baeza <pedro.baeza@tecnativa.com> |
|||
Copyright 2017 Vicent Cubells <vicent.cubells@tecnativa.com> |
|||
Copyright 2019 Victor M.M Torres <victor.martin@tecnativa.com> |
|||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). --> |
|||
|
|||
<?xml version="1.0" encoding="utf-8" ?> |
|||
<!-- Copyright 2016 Tecnativa - Pedro M. Baeza |
|||
Copyright 2017 Tecnativa - Vicent Cubells |
|||
Copyright 2019 Tecnativa - Victor M.M Torres |
|||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). --> |
|||
<odoo> |
|||
|
|||
<record id="base_partner_merge_automatic_wizard_form" model="ir.ui.view"> |
|||
<field name="model">base.partner.merge.automatic.wizard</field> |
|||
<field name="inherit_id" ref="base.base_partner_merge_automatic_wizard_form"/> |
|||
<field name="inherit_id" ref="base.base_partner_merge_automatic_wizard_form" /> |
|||
<field name="arch" type="xml"> |
|||
<field name='exclude_contact' position="before"> |
|||
<field name="exclude_is_company"/> |
|||
<field name="exclude_not_parent"/> |
|||
<field name="exclude_parent"/> |
|||
<field name="exclude_is_company" /> |
|||
<field name="exclude_not_parent" /> |
|||
<field name="exclude_parent" /> |
|||
</field> |
|||
</field> |
|||
</record> |
|||
|
|||
</odoo> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue