mirror of https://github.com/itflow-org/itflow
Fix last commit opps on balance sheet report. use not equal to 0 instead of equal 0 as it will just sum up all the transfers
This commit is contained in:
parent
25751bdd85
commit
964ff6740c
|
|
@ -12,8 +12,8 @@
|
|||
a.account_notes,
|
||||
a.account_type,
|
||||
COALESCE(SUM(p.payment_amount), 0) AS total_payments,
|
||||
COALESCE(SUM(CASE WHEN r.revenue_category_id = 0 THEN r.revenue_amount ELSE 0 END), 0) AS total_revenues
|
||||
COALESCE(SUM(CASE WHEN e.expense_vendor_id = 0 THEN e.expense_amount ELSE 0 END), 0) AS total_expenses
|
||||
COALESCE(SUM(CASE WHEN e.expense_vendor_id <> 0 THEN e.expense_amount ELSE 0 END), 0) AS total_expenses,
|
||||
COALESCE(SUM(CASE WHEN r.revenue_category_id <> 0 THEN r.revenue_amount ELSE 0 END), 0) AS total_revenues
|
||||
FROM accounts a
|
||||
LEFT JOIN payments p ON a.account_id = p.payment_account_id
|
||||
LEFT JOIN revenues r ON a.account_id = r.revenue_account_id
|
||||
|
|
|
|||
Loading…
Reference in New Issue