diff options
author | John Wiegley <johnw@newartisans.com> | 2017-01-04 12:02:15 -0800 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2017-01-04 12:02:15 -0800 |
commit | f27d7776ca8fb29c5a523c859d64f3c570ce8985 (patch) | |
tree | 9ae01f8c316bc3a3e6f9709192f17bf388adc89c /src/session.cc | |
parent | 0e1c6115b37cc2ddde2d981dfd0e329be626316c (diff) | |
download | fork-ledger-f27d7776ca8fb29c5a523c859d64f3c570ce8985.tar.gz fork-ledger-f27d7776ca8fb29c5a523c859d64f3c570ce8985.tar.bz2 fork-ledger-f27d7776ca8fb29c5a523c859d64f3c570ce8985.zip |
Item sorting should have access to the report scope
Diffstat (limited to 'src/session.cc')
-rw-r--r-- | src/session.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/session.cc b/src/session.cc index 8d03431f..d341ceee 100644 --- a/src/session.cc +++ b/src/session.cc @@ -284,7 +284,7 @@ value_t session_t::fn_str(call_scope_t& args) value_t session_t::fn_lot_price(call_scope_t& args) { - amount_t amt(args.get<amount_t>(1, false)); + amount_t amt(args.get<amount_t>(0, false)); if (amt.has_annotation() && amt.annotation().price) return *amt.annotation().price; else @@ -292,7 +292,7 @@ value_t session_t::fn_lot_price(call_scope_t& args) } value_t session_t::fn_lot_date(call_scope_t& args) { - amount_t amt(args.get<amount_t>(1, false)); + amount_t amt(args.get<amount_t>(0, false)); if (amt.has_annotation() && amt.annotation().date) return *amt.annotation().date; else @@ -300,7 +300,7 @@ value_t session_t::fn_lot_date(call_scope_t& args) } value_t session_t::fn_lot_tag(call_scope_t& args) { - amount_t amt(args.get<amount_t>(1, false)); + amount_t amt(args.get<amount_t>(0, false)); if (amt.has_annotation() && amt.annotation().tag) return string_value(*amt.annotation().tag); else |