From 0bd9f7fc152c339341c1d0def263642263cffbe6 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 6e1731734c..b944ff669d 100644 --- a/C4/Serials.pm +++ b/C4/Serials.pm @@ -372,9 +372,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.39.5