From 3052a6f0852ab44e2a6d68b702ba91fa1d963608 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 1 Jun 2017 13:58:48 -0300 Subject: [PATCH] Bug 18789: Remove adultborrower from the pay* scripts This flag is not used in the templates --- members/pay.pl | 2 -- members/paycollect.pl | 2 -- 2 files changed, 4 deletions(-) diff --git a/members/pay.pl b/members/pay.pl index 6f50e9b799..40f5364fd7 100755 --- a/members/pay.pl +++ b/members/pay.pl @@ -225,8 +225,6 @@ sub borrower_add_additional_fields { 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->categorycode ) if $patron_categories->count == 1; - } elsif ( $b_ref->{category_type} eq 'A' || $b_ref->{category_type} eq 'I' ) { - $b_ref->{adultborrower} = 1; } if (C4::Context->preference('ExtendedPatronAttributes')) { diff --git a/members/paycollect.pl b/members/paycollect.pl index b2b193114c..3c82499a10 100755 --- a/members/paycollect.pl +++ b/members/paycollect.pl @@ -196,8 +196,6 @@ sub borrower_add_additional_fields { 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->categorycode ) if $patron_categories->count == 1; - } elsif ( $b_ref->{category_type} eq 'A' || $b_ref->{category_type} eq 'I' ) { - $b_ref->{adultborrower} = 1; } if (C4::Context->preference('ExtendedPatronAttributes')) { -- 2.11.0