Skip to content

Commit

Permalink
[MIG] account_payment_return_import_sepa_pain: Migration to 10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chienandalu authored and pedrobaeza committed Apr 5, 2018
1 parent a716ba0 commit b533401
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 18 deletions.
14 changes: 6 additions & 8 deletions account_payment_return_import_sepa_pain/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/OCA/account-payment/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 <https://github.com/OCA/
account-payment/issues/new?body=module:%20
account_payment_return_import_sepa_pain%0Aversion:%20
8.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Bugs are tracked on `GitHub Issues
<https://github.com/OCA/account-payment/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
=======
Expand All @@ -40,6 +37,7 @@ Contributors

* Carlos Dauden <pedro.baeza@tecnativa.com>
* Pedro M. Baeza <pedro.baeza@tecnativa.com>
* David Vidal <david.vidal@tecnativa.com>

Maintainer
----------
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# -*- coding: utf-8 -*-
# © 2016 Carlos Dauden <carlos.dauden@tecnativa.com>
# © 2016 Pedro M. Baeza <pedro.baeza@tecnativa.com>
# Copyright 2016 Carlos Dauden <carlos.dauden@tecnativa.com>
# Copyright 2016 Pedro M. Baeza <pedro.baeza@tecnativa.com>
# Copyright 2017 David Vidal <david.vidal@tecnativa.com>
# 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',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# © 2016 Carlos Dauden <carlos.dauden@tecnativa.com>
# 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):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# -*- coding: utf-8 -*-
# © 2016 Carlos Dauden <carlos.dauden@tecnativa.com>
# Copyright 2016 Carlos Dauden <carlos.dauden@tecnativa.com>
# 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)


Expand Down
4 changes: 2 additions & 2 deletions account_payment_return_import_sepa_pain/wizard/pain_parser.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# © 2016 Carlos Dauden <carlos.dauden@tecnativa.com>
# © 2016 Pedro M. Baeza <pedro.baeza@tecnativa.com>
# Copyright 2016 Carlos Dauden <carlos.dauden@tecnativa.com>
# Copyright 2016 Pedro M. Baeza <pedro.baeza@tecnativa.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

import re
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# -*- coding: utf-8 -*-
# © 2016 Carlos Dauden <carlos.dauden@tecnativa.com>
# Copyright 2016 Carlos Dauden <carlos.dauden@tecnativa.com>
# 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__)
Expand Down

0 comments on commit b533401

Please sign in to comment.