resolved error when importing records with [null, 0] transaction amounts

This commit is contained in:
Peter Wood
2023-05-01 07:56:42 -04:00
parent a494709cc5
commit 2b863ea758

View File

@@ -35,7 +35,8 @@ select
, cast(dt as date) as dt_converted , cast(dt as date) as dt_converted
, amount , amount
, _acct , _acct
from public.budgetimport; from public.budgetimport
where coalesce(amount, 0) <> 0;
end end
$$; $$;