diff --git a/postgres/functions/get_aggregated_account_transactions b/postgres/functions/get_aggregated_account_transactions index f41700c..06d1a03 100644 --- a/postgres/functions/get_aggregated_account_transactions +++ b/postgres/functions/get_aggregated_account_transactions @@ -29,7 +29,7 @@ return query select bl.account_bank_name, bl.account_type, bl.account_number, bl.account_friendly_name , bl.transaction_date, bl.transaction_description, bl.transaction_amount - , bl.transaction_day_of_week, bl.running_bal + , bl.transaction_day_of_week, bl.running_bal, bl.trx_id from public.runbal bl where lower(bl.account_friendly_name) = trim(lower(p_account_name))