From d9d6f44f8586efb227faaa9a04b0c33805d53365 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 1 Jun 2017 13:52:30 -0300 Subject: [PATCH] Bug 18789: Use Koha::Patron->is_child where needed Test plan: When you are on a page related to a child you should see the "Update child to adult patron" button Signed-off-by: Kyle M Hall --- circ/circulation.pl | 1 - koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc | 6 +++--- members/boraccount.pl | 1 - members/mancredit.pl | 1 - members/maninvoice.pl | 1 - members/member-flags.pl | 1 - members/member-password.pl | 1 - members/moremember.pl | 1 - members/printfeercpt.pl | 1 - members/printinvoice.pl | 1 - members/readingrec.pl | 1 - 11 files changed, 3 insertions(+), 13 deletions(-) diff --git a/circ/circulation.pl b/circ/circulation.pl index 98928a2..bf76995 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -608,7 +608,6 @@ if ( $patron ) { patron => $patron, categoryname => $patron->category->description, expiry => $patron->dateexpiry, - is_child => ( $patron->category->category_type eq 'C' ), ); } diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc index 5a69ab2..5ec0341 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc @@ -34,7 +34,7 @@ $(document).ready(function(){ $(".btn-group").removeClass("open"); return false; }); - [% IF ( is_child ) %]$("#updatechild").click(function(){ + [% IF ( patron.is_child ) %]$("#updatechild").click(function(){ update_child(); $(".btn-group").removeClass("open"); });[% END %] @@ -92,7 +92,7 @@ function confirm_both_deletion() { } } -[% IF ( is_child ) %]function confirm_updatechild() { +[% IF ( patron.is_child ) %]function confirm_updatechild() { var is_confirmed = window.confirm(_("Are you sure you want to update this child to an Adult category? This cannot be undone.")); if (is_confirmed) { window.location='/cgi-bin/koha/members/update-child.pl?op=update&borrowernumber=[% patron.borrowernumber %]&catcode=[% catcode %]&catcode_multi=[% CATCODE_MULTI %]'; @@ -197,7 +197,7 @@ function searchToHold(){ [% ELSE %]
  • Delete
  • [% END %] - [% IF ( is_child ) %] + [% IF ( patron.is_child ) %]
  • Update child to adult patron
  • [% ELSE %]
  • Update child to adult patron
  • diff --git a/members/boraccount.pl b/members/boraccount.pl index 40b2591..283f4ac 100755 --- a/members/boraccount.pl +++ b/members/boraccount.pl @@ -112,7 +112,6 @@ $template->param( finesview => 1, total => sprintf("%.2f",$total), totalcredit => $totalcredit, - is_child => ($patron->category->category_type eq 'C'), reverse_col => $reverse_col, accounts => $accts, ); diff --git a/members/mancredit.pl b/members/mancredit.pl index c5434b0..d48fa40 100755 --- a/members/mancredit.pl +++ b/members/mancredit.pl @@ -100,7 +100,6 @@ if ($add){ $template->param( finesview => 1, - is_child => ($patron->category->category_type eq 'C'), # FIXME is_child should be a Koha::Patron method ); output_html_with_http_headers $input, $cookie, $template->output; } diff --git a/members/maninvoice.pl b/members/maninvoice.pl index 6b1a59b..e63fefe 100755 --- a/members/maninvoice.pl +++ b/members/maninvoice.pl @@ -127,7 +127,6 @@ if ($add){ $template->param( patron => $patron, finesview => 1, - is_child => ($patron->category->category_type eq 'C'), ); output_html_with_http_headers $input, $cookie, $template->output; } diff --git a/members/member-flags.pl b/members/member-flags.pl index 20a48e4..f057bcd 100755 --- a/members/member-flags.pl +++ b/members/member-flags.pl @@ -201,7 +201,6 @@ if (C4::Context->preference('ExtendedPatronAttributes')) { $template->param( patron => $patron, loop => \@loop, - is_child => ( $category_type eq 'C' ), csrf_token => Koha::Token->new->generate_csrf( { session_id => scalar $input->cookie('CGISESSID'), } ), ); diff --git a/members/member-password.pl b/members/member-password.pl index 0cb63ad..fd1223d 100755 --- a/members/member-password.pl +++ b/members/member-password.pl @@ -115,7 +115,6 @@ if ( C4::Context->preference('ExtendedPatronAttributes') ) { $template->param( patron => $patron, destination => $destination, - is_child => ( $category_type eq 'C' ), csrf_token => Koha::Token->new->generate_csrf({ session_id => scalar $input->cookie('CGISESSID'), }), ); diff --git a/members/moremember.pl b/members/moremember.pl index cf996fd..3beca9f 100755 --- a/members/moremember.pl +++ b/members/moremember.pl @@ -341,7 +341,6 @@ $template->param( totaldue_raw => $total, overdues_exist => $overdues_exist, StaffMember => $category_type eq 'S', - is_child => $category_type eq 'C', $category_type => 1, # [% IF ( I ) %] = institutional/organisation samebranch => $samebranch, quickslip => $quickslip, diff --git a/members/printfeercpt.pl b/members/printfeercpt.pl index 15c39d6..4446fc2 100755 --- a/members/printfeercpt.pl +++ b/members/printfeercpt.pl @@ -122,7 +122,6 @@ $template->param( finesview => 1, total => sprintf("%.2f",$total), totalcredit => $totalcredit, - is_child => ($category->category_type eq 'C'), accounts => \@accountrows ); output_html_with_http_headers $input, $cookie, $template->output; diff --git a/members/printinvoice.pl b/members/printinvoice.pl index dc7f347..34e93b0 100755 --- a/members/printinvoice.pl +++ b/members/printinvoice.pl @@ -122,7 +122,6 @@ $template->param( finesview => 1, total => sprintf( "%.2f", $total ), totalcredit => $totalcredit, - is_child => ( $category->category_type eq 'C' ), accounts => \@accountrows ); diff --git a/members/readingrec.pl b/members/readingrec.pl index 6894796..1fb8b00 100755 --- a/members/readingrec.pl +++ b/members/readingrec.pl @@ -116,7 +116,6 @@ if (C4::Context->preference('ExtendedPatronAttributes')) { $template->param( patron => $patron, readingrecordview => 1, - is_child => ( $category->category_type eq 'C' ), loop_reading => $issues, ); output_html_with_http_headers $input, $cookie, $template->output; -- 2.10.2