mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
[13.0][FIX] account_bank_statement_import_txt_xlsx
This commit is contained in:
committed by
Héctor Villarreal Ortega
parent
0cf284decc
commit
5deba59858
@@ -350,9 +350,11 @@ class AccountBankStatementImportSheetParser(models.TransientModel):
|
||||
if transaction_id:
|
||||
note += _("Transaction ID: %s; ") % (transaction_id,)
|
||||
if note and notes:
|
||||
note = "{}\n{}".format(note, note.strip())
|
||||
note = "{}\n{}".format(notes, note.strip())
|
||||
elif note:
|
||||
note = note.strip()
|
||||
elif notes:
|
||||
note = notes
|
||||
if note:
|
||||
transaction["note"] = note
|
||||
|
||||
|
||||
Reference in New Issue
Block a user