Browse Source

[MIG] crm_deduplicate_filter: Migration to 11.0

pull/726/head
Ernesto Tejeda 6 years ago
committed by Victor Martin
parent
commit
bcccf958c5
  1. 2
      partner_deduplicate_filter/README.rst
  2. 1
      partner_deduplicate_filter/__init__.py
  3. 3
      partner_deduplicate_filter/__manifest__.py
  4. 1
      partner_deduplicate_filter/tests/__init__.py
  5. 1
      partner_deduplicate_filter/tests/test_crm_deduplicate_filter.py
  6. 1
      partner_deduplicate_filter/wizards/__init__.py
  7. 1
      partner_deduplicate_filter/wizards/partner_merge.py

2
partner_deduplicate_filter/README.rst

@ -25,7 +25,7 @@ To use this module, you need to:
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/111/10.0
:target: https://runbot.odoo-community.org/runbot/111/11.0
Bug Tracker
===========

1
partner_deduplicate_filter/__init__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from . import wizards

3
partner_deduplicate_filter/__manifest__.py

@ -1,11 +1,10 @@
# -*- coding: utf-8 -*-
# Copyright 2016 Pedro M. Baeza <pedro.baeza@tecnativa.com>
# Copyright 2017 Vicent Cubells <vicent.cubells@tecnativa.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Exclude records from the deduplication",
"version": "10.0.1.0.0",
"version": "11.0.1.0.0",
"category": "Tools",
"website": "https://www.tecnativa.com",
"author": "Tecnativa, "

1
partner_deduplicate_filter/tests/__init__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from . import test_crm_deduplicate_filter

1
partner_deduplicate_filter/tests/test_crm_deduplicate_filter.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2016 Pedro M. Baeza <pedro.baeza@tecnativa.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

1
partner_deduplicate_filter/wizards/__init__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from . import partner_merge

1
partner_deduplicate_filter/wizards/partner_merge.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2016 Pedro M. Baeza <pedro.baeza@tecnativa.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

Loading…
Cancel
Save