From f9c22bf280ce2943290ae0b9dcad238c8253e32f Mon Sep 17 00:00:00 2001 From: Damien Crier Date: Fri, 6 Apr 2018 15:16:55 +0200 Subject: [PATCH] [MIG] account_mass_reconcile_ref_deep_search: Migration to 10.0 --- account_mass_reconcile_ref_deep_search/README.rst | 2 +- account_mass_reconcile_ref_deep_search/__manifest__.py | 7 ++++--- account_mass_reconcile_ref_deep_search/models/__init__.py | 2 +- .../models/advanced_reconciliation.py | 4 ++-- .../models/mass_reconcile.py | 4 ++-- 5 files changed, 10 insertions(+), 9 deletions(-) diff --git a/account_mass_reconcile_ref_deep_search/README.rst b/account_mass_reconcile_ref_deep_search/README.rst index f89c953d..9dadd438 100644 --- a/account_mass_reconcile_ref_deep_search/README.rst +++ b/account_mass_reconcile_ref_deep_search/README.rst @@ -12,7 +12,7 @@ instead of an exact match. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/98/9.0 + :target: https://runbot.odoo-community.org/runbot/98/10.0 Bug Tracker =========== diff --git a/account_mass_reconcile_ref_deep_search/__manifest__.py b/account_mass_reconcile_ref_deep_search/__manifest__.py index 0b2d2503..4f4c4ab8 100644 --- a/account_mass_reconcile_ref_deep_search/__manifest__.py +++ b/account_mass_reconcile_ref_deep_search/__manifest__.py @@ -1,12 +1,13 @@ # -*- coding: utf-8 -*- -# © 2015-2016 Camptocamp SA +# © 2015-2018 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) { 'name': 'Mass Reconcile Ref Deep Search', - 'version': '9.0.1.0.0', + 'version': '10.0.1.0.0', 'author': "Camptocamp,Odoo Community Association (OCA)", 'category': 'Finance', 'website': 'http://www.camptocamp.com', + 'license': 'AGPL-3', 'depends': ['account_mass_reconcile'], 'data': [ 'views/mass_reconcile_view.xml' @@ -14,6 +15,6 @@ 'demo': [], 'test': [], 'auto_install': False, - 'installable': False, + 'installable': True, 'images': [] } diff --git a/account_mass_reconcile_ref_deep_search/models/__init__.py b/account_mass_reconcile_ref_deep_search/models/__init__.py index b07ffa54..743ba596 100644 --- a/account_mass_reconcile_ref_deep_search/models/__init__.py +++ b/account_mass_reconcile_ref_deep_search/models/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# © 2015-2016 Camptocamp SA +# © 2015-2018 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) from . import mass_reconcile from . import advanced_reconciliation diff --git a/account_mass_reconcile_ref_deep_search/models/advanced_reconciliation.py b/account_mass_reconcile_ref_deep_search/models/advanced_reconciliation.py index d47b795b..312b4ce4 100644 --- a/account_mass_reconcile_ref_deep_search/models/advanced_reconciliation.py +++ b/account_mass_reconcile_ref_deep_search/models/advanced_reconciliation.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# © 2015-2016 Camptocamp SA +# © 2015-2018 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) -from openerp import _, models +from odoo import _, models from itertools import product diff --git a/account_mass_reconcile_ref_deep_search/models/mass_reconcile.py b/account_mass_reconcile_ref_deep_search/models/mass_reconcile.py index 7402583d..f859ce10 100644 --- a/account_mass_reconcile_ref_deep_search/models/mass_reconcile.py +++ b/account_mass_reconcile_ref_deep_search/models/mass_reconcile.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -# © 2015-2016 Camptocamp SA +# © 2015-2018 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) -from openerp import api, models +from odoo import api, models class AccountMassReconcileMethod(models.Model):