diff --git a/account_payment_return_import_sepa_pain/README.rst b/account_payment_return_import_sepa_pain/README.rst index b8ee5d14048..e01e765a579 100644 --- a/account_payment_return_import_sepa_pain/README.rst +++ b/account_payment_return_import_sepa_pain/README.rst @@ -1,5 +1,5 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: https://www.gnu.org/licenses/agpl :alt: License: AGPL-3 ======================================= @@ -11,15 +11,15 @@ Module to import SEPA Direct Debit Unpaid Report File Format PAIN.002.001.03. Installation ============ -This module depends on *account_banking_payment_export* module from -OCA/bank-payment repository. +This module depends on *account_payment_order* module from OCA/bank-payment +repository. 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/10.0 + :target: https://runbot.odoo-community.org/runbot/96/11.0 Bug Tracker =========== @@ -38,6 +38,7 @@ Contributors * Carlos Dauden * Pedro M. Baeza * David Vidal +* Luis M. Ontalba Maintainer ---------- diff --git a/account_payment_return_import_sepa_pain/__init__.py b/account_payment_return_import_sepa_pain/__init__.py index 35e7c9600c5..0217b0f920b 100644 --- a/account_payment_return_import_sepa_pain/__init__.py +++ b/account_payment_return_import_sepa_pain/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- from . import models from . import wizard diff --git a/account_payment_return_import_sepa_pain/__manifest__.py b/account_payment_return_import_sepa_pain/__manifest__.py index 1afa5e3f13c..a82c38c57e6 100644 --- a/account_payment_return_import_sepa_pain/__manifest__.py +++ b/account_payment_return_import_sepa_pain/__manifest__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Carlos Dauden # Copyright 2016 Pedro M. Baeza # Copyright 2017 David Vidal @@ -7,7 +6,7 @@ { 'name': 'Account Payment Return Import SEPA Pain', 'category': 'Accounting', - 'version': '10.0.1.0.0', + 'version': '11.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/__init__.py b/account_payment_return_import_sepa_pain/models/__init__.py index da1e595a65a..cfc3b7e3885 100644 --- a/account_payment_return_import_sepa_pain/models/__init__.py +++ b/account_payment_return_import_sepa_pain/models/__init__.py @@ -1,3 +1,2 @@ -# -*- coding: utf-8 -*- from . import payment_return 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 03bb9ac6df9..73a82071d32 100644 --- a/account_payment_return_import_sepa_pain/models/payment_return.py +++ b/account_payment_return_import_sepa_pain/models/payment_return.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 2016 Carlos Dauden # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/account_payment_return_import_sepa_pain/tests/__init__.py b/account_payment_return_import_sepa_pain/tests/__init__.py index c4bd269b911..bd5863a2cc6 100644 --- a/account_payment_return_import_sepa_pain/tests/__init__.py +++ b/account_payment_return_import_sepa_pain/tests/__init__.py @@ -1,3 +1,2 @@ -# -*- encoding: utf-8 -*- from . import test_import_sepa_pain 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 ad5c4aeee97..6824cd52b12 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,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Carlos Dauden # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/account_payment_return_import_sepa_pain/wizard/__init__.py b/account_payment_return_import_sepa_pain/wizard/__init__.py index 18f42c52507..913ecef5b2d 100644 --- a/account_payment_return_import_sepa_pain/wizard/__init__.py +++ b/account_payment_return_import_sepa_pain/wizard/__init__.py @@ -1,3 +1,2 @@ -# -*- coding: utf-8 -*- from . import payment_return_import 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 b1c8a0f1293..60dabd3e133 100644 --- a/account_payment_return_import_sepa_pain/wizard/pain_parser.py +++ b/account_payment_return_import_sepa_pain/wizard/pain_parser.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Carlos Dauden # Copyright 2016 Pedro M. Baeza # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 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 eec86cbe75b..e81458a5a9d 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,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Carlos Dauden # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/oca_dependencies.txt b/oca_dependencies.txt index 6da85e02a02..220a89e86b9 100644 --- a/oca_dependencies.txt +++ b/oca_dependencies.txt @@ -1 +1,2 @@ +bank-payment reporting-engine