diff --git a/account_payment_return_import_sepa_pain/README.rst b/account_payment_return_import_sepa_pain/README.rst index 82236e5d4e2..b8ee5d14048 100644 --- a/account_payment_return_import_sepa_pain/README.rst +++ b/account_payment_return_import_sepa_pain/README.rst @@ -19,18 +19,15 @@ Usage .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/96/8.0 + :target: https://runbot.odoo-community.org/runbot/96/10.0 Bug Tracker =========== -Bugs are tracked on `GitHub Issues `_. -In case of trouble, please check there if your issue has already been reported. -If you spotted it first, help us smashing it by providing a detailed and welcomed feedback -`here `_. +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smash it by providing detailed and welcomed feedback. Credits ======= @@ -40,6 +37,7 @@ Contributors * Carlos Dauden * Pedro M. Baeza +* David Vidal Maintainer ---------- diff --git a/account_payment_return_import_sepa_pain/__openerp__.py b/account_payment_return_import_sepa_pain/__manifest__.py similarity index 74% rename from account_payment_return_import_sepa_pain/__openerp__.py rename to account_payment_return_import_sepa_pain/__manifest__.py index c7efbb62b2c..1afa5e3f13c 100644 --- a/account_payment_return_import_sepa_pain/__openerp__.py +++ b/account_payment_return_import_sepa_pain/__manifest__.py @@ -1,12 +1,13 @@ # -*- coding: utf-8 -*- -# © 2016 Carlos Dauden -# © 2016 Pedro M. Baeza +# Copyright 2016 Carlos Dauden +# Copyright 2016 Pedro M. Baeza +# Copyright 2017 David Vidal # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': 'Account Payment Return Import SEPA Pain', 'category': 'Accounting', - 'version': '9.0.1.0.0', + 'version': '10.0.1.0.0', 'summary': 'Module to import SEPA Direct Debit Unpaid Report File Format ' 'PAIN.002.001.03', 'license': 'AGPL-3', diff --git a/account_payment_return_import_sepa_pain/models/payment_return.py b/account_payment_return_import_sepa_pain/models/payment_return.py index 63bcec93e7b..03bb9ac6df9 100644 --- a/account_payment_return_import_sepa_pain/models/payment_return.py +++ b/account_payment_return_import_sepa_pain/models/payment_return.py @@ -2,7 +2,7 @@ # © 2016 Carlos Dauden # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from openerp import api, models +from odoo import api, models class PaymentReturnLine(models.Model): diff --git a/account_payment_return_import_sepa_pain/tests/test_import_sepa_pain.py b/account_payment_return_import_sepa_pain/tests/test_import_sepa_pain.py index f330ca7f474..ad5c4aeee97 100644 --- a/account_payment_return_import_sepa_pain/tests/test_import_sepa_pain.py +++ b/account_payment_return_import_sepa_pain/tests/test_import_sepa_pain.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -# © 2016 Carlos Dauden +# Copyright 2016 Carlos Dauden # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from openerp.addons.account_payment_return_import.tests import ( +from odoo.addons.account_payment_return_import.tests import ( TestPaymentReturnFile) diff --git a/account_payment_return_import_sepa_pain/wizard/pain_parser.py b/account_payment_return_import_sepa_pain/wizard/pain_parser.py index aedb59d4427..b1c8a0f1293 100644 --- a/account_payment_return_import_sepa_pain/wizard/pain_parser.py +++ b/account_payment_return_import_sepa_pain/wizard/pain_parser.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# © 2016 Carlos Dauden -# © 2016 Pedro M. Baeza +# Copyright 2016 Carlos Dauden +# Copyright 2016 Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). import re diff --git a/account_payment_return_import_sepa_pain/wizard/payment_return_import.py b/account_payment_return_import_sepa_pain/wizard/payment_return_import.py index 697330252e6..eec86cbe75b 100644 --- a/account_payment_return_import_sepa_pain/wizard/payment_return_import.py +++ b/account_payment_return_import_sepa_pain/wizard/payment_return_import.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -# © 2016 Carlos Dauden +# Copyright 2016 Carlos Dauden # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). import logging -from openerp import api, models +from odoo import api, models from .pain_parser import PainParser _logger = logging.getLogger(__name__)