mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
[MIG] account_renumber: Migration to 10.0
This commit is contained in:
committed by
Pedro M. Baeza
parent
f818675212
commit
da8a923b86
@@ -44,7 +44,7 @@ to a view of all the entries that have been renumbered.
|
||||
|
||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
||||
:alt: Try me on Runbot
|
||||
:target: https://runbot.odoo-community.org/runbot/92/8.0
|
||||
:target: https://runbot.odoo-community.org/runbot/92/10.0
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
@@ -64,6 +64,7 @@ Contributors
|
||||
* Jordi Llinares
|
||||
* Joaquín Gutiérrez <http://www.gutierrezweb.es>
|
||||
* Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
* David Vidal <david.vidal@tecnativa.com>
|
||||
|
||||
Maintainer
|
||||
----------
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# © 2009 Pexego Sistemas Informáticos. All Rights Reserved
|
||||
# © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import wizard
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# © 2009 Pexego Sistemas Informáticos. All Rights Reserved
|
||||
# © 2013 Pedro Manuel Baeza <pedro.baeza@tecnativa.com>
|
||||
# © 2013 Joaquin Gutierrez <http://www.gutierrezweb.es>
|
||||
# © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
# Copyright 2009 Pexego Sistemas Informáticos. All Rights Reserved
|
||||
# Copyright 2013 Pedro Manuel Baeza <pedro.baeza@tecnativa.com>
|
||||
# Copyright 2013 Joaquin Gutierrez <http://www.gutierrezweb.es>
|
||||
# Copyright 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
# Copyright 2017 David Vidal <david.vidal@tecnativa.com>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
{
|
||||
'name': "Account Renumber Wizard",
|
||||
'version': "9.0.1.0.0",
|
||||
'version': "10.0.1.0.0",
|
||||
'author': "Pexego,Tecnativa,Odoo Community Association (OCA)",
|
||||
'website': "http://www.pexego.es",
|
||||
'category': "Accounting & Finance",
|
||||
@@ -1,5 +1,3 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import test_account_renumber
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
# Copyright 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from datetime import date
|
||||
from openerp import exceptions, fields
|
||||
from openerp.tests.common import TransactionCase
|
||||
from odoo import exceptions, fields
|
||||
from odoo.tests.common import TransactionCase
|
||||
|
||||
|
||||
class AccountRenumberCase(TransactionCase):
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# © 2009 Pexego Sistemas Informáticos. All Rights Reserved
|
||||
# © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import wizard_renumber
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# © 2009 Pexego Sistemas Informáticos. All Rights Reserved
|
||||
# © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
# Copyright 2009 Pexego Sistemas Informáticos. All Rights Reserved
|
||||
# Copyright 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
import logging
|
||||
from datetime import date
|
||||
from openerp import _, api, exceptions, fields, models
|
||||
from odoo import _, api, exceptions, fields, models
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user