[MIG] account_renumber: Migration to 10.0

This commit is contained in:
David Vidal
2017-07-10 17:37:55 +02:00
committed by cubells
parent c2cfbfa51d
commit 01e04a11bf
7 changed files with 14 additions and 19 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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