Strip annotations before handling bal assignments
This commit is contained in:
parent
15193ffb3b
commit
8747c724f1
1 changed files with 2 additions and 1 deletions
|
|
@ -1014,7 +1014,8 @@ post_t * instance_t::parse_post(char * line,
|
|||
<< "POST assign: parsed amt = " << *post->assigned_amount);
|
||||
|
||||
amount_t& amt(*post->assigned_amount);
|
||||
value_t account_total(post->account->self_total(false));
|
||||
value_t account_total(post->account->self_total(false)
|
||||
.strip_annotations(keep_details_t()));
|
||||
|
||||
DEBUG("post.assign", "line " << linenum << ": "
|
||||
"account balance = " << account_total);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue