From 5debaeba42781a7a31665c7d0c9c6654f4609cd6 Mon Sep 17 00:00:00 2001 From: Luc De Meyer Date: Fri, 6 Mar 2026 22:31:33 +0100 Subject: [PATCH] [MIG] account_ebics_batch_payment: Migration to 19.0 --- account_ebics_batch/README.rst | 8 ++++---- account_ebics_batch/__manifest__.py | 4 ++-- account_ebics_batch/models/ebics_batch_log.py | 2 +- account_ebics_batch/static/description/index.html | 2 +- account_ebics_batch_payment/README.rst | 4 ++-- account_ebics_batch_payment/__manifest__.py | 7 +++---- .../models/account_batch_payment.py | 4 ++-- account_ebics_batch_payment/static/description/index.html | 2 +- .../views/account_batch_payment_views.xml | 2 +- 9 files changed, 17 insertions(+), 18 deletions(-) diff --git a/account_ebics_batch/README.rst b/account_ebics_batch/README.rst index 80f2d09..e69fa5b 100644 --- a/account_ebics_batch/README.rst +++ b/account_ebics_batch/README.rst @@ -1,6 +1,6 @@ -.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png - :target: https://www.gnu.org/licenses/agpl - :alt: License: AGPL-3 +.. image:: https://img.shields.io/badge/license-LGPL--3-blue.png + :target: https://www.gnu.org/licenses/lgpl + :alt: License: LGPL-3 ============================================ Module to enable batch import of EBICS files @@ -17,7 +17,7 @@ When all EBICS Files have been imported correctly, the Batch Import Log state is | -The user can reprocess the imported EBICS files in status 'draft' via the Log object 'REPROCESS' button until all errors have been cleared. +The user can reprocess the imported EBICS files in status 'draft' via the Log object 'REPROCESS' button until all errors have been cleared. As an alternative, the user can force the Batch Import Log state to 'done' (e.g. when the errors have been circumvented via manual encoding or the reprocessing of a single EBICS file). diff --git a/account_ebics_batch/__manifest__.py b/account_ebics_batch/__manifest__.py index d4cd484..ced392c 100644 --- a/account_ebics_batch/__manifest__.py +++ b/account_ebics_batch/__manifest__.py @@ -1,10 +1,10 @@ # Copyright 2022 Noviat. -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl). { "name": "EBICS Files batch import", "version": "19.0.1.0.0", - "license": "AGPL-3", + "license": "LGPL-3", "author": "Noviat", "website": "https://www.noviat.com/", "category": "Accounting & Finance", diff --git a/account_ebics_batch/models/ebics_batch_log.py b/account_ebics_batch/models/ebics_batch_log.py index b90783a..dbb6931 100644 --- a/account_ebics_batch/models/ebics_batch_log.py +++ b/account_ebics_batch/models/ebics_batch_log.py @@ -1,5 +1,5 @@ # Copyright 2022 Noviat. -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl). from sys import exc_info from traceback import format_exception diff --git a/account_ebics_batch/static/description/index.html b/account_ebics_batch/static/description/index.html index c5ccb4c..b177667 100644 --- a/account_ebics_batch/static/description/index.html +++ b/account_ebics_batch/static/description/index.html @@ -362,7 +362,7 @@ ul.auto-toc {
-License: AGPL-3 +License: LGPL-3

Module to enable batch import of EBICS files

This module adds a cron job for the automated import of EBICS files.

diff --git a/account_ebics_batch_payment/README.rst b/account_ebics_batch_payment/README.rst index af159d4..ef93f75 100644 --- a/account_ebics_batch_payment/README.rst +++ b/account_ebics_batch_payment/README.rst @@ -1,6 +1,6 @@ -.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg +.. image:: https://img.shields.io/badge/license-LGPL--3-blue.png :target: https://www.gnu.org/licenses/lgpl - :alt: License: AGPL-3 + :alt: License: LGPL-3 ============================== Upload Batch Payment via EBICS diff --git a/account_ebics_batch_payment/__manifest__.py b/account_ebics_batch_payment/__manifest__.py index 0cd591b..d99f41f 100644 --- a/account_ebics_batch_payment/__manifest__.py +++ b/account_ebics_batch_payment/__manifest__.py @@ -1,15 +1,14 @@ -# Copyright 2009-2024 Noviat. -# License LGPL-3 or later (http://www.gnu.org/licenses/lgpl). +# Copyright 2020 Noviat. +# License LGPL-3 or later (https://www.gnu.org/licenses/lgpl). { "name": "Upload Batch Payment via EBICS", - "version": "18.0.1.0.0", + "version": "19.0.1.0.0", "license": "LGPL-3", "author": "Noviat", "website": "https://www.noviat.com/", "category": "Accounting & Finance", "depends": ["account_ebics", "account_batch_payment"], "data": ["views/account_batch_payment_views.xml"], - "installable": True, "images": ["static/description/cover.png"], } diff --git a/account_ebics_batch_payment/models/account_batch_payment.py b/account_ebics_batch_payment/models/account_batch_payment.py index fc98660..dfe271a 100644 --- a/account_ebics_batch_payment/models/account_batch_payment.py +++ b/account_ebics_batch_payment/models/account_batch_payment.py @@ -1,5 +1,5 @@ -# Copyright 2009-2024 Noviat. -# License LGPL-3 or later (http://www.gnu.org/licenses/lgpl). +# Copyright 2020 Noviat. +# License LGPL-3 or later (https://www.gnu.org/licenses/lgpl). from odoo import models from odoo.exceptions import UserError diff --git a/account_ebics_batch_payment/static/description/index.html b/account_ebics_batch_payment/static/description/index.html index c565c28..cc2bbd6 100644 --- a/account_ebics_batch_payment/static/description/index.html +++ b/account_ebics_batch_payment/static/description/index.html @@ -362,7 +362,7 @@ ul.auto-toc {
-License: AGPL-3 +License: LGPL-3

Upload Batch Payment via EBICS

This module allows to upload a Batch Payment to the bank via the EBICS protocol.

diff --git a/account_ebics_batch_payment/views/account_batch_payment_views.xml b/account_ebics_batch_payment/views/account_batch_payment_views.xml index 0f7c8f8..d1df84a 100644 --- a/account_ebics_batch_payment/views/account_batch_payment_views.xml +++ b/account_ebics_batch_payment/views/account_batch_payment_views.xml @@ -1,4 +1,4 @@ - + account.batch.payment.form