From e124811d8a31292c06430815683b2e0fe87f7ceb Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 22 Feb 2009 04:43:34 -0400 Subject: Added --exchange (-x) option This is like -V, except it lets you specify the goal commodity to report in terms of, for example: reg -x CAD --- src/balance.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/balance.cc') diff --git a/src/balance.cc b/src/balance.cc index b8e4e07d..70e83362 100644 --- a/src/balance.cc +++ b/src/balance.cc @@ -159,7 +159,8 @@ balance_t& balance_t::operator/=(const amount_t& amt) } optional -balance_t::value(const optional& moment, +balance_t::value(const bool primary_only, + const optional& moment, const optional& in_terms_of) const { optional temp; @@ -167,7 +168,8 @@ balance_t::value(const optional& moment, foreach (const amounts_map::value_type& pair, amounts) { if (! temp) temp = balance_t(); - if (optional val = pair.second.value(moment, in_terms_of)) + if (optional val = pair.second.value(primary_only, moment, + in_terms_of)) *temp += *val; else *temp += pair.second; -- cgit v1.2.3