From 434600f33283795b48d2babd111fb6f617e2a02f Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Wed, 2 Oct 2024 10:54:50 +0000 Subject: [PATCH] Bug 38061: Remove pre-selection of serials in the table Test plan: 1) Navigate to the serials-collection table 2) None of the checkboxes in the left hand column should be selected Sponsored-by: Association KohaLa - https://koha-fr.org/ Signed-off-by: Nathalie --- C4/Serials.pm | 3 --- 1 file changed, 3 deletions(-) diff --git a/C4/Serials.pm b/C4/Serials.pm index 89e1a323628..c9893f4684d 100644 --- a/C4/Serials.pm +++ b/C4/Serials.pm @@ -373,9 +373,6 @@ sub PrepareSerialsData { foreach my $subs ( @{$lines} ) { $subs->{ "status" . $subs->{'status'} } = 1; - if ( grep { $_ == $subs->{status} } ( EXPECTED, LATE, MISSING_STATUSES, CLAIMED ) ) { - $subs->{"checked"} = 1; - } if ($add_itemnumbers) { my $serialitem = Koha::Serial::Items->find( { serialid => $subs->{'serialid'} } ); $subs->{"itemnumber"} = $serialitem->itemnumber if $serialitem; -- 2.48.1