[15.0]account_ebics_oe_statement_import - fix handling of notifications

This commit is contained in:
Luc De Meyer
2023-10-08 22:19:22 +02:00
parent fb1f214d88
commit cc3f1a48b7
4 changed files with 19 additions and 10 deletions

View File

@@ -1,10 +1,10 @@
# Copyright 2020-2022 Noviat.
# Copyright 2020-2023 Noviat.
# License LGPL-3 or later (http://www.gnu.org/licenses/lpgl).
{
"name": "account_ebics with Odoo Enterprise Bank Statement Import",
"summary": "Use Odoo Enterprise Bank Statement Import with account_ebics",
"version": "15.0.1.0.0",
"version": "15.0.1.0.1",
"author": "Noviat",
"website": "https://www.noviat.com/",
"category": "Hidden",

View File

@@ -1,4 +1,4 @@
# Copyright 2009-2020 Noviat.
# Copyright 2009-2023 Noviat.
# License LGPL-3 or later (http://www.gnu.org/licenses/lpgl).
import logging
@@ -53,8 +53,13 @@ class AccountBankStatementImport(models.TransientModel):
break
if not transactions:
message = _("This file doesn't contain any transaction.")
st_ids = []
st_line_ids = []
notifications = {"type": "warning", "message": message, "details": ""}
return st_line_ids, [notifications]
notifications = {
"type": "warning",
"message": message,
"details": {"name": "", "model": "", "ids": []},
}
return st_ids, st_line_ids, [notifications]
return super()._create_bank_statements(stmts_vals)