From 214cd078daba49774c52405f75ce65350300782c Mon Sep 17 00:00:00 2001 From: dbear496 <70439542+dbear496@users.noreply.github.com> Date: Fri, 14 Jul 2023 07:18:42 -0400 Subject: also copy costs that round to zero --- src/xact.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xact.cc b/src/xact.cc index af93468f..49263e4d 100644 --- a/src/xact.cc +++ b/src/xact.cc @@ -836,7 +836,7 @@ void auto_xact_t::extend_xact(xact_base_t& xact, parse_context_t& context) // the automated xact's one. post_t * new_post = new post_t(account, amt); new_post->copy_details(*post); - if(post->cost) + if(! post->cost.is_null()) new_post->cost = post->cost; // A Cleared transaction implies all of its automatic posting are cleared -- cgit v1.2.3