Skip to content

Commit

Permalink
Fix trial balance drill down showing partial results
Browse files Browse the repository at this point in the history
Instead of showing *all* lines, the query only shows lines belonging
to voided invoices and transactions.

Fixes #7656
  • Loading branch information
ehuelsmann committed Oct 12, 2023
1 parent 030d742 commit d9c8d44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/LedgerSMB/Report/Voided_Option.pm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use Moose::Role;
use namespace::autoclean;

has is_voided => (is => 'ro', isa => 'Str',
default => 'Y');
default => 'All');
has voided => (is => 'ro', lazy => 1,
builder => '_voided');

Expand Down

0 comments on commit d9c8d44

Please sign in to comment.