From 40392d0327440ae191348193fd9dff33a72ba663 Mon Sep 17 00:00:00 2001 From: Peter Wood Date: Tue, 23 Sep 2025 15:39:15 -0400 Subject: [PATCH] added transaction ID to the returned query in get_transactions_for_period function --- postgres/functions/get_aggregated_account_transactions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))