diff --git a/contrib.txt b/contrib.txt index bff280a7b0..5ce5c404b0 100644 --- a/contrib.txt +++ b/contrib.txt @@ -248,6 +248,7 @@ Stephan Kasslatter Panagiotis Theodosopoulos Antonis Vithoulkas Jean-Michel Louiset +Marino Lippi ### 2023 Renato diff --git a/src/filtertrans.cpp b/src/filtertrans.cpp index 9a75f6fe83..caea2de4a1 100644 --- a/src/filtertrans.cpp +++ b/src/filtertrans.cpp @@ -1,5 +1,5 @@ /******************************************************* -Copyright (C) 2021-2022 Mark Whalley (mark@ipx.co.uk) +Copyright (C) 2021-2024 Mark Whalley (mark@ipx.co.uk) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -155,6 +155,7 @@ wxString mmFilterTransactions::getHTML() { full_tran.CATEGNAME = Model_Category::full_name(split.CATEGID); full_tran.TRANSAMOUNT = split.SPLITTRANSAMOUNT; + full_tran.NOTES.Append((tran.NOTES.IsEmpty() ? "" : " ") + split.NOTES); _trans.push_back(full_tran); } }