mirror of
https://github.com/acedanger/budget-database.git
synced 2025-12-05 22:50:13 -08:00
added transaction ID to the returned query in get_transactions_for_period function
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user