[MIG] account_mass_reconcile_transaction_ref: Migration to 10.0
parent
7ba1b756ee
commit
0824069007
|
@ -11,7 +11,7 @@ to use the 'transaction_ref' field defined in base_transaction_id.
|
||||||
|
|
||||||
.. 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,9 +1,9 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# © 2013-2016 Camptocamp SA
|
# © 2013-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 Transaction Ref',
|
'name': 'Mass Reconcile Transaction Ref',
|
||||||
'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',
|
||||||
|
@ -18,6 +18,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 -*-
|
||||||
# © 2013-2016 Camptocamp SA
|
# © 2013-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 base_advanced_reconciliation
|
from . import base_advanced_reconciliation
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# © 2013-2016 Camptocamp SA
|
# © 2013-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 MassReconcileAdvancedTransactionRef(models.TransientModel):
|
class MassReconcileAdvancedTransactionRef(models.TransientModel):
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# © 2013-2016 Camptocamp SA
|
# © 2013-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
|
||||||
|
|
||||||
|
|
||||||
class MassReconcileAdvanced(models.AbstractModel):
|
class MassReconcileAdvanced(models.AbstractModel):
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# © 2013-2016 Camptocamp SA
|
# © 2013-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