From 6cbf8b9e4a1e4fa3a8f40a3d068acc2b2a9282c3 Mon Sep 17 00:00:00 2001 From: Luc De Meyer Date: Fri, 24 Oct 2025 17:30:43 +0200 Subject: [PATCH] [MIG] account_ebics_payment_order: Migration to 18.0 --- README.md | 2 +- account_ebics_payment_order/__manifest__.py | 4 ++-- account_ebics_payment_order/models/account_payment_mode.py | 2 +- account_ebics_payment_order/models/account_payment_order.py | 3 +-- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index aedb96e..8c1d1fb 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ addon | version | maintainers | summary [account_ebics_batch_payment](account_ebics_batch_payment/) | 18.0.1.0.0 | | Upload Batch Payment via EBICS [account_ebics_oca_statement_import](account_ebics_oca_statement_import/) | 18.0.1.0.0 | | Use OCA Bank Statement Import with account_ebics [account_ebics_oe](account_ebics_oe/) | 18.0.1.0.0 | | Deploy account_ebics module on Odoo Enterprise -[account_ebics_payment_order](account_ebics_payment_order/) | 17.0.1.1.0 | | Upload Payment Order via EBICS +[account_ebics_payment_order](account_ebics_payment_order/) | 18.0.1.1.0 | | Upload Payment Order via EBICS [//]: # (end addons) diff --git a/account_ebics_payment_order/__manifest__.py b/account_ebics_payment_order/__manifest__.py index 184bb7c..92980d2 100644 --- a/account_ebics_payment_order/__manifest__.py +++ b/account_ebics_payment_order/__manifest__.py @@ -1,9 +1,9 @@ # Copyright 2009-2024 Noviat. -# License LGPL-3 or later (http://www.gnu.org/licenses/lgpl). +# License LGPL-3 or later (https://www.gnu.org/licenses/lgpl). { "name": "Upload Payment Order via EBICS", - "version": "17.0.1.1.0", + "version": "18.0.1.1.0", "license": "LGPL-3", "author": "Noviat", "website": "https://www.noviat.com/", diff --git a/account_ebics_payment_order/models/account_payment_mode.py b/account_ebics_payment_order/models/account_payment_mode.py index 92a9fc4..9ab2dc6 100644 --- a/account_ebics_payment_order/models/account_payment_mode.py +++ b/account_ebics_payment_order/models/account_payment_mode.py @@ -1,5 +1,5 @@ # Copyright 2009-2024 Noviat. -# License LGPL-3 or later (http://www.gnu.org/licenses/lpgl). +# License LGPL-3 or later (https://www.gnu.org/licenses/lpgl). from odoo import fields, models diff --git a/account_ebics_payment_order/models/account_payment_order.py b/account_ebics_payment_order/models/account_payment_order.py index 14bfa7d..0859f08 100644 --- a/account_ebics_payment_order/models/account_payment_order.py +++ b/account_ebics_payment_order/models/account_payment_order.py @@ -1,5 +1,5 @@ # Copyright 2009-2024 Noviat. -# License LGPL-3 or later (http://www.gnu.org/licenses/lgpl). +# License LGPL-3 or later (https://www.gnu.org/licenses/lgpl). from odoo import _, models from odoo.exceptions import UserError @@ -76,7 +76,6 @@ class AccountPaymentOrder(models.Model): view = self.env.ref("account_ebics.ebics_xfer_view_form_upload") act = { "name": _("EBICS Upload"), - "view_type": "form", "view_mode": "form", "res_model": "ebics.xfer", "view_id": view.id,