From 3f32d8a28597cd5dbda026d6bc501cf37afd6ce2 Mon Sep 17 00:00:00 2001 From: Luc De Meyer Date: Sun, 17 Sep 2023 15:57:52 +0200 Subject: [PATCH] [16.0]account_statement_import - fix super() --- account_ebics_oca_statement_import/__manifest__.py | 2 +- .../wizards/account_statement_import.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/account_ebics_oca_statement_import/__manifest__.py b/account_ebics_oca_statement_import/__manifest__.py index afbca14..321f257 100644 --- a/account_ebics_oca_statement_import/__manifest__.py +++ b/account_ebics_oca_statement_import/__manifest__.py @@ -4,7 +4,7 @@ { "name": "account_ebics with OCA Bank Statement Imoort", "summary": "Use OCA Bank Statement Import with account_ebics", - "version": "16.0.1.0.1", + "version": "16.0.1.0.2", "author": "Noviat", "website": "https://www.noviat.com/", "category": "Hidden", diff --git a/account_ebics_oca_statement_import/wizards/account_statement_import.py b/account_ebics_oca_statement_import/wizards/account_statement_import.py index 819cd02..dc33a96 100644 --- a/account_ebics_oca_statement_import/wizards/account_statement_import.py +++ b/account_ebics_oca_statement_import/wizards/account_statement_import.py @@ -46,7 +46,9 @@ class AccountStatementImport(models.TransientModel): We could also create empty bank statement (in state done) to clearly show days without transactions via the bank statement list view. """ - if self.env.context.get("active_model") == "ebics.file": + if self.env.context.get("active_model") != "ebics.file": + return super()._create_bank_statements(stmts_vals, result) + else: messages = [] transactions = False for st_vals in stmts_vals: