Add budgetID param

This commit is contained in:
2022-04-22 18:33:32 +00:00
committed by Gitea
parent 43a4647d74
commit 07c0c56d11
2 changed files with 5 additions and 3 deletions

View File

@ -60,4 +60,5 @@ LEFT JOIn accounts AS otherGroupAccount
ON otherGroupTransaction.account_id = accounts.id
WHERE transactions.category_id IS NULL
AND accounts.on_budget
AND (otherGroupAccount.id IS NULL OR NOT otherGroupAccount.on_budget);
AND (otherGroupAccount.id IS NULL OR NOT otherGroupAccount.on_budget)
AND accounts.budget_id = $1;