Skip to content

Commit

Permalink
[MIG] account_renumber: Migration to 10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chienandalu authored and pedrobaeza committed Aug 15, 2018
1 parent f818675 commit da8a923
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 19 deletions.
3 changes: 2 additions & 1 deletion account_renumber/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
===========
Expand All @@ -64,6 +64,7 @@ Contributors
* Jordi Llinares
* Joaquín Gutiérrez <http://www.gutierrezweb.es>
* Jairo Llopis <[email protected]>
* David Vidal <[email protected]>

Maintainer
----------
Expand Down
3 changes: 0 additions & 3 deletions account_renumber/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# -*- coding: utf-8 -*-
# © 2009 Pexego Sistemas Informáticos. All Rights Reserved
# © 2016 Jairo Llopis <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from . import wizard
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# -*- coding: utf-8 -*-
# © 2009 Pexego Sistemas Informáticos. All Rights Reserved
# © 2013 Pedro Manuel Baeza <[email protected]>
# © 2013 Joaquin Gutierrez <http://www.gutierrezweb.es>
# © 2016 Jairo Llopis <[email protected]>
# Copyright 2009 Pexego Sistemas Informáticos. All Rights Reserved
# Copyright 2013 Pedro Manuel Baeza <[email protected]>
# Copyright 2013 Joaquin Gutierrez <http://www.gutierrezweb.es>
# Copyright 2016 Jairo Llopis <[email protected]>
# Copyright 2017 David Vidal <[email protected]>
# 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",
Expand Down
2 changes: 0 additions & 2 deletions account_renumber/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
# © 2016 Jairo Llopis <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from . import test_account_renumber
6 changes: 3 additions & 3 deletions account_renumber/tests/test_account_renumber.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# -*- coding: utf-8 -*-
# © 2016 Jairo Llopis <[email protected]>
# Copyright 2016 Jairo Llopis <[email protected]>
# 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):
Expand Down
2 changes: 0 additions & 2 deletions account_renumber/wizard/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
# © 2009 Pexego Sistemas Informáticos. All Rights Reserved
# © 2016 Jairo Llopis <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from . import wizard_renumber
6 changes: 3 additions & 3 deletions account_renumber/wizard/wizard_renumber.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# -*- coding: utf-8 -*-
# © 2009 Pexego Sistemas Informáticos. All Rights Reserved
# © 2016 Jairo Llopis <[email protected]>
# Copyright 2009 Pexego Sistemas Informáticos. All Rights Reserved
# Copyright 2016 Jairo Llopis <[email protected]>
# 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__)

Expand Down

0 comments on commit da8a923

Please sign in to comment.