Skip to content

Commit

Permalink
[MIG] account_mass_reconcile_ref_deep_search: Migration to 10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
damdam-s authored and anothingguy committed Mar 4, 2022
1 parent f8ea41a commit d1e0e4e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion account_mass_reconcile_ref_deep_search/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
===========
Expand Down
7 changes: 4 additions & 3 deletions account_mass_reconcile_ref_deep_search/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
# -*- 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'
],
'demo': [],
'test': [],
'auto_install': False,
'installable': False,
'installable': True,
'images': []
}
2 changes: 1 addition & 1 deletion account_mass_reconcile_ref_deep_search/models/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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


Expand Down
Original file line number Diff line number Diff line change
@@ -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):
Expand Down

0 comments on commit d1e0e4e

Please sign in to comment.