From 4b8f5e5dc6d15549fde7f45f53a9675ee9f0b952 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 (cherry picked from commit 5f03b21cf3a7141dc0f2ae2b1922505d55d4cd34) Signed-off-by: Fridolin Somers (cherry picked from commit 3e0ccc346ca6f6b758b88cd0d4f09c2e6bdb44e4) Signed-off-by: Fridolin Somers --- members/printfeercpt.pl | 6 ------ 1 file changed, 6 deletions(-) diff --git a/members/printfeercpt.pl b/members/printfeercpt.pl index 8b87f73013..a36ff17c69 100755 --- a/members/printfeercpt.pl +++ b/members/printfeercpt.pl @@ -57,12 +57,6 @@ if ( $action eq 'print' ) { # ReversePayment( $borrowernumber, $input->param('accountno') ); } -if ( $data->{'category_type'} eq 'C') { - 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,$accts,$numaccts)=GetMemberAccountRecords($borrowernumber); my $totalcredit; -- 2.39.5