Skip to content

Commit

Permalink
Merge pull request #70 from Ceviant/CEV-123
Browse files Browse the repository at this point in the history
CEV-123 fix filter for account Name in custom API Search
  • Loading branch information
olaolu-ceviant authored Nov 15, 2024
2 parents cb6cdea + ebcc514 commit 1476c6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1762,7 +1762,7 @@ public List<SavingsAccountTransactionData> fetchSavingsAccountTransactions(Long
List<Object> paramList = new ArrayList<>();
paramList.add(savingsId);
if (StringUtils.isNotBlank(accountNumber)) {
query.append(" AND pd.account_number = ? ");
query.append(" AND sa.account_no = ? ");
paramList.add(accountNumber);
}

Expand Down

0 comments on commit 1476c6f

Please sign in to comment.