[MIG] account_mass_reconcile_ref_deep_search: Migration to 10.0

pull/277/head
Damien Crier 2018-04-06 15:16:55 +02:00 committed by Iryna Vushnevska
parent c9180e1b0f
commit f9c22bf280
5 changed files with 10 additions and 9 deletions

View File

@ -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
===========

View File

@ -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': []
}

View File

@ -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

View File

@ -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

View File

@ -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):