From 679a99520b460f1ab8047f0a882e1b430a9a2c73 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 1 Jun 2017 14:03:52 -0300 Subject: [PATCH] Bug 18789: Update other occurences where is->child should be used Trivial changes here, just do a code review on the QA step --- members/boraccount.pl | 2 +- members/mancredit.pl | 2 +- members/maninvoice.pl | 2 +- members/member-flags.pl | 2 +- members/member-password.pl | 2 +- members/moremember.pl | 2 +- members/printfeercpt.pl | 4 +--- members/printinvoice.pl | 4 +--- members/readingrec.pl | 3 +-- members/routing-lists.pl | 2 -- 10 files changed, 9 insertions(+), 16 deletions(-) diff --git a/members/boraccount.pl b/members/boraccount.pl index 616982a52c..5e488d10e5 100755 --- a/members/boraccount.pl +++ b/members/boraccount.pl @@ -61,7 +61,7 @@ if ( $action eq 'reverse' ) { ReversePayment( $input->param('accountlines_id') ); } -if ( $patron->category->category_type eq 'C') { +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 ) if $patron_categories->count == 1; diff --git a/members/mancredit.pl b/members/mancredit.pl index d976d83933..b01cf15eba 100755 --- a/members/mancredit.pl +++ b/members/mancredit.pl @@ -76,7 +76,7 @@ if ($add){ ); my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in"; output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } ); - if ( $patron->category->category_type eq 'C') { + 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 ) if $patron_categories->count == 1; diff --git a/members/maninvoice.pl b/members/maninvoice.pl index 9f035751f9..b12ca57def 100755 --- a/members/maninvoice.pl +++ b/members/maninvoice.pl @@ -103,7 +103,7 @@ if ($add){ } $template->param( invoice_types_loop => \@invoice_types ); - if ( $patron->category->category_type eq 'C') { + 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 ) if $patron_categories->count == 1; diff --git a/members/member-flags.pl b/members/member-flags.pl index 0aca1b08a0..d848bf9b15 100755 --- a/members/member-flags.pl +++ b/members/member-flags.pl @@ -177,7 +177,7 @@ if ($input->param('newflags')) { push @loop, \%row; } - if ( $category_type eq 'C') { + 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 ) if $patron_categories->count == 1; diff --git a/members/member-password.pl b/members/member-password.pl index c1ac16ca15..aa1ed4a788 100755 --- a/members/member-password.pl +++ b/members/member-password.pl @@ -101,7 +101,7 @@ else { $template->param( defaultnewpassword => $defaultnewpassword ); } -if ( $category_type eq 'C') { +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 ) if $patron_categories->count == 1; diff --git a/members/moremember.pl b/members/moremember.pl index c38aec8bda..f389bfebce 100755 --- a/members/moremember.pl +++ b/members/moremember.pl @@ -165,7 +165,7 @@ if ( $patron->is_debarred ) { $data->{ "sex_".$data->{'sex'}."_p" } = 1 if defined $data->{sex}; -if ( $category_type eq 'C') { +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 ) if $patron_categories->count == 1; diff --git a/members/printfeercpt.pl b/members/printfeercpt.pl index 7b897cdcc3..0bf6705de8 100755 --- a/members/printfeercpt.pl +++ b/members/printfeercpt.pl @@ -54,13 +54,11 @@ my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in" my $patron = Koha::Patrons->find( $borrowernumber ); output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } ); -my $category = $patron->category; - if ( $action eq 'print' ) { # ReversePayment( $borrowernumber, $input->param('accountno') ); } -if ( $category->category_type eq 'C') { +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 ) if $patron_categories->count == 1; diff --git a/members/printinvoice.pl b/members/printinvoice.pl index fecca42437..4e5b9abd9a 100755 --- a/members/printinvoice.pl +++ b/members/printinvoice.pl @@ -53,9 +53,7 @@ my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in" my $patron = Koha::Patrons->find( $borrowernumber ); output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } ); -my $category = $patron->category; - -if ( $category->category_type eq 'C' ) { +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 ) if $patron_categories->count == 1; diff --git a/members/readingrec.pl b/members/readingrec.pl index cbf4878662..756be312a2 100755 --- a/members/readingrec.pl +++ b/members/readingrec.pl @@ -93,8 +93,7 @@ if ( $op eq 'export_barcodes' ) { } } -my $category = $patron->category; -if ( $category->category_type eq 'C') { +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 ) if $patron_categories->count == 1; diff --git a/members/routing-lists.pl b/members/routing-lists.pl index ed0215e86d..6dd611f6d7 100755 --- a/members/routing-lists.pl +++ b/members/routing-lists.pl @@ -51,8 +51,6 @@ my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in" my $patron = Koha::Patrons->find( $borrowernumber ); output_and_exit_if_error( $query, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } ); -my $category = $patron->category; - my $count; my @borrowerSubscriptions; ($count, @borrowerSubscriptions) = GetSubscriptionsFromBorrower($borrowernumber ); -- 2.11.0