added transaction ID to the returned query in get_transactions_for_period function

This commit is contained in:
Peter Wood
2025-09-23 15:39:15 -04:00
parent 9684cdbac4
commit 40392d0327

View File

@@ -29,7 +29,7 @@ return query
select select
bl.account_bank_name, bl.account_type, bl.account_number, bl.account_friendly_name 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_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 from public.runbal bl
where where
lower(bl.account_friendly_name) = trim(lower(p_account_name)) lower(bl.account_friendly_name) = trim(lower(p_account_name))