Skip to content

Commit

Permalink
Merge pull request moneymanagerex#6955 from whalley/master
Browse files Browse the repository at this point in the history
fix(moneymanagerex#6954): split notes reporting for transaction detail
  • Loading branch information
whalley authored Nov 16, 2024
2 parents 1d2c5c3 + d53d2fb commit 64b2477
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions contrib.txt
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ Stephan Kasslatter
Panagiotis Theodosopoulos
Antonis Vithoulkas
Jean-Michel Louiset
Marino Lippi

### 2023
Renato
Expand Down
3 changes: 2 additions & 1 deletion src/filtertrans.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************
Copyright (C) 2021-2022 Mark Whalley ([email protected])
Copyright (C) 2021-2024 Mark Whalley ([email protected])
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
Expand Down Expand Up @@ -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);
}
}
Expand Down

0 comments on commit 64b2477

Please sign in to comment.