From 1e2abc6d7343f173b7f41cd0c01ff55c18aa727f Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Mon, 6 Mar 2023 22:58:45 +0100 Subject: [PATCH] [MIG] account_statement_import_ofx to v16 --- account_statement_import_ofx/__manifest__.py | 6 ++++-- .../views/account_statement_import.xml | 2 +- .../wizard/account_statement_import.py | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/account_statement_import_ofx/__manifest__.py b/account_statement_import_ofx/__manifest__.py index 5d34944f..77b622e8 100644 --- a/account_statement_import_ofx/__manifest__.py +++ b/account_statement_import_ofx/__manifest__.py @@ -1,7 +1,7 @@ { "name": "Import OFX Bank Statement", "category": "Banking addons", - "version": "14.0.1.0.0", + "version": "16.0.1.0.0", "license": "AGPL-3", "author": "Odoo SA," "Akretion," @@ -10,8 +10,10 @@ "Nicolas JEUDY," "Le Filament," "Odoo Community Association (OCA)", + "maintainers": ["alexis-via"], + "development_status": "Mature", "website": "https://github.com/OCA/bank-statement-import", - "depends": ["account_statement_import"], + "depends": ["account_statement_import_file"], "data": ["views/account_statement_import.xml"], "external_dependencies": {"python": ["ofxparse"]}, "installable": True, diff --git a/account_statement_import_ofx/views/account_statement_import.xml b/account_statement_import_ofx/views/account_statement_import.xml index e47d2cc9..6d8b68da 100644 --- a/account_statement_import_ofx/views/account_statement_import.xml +++ b/account_statement_import_ofx/views/account_statement_import.xml @@ -4,7 +4,7 @@ account.statement.import diff --git a/account_statement_import_ofx/wizard/account_statement_import.py b/account_statement_import_ofx/wizard/account_statement_import.py index 5275c098..d88c9085 100644 --- a/account_statement_import_ofx/wizard/account_statement_import.py +++ b/account_statement_import_ofx/wizard/account_statement_import.py @@ -84,5 +84,5 @@ class AccountStatementImport(models.TransientModel): "The file might not be valid.\n\n %s" ) % str(e) - ) + ) from e return result