[MIG] account_mass_reconcile_ref_deep_search: Migration to 10.0
parent
c9180e1b0f
commit
f9c22bf280
|
@ -12,7 +12,7 @@ instead of an exact match.
|
||||||
|
|
||||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
||||||
:alt: Try me on Runbot
|
: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
|
Bug Tracker
|
||||||
===========
|
===========
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# © 2015-2016 Camptocamp SA
|
# © 2015-2018 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||||
{
|
{
|
||||||
'name': 'Mass Reconcile Ref Deep Search',
|
'name': 'Mass Reconcile Ref Deep Search',
|
||||||
'version': '9.0.1.0.0',
|
'version': '10.0.1.0.0',
|
||||||
'author': "Camptocamp,Odoo Community Association (OCA)",
|
'author': "Camptocamp,Odoo Community Association (OCA)",
|
||||||
'category': 'Finance',
|
'category': 'Finance',
|
||||||
'website': 'http://www.camptocamp.com',
|
'website': 'http://www.camptocamp.com',
|
||||||
|
'license': 'AGPL-3',
|
||||||
'depends': ['account_mass_reconcile'],
|
'depends': ['account_mass_reconcile'],
|
||||||
'data': [
|
'data': [
|
||||||
'views/mass_reconcile_view.xml'
|
'views/mass_reconcile_view.xml'
|
||||||
|
@ -14,6 +15,6 @@
|
||||||
'demo': [],
|
'demo': [],
|
||||||
'test': [],
|
'test': [],
|
||||||
'auto_install': False,
|
'auto_install': False,
|
||||||
'installable': False,
|
'installable': True,
|
||||||
'images': []
|
'images': []
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# © 2015-2016 Camptocamp SA
|
# © 2015-2018 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
||||||
from . import mass_reconcile
|
from . import mass_reconcile
|
||||||
from . import advanced_reconciliation
|
from . import advanced_reconciliation
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# © 2015-2016 Camptocamp SA
|
# © 2015-2018 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
# 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
|
from itertools import product
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# © 2015-2016 Camptocamp SA
|
# © 2015-2018 Camptocamp SA
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
# 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):
|
class AccountMassReconcileMethod(models.Model):
|
||||||
|
|
Loading…
Reference in New Issue