From 5f03b21cf3a7141dc0f2ae2b1922505d55d4cd34 Mon Sep 17 00:00:00 2001 From: Josef Moravec Date: Fri, 8 Jun 2018 09:43:13 +0000 Subject: [PATCH] Bug 20903: Remove unnecessary category code parameters Test plan: 0) Do no apply the patch 1) Have only one adults patrons category defined 2) Add a fine to child patron and pay it 3) Try to print the payment receipt (file printfeercpt.pl) 4) You see only ISE 5) Apply the patch 6) Try the printing again 7) Now you should see right receipt Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart Signed-off-by: Nick Clemens Signed-off-by: Martin Renvoize --- members/printfeercpt.pl | 6 ------ 1 file changed, 6 deletions(-) diff --git a/members/printfeercpt.pl b/members/printfeercpt.pl index c73f8f5bf4..a6f5fb15c8 100755 --- a/members/printfeercpt.pl +++ b/members/printfeercpt.pl @@ -58,12 +58,6 @@ if ( $action eq 'print' ) { # ReversePayment( $borrowernumber, $input->param('accountno') ); } -if ( $patron->is_child ) { - my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']}); - $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1; - $template->param( 'catcode' => $patron_categories->next->categorycde ) if $patron_categories->count == 1; -} - #get account details my $total = $patron->account->balance; -- 2.39.5