forked from OCA/account-financial-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] account_renumber: Migration to 10.0
- Loading branch information
1 parent
f818675
commit da8a923
Showing
7 changed files
with
14 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[email protected]> | ||
* David Vidal <[email protected]> | ||
|
||
Maintainer | ||
---------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
11 changes: 6 additions & 5 deletions
11
account_renumber/__openerp__.py → account_renumber/__manifest__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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__) | ||
|
||
|