diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-11 03:41:59 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-11 04:22:37 -0500 |
commit | e8ea2d4938fcbb0988fd1e2021d97a519c67ffd8 (patch) | |
tree | 3aadd6947972d1b802f89b90db683994071b134c /src/journal.cc | |
parent | afe87280e091d4f094f068c5f21aecccd2d1831b (diff) | |
download | fork-ledger-e8ea2d4938fcbb0988fd1e2021d97a519c67ffd8.tar.gz fork-ledger-e8ea2d4938fcbb0988fd1e2021d97a519c67ffd8.tar.bz2 fork-ledger-e8ea2d4938fcbb0988fd1e2021d97a519c67ffd8.zip |
Automated postings defer amount expression calculation
This allows for value expressions to be used which reference the
incoming posting, for example:
= Income:Clients:
(Liabilities:Taxes:VAT1) (floor(amount) * 1)
(Liabilities:Taxes:VAT2) 0.19
2009/07/27 * Invoice
Assets:Bank:Checking $1,190.45
Income:Clients:ACME_Inc
The automated posting for VAT1 will use the floored amount multiplied by
a factor, while the posting for VAT2 multiples the whole amount as
before.
Diffstat (limited to 'src/journal.cc')
-rw-r--r-- | src/journal.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/journal.cc b/src/journal.cc index 550b4f4c..b7ad9a23 100644 --- a/src/journal.cc +++ b/src/journal.cc @@ -126,9 +126,7 @@ bool journal_t::add_xact(xact_t * xact) { xact->journal = this; - if (! xact_finalize_hooks.run_hooks(*xact, false) || - ! xact->finalize() || - ! xact_finalize_hooks.run_hooks(*xact, true)) { + if (! xact->finalize() || ! xact_finalize_hooks.run_hooks(*xact)) { xact->journal = NULL; return false; } |