fixed display predicates in the register report

This commit is contained in:
John Wiegley 2004-08-07 22:42:53 -04:00
parent b7777eac68
commit c9b54e6ece
3 changed files with 29 additions and 30 deletions

View file

@ -358,9 +358,7 @@ void format_transaction::operator()(transaction_t * xact) const
xact->total += *xact;
xact->index = last_xact ? last_xact->index + 1 : 0;
if (! disp_pred_functor(xact))
return;
if (disp_pred_functor(xact)) {
xact->flags |= TRANSACTION_DISPLAYED;
// This makes the assumption that transactions from a single entry
@ -388,6 +386,7 @@ void format_transaction::operator()(transaction_t * xact) const
next_lines_format.format_elements(output_stream, details_t(xact));
}
}
}
if (inverted) {
xact->amount.negate();

View file

@ -82,6 +82,8 @@ struct format_t
}
};
#define COLLAPSED_REGISTER 1 // support collapsed registers
class format_transaction
{
std::ostream& output_stream;

14
main.cc
View file

@ -578,18 +578,15 @@ int main(int argc, char * argv[])
predicate.reset(parse_expr(predicate_string));
}
if (! show_empty && display_predicate_string.empty()) {
if (command == "b")
if (display_predicate_string.empty()) {
if (command == "b" && ! show_empty)
display_predicate_string = "T";
else if (command == "E")
display_predicate_string = "a";
}
if (! display_predicate_string.empty()) {
} else {
#ifdef DEBUG
if (debug)
std::cerr << "display predicate = " << display_predicate_string
<< std::endl;
std::cerr << "display-p = " << display_predicate_string << std::endl;
#endif
display_predicate.reset(parse_expr(display_predicate_string));
}
@ -599,7 +596,7 @@ int main(int argc, char * argv[])
if (! sort_string.empty())
sort_order.reset(parse_expr(sort_string));
// Setup the meaning of %t and %T encountered in format strings
// Setup the meaning of %t and %T, used in format strings
format_t::value_expr.reset(parse_expr(value_expr));
format_t::total_expr.reset(parse_expr(total_expr));
@ -705,6 +702,7 @@ int main(int argc, char * argv[])
xact_display_flags);
std::stable_sort(transactions_pool.begin(), transactions_pool.end(),
compare_items<transaction_t>(sort_order.get()));
if (show_commodities_revalued) {
changed_value_filter<format_transaction>
filtered_formatter(formatter);