From cd20131d72c3ff5adbf31f46bdb2768ef404c02b Mon Sep 17 00:00:00 2001 From: Erik Huelsmann Date: Thu, 12 Oct 2023 21:26:47 +0200 Subject: [PATCH] Fix trial balance drill down showing partial results Instead of showing *all* lines, the query only shows lines belonging to voided invoices and transactions. Fixes #7656 --- lib/LedgerSMB/Report/Voided_Option.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/LedgerSMB/Report/Voided_Option.pm b/lib/LedgerSMB/Report/Voided_Option.pm index 29dcc85a56..dfe63d5143 100644 --- a/lib/LedgerSMB/Report/Voided_Option.pm +++ b/lib/LedgerSMB/Report/Voided_Option.pm @@ -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');