Skip to content

Commit

Permalink
Merge f694e8b into f74d94f
Browse files Browse the repository at this point in the history
  • Loading branch information
whalley committed Aug 29, 2022
2 parents f74d94f + f694e8b commit 9377dc1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/mmcheckingpanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,11 @@ void mmCheckingPanel::filterTable()
if (Model_Checking::status(tran.STATUS) != Model_Checking::VOID_)
m_filteredBalance += transaction_amount;

full_tran.UDFC01_val = -DBL_MAX;
full_tran.UDFC01_Type = Model_CustomField::FIELDTYPE::UNKNOWN;
full_tran.UDFC02_Type = Model_CustomField::FIELDTYPE::UNKNOWN;
full_tran.UDFC03_Type = Model_CustomField::FIELDTYPE::UNKNOWN;
full_tran.UDFC04_Type = Model_CustomField::FIELDTYPE::UNKNOWN;
full_tran.UDFC05_Type = Model_CustomField::FIELDTYPE::UNKNOWN;
full_tran.UDFC02_val = -DBL_MAX;
full_tran.UDFC03_val = -DBL_MAX;
full_tran.UDFC04_val = -DBL_MAX;
Expand All @@ -227,7 +231,7 @@ void mmCheckingPanel::filterTable()
else if (udfc.FIELDID == udfc04_ref_id) {
full_tran.UDFC04 = udfc.CONTENT;
full_tran.UDFC04_val = cleanseNumberStringToDouble(udfc.CONTENT, UDFC04_Scale);
full_tran.UDFC05_Type = UDFC04_Type;
full_tran.UDFC04_Type = UDFC04_Type;
}
else if (udfc.FIELDID == udfc05_ref_id) {
full_tran.UDFC05 = udfc.CONTENT;
Expand Down

0 comments on commit 9377dc1

Please sign in to comment.