From 86454c0681aab76fa4c19279373d192e0c956201 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 10 Oct 2013 10:46:17 -0400 Subject: [PATCH] Bug 10904 - would like to limit patron update request management by branch By not limiting the patron modification lists by branch, it can quickly become overwhelming for a librarian. This patch makes the following modifications: * Only superlibrians will see the full list of borrowers with pending modifications. * Adds the patron cardnumber after the patrons name on the modification list. * Adds a link to the patron's record from the modification list. Test Plan: 1) Apply this patch 2) Set up some pending modifications for two branches 3) Log in to the staff intranet as one of those branches 4) You should note the number of pending modifications counts only your logged in branch's patrons 5) Click the link, you should only see your logged in branches patrons in the pending modifications list. 6) You should note the cardnumber is displayed next to the patron name 7) You should note the "View record" link below each patron's name Signed-off-by: Christopher Brannon Signed-off-by: Katrin Fischer Comments on last patch. --- .../prog/en/modules/members/members-update.tt | 3 ++- mainpage.pl | 8 +++----- members/members-update.pl | 7 +++---- 3 files changed, 8 insertions(+), 10 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/members-update.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/members-update.tt index 5d966df..e3d0fbe 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/members-update.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/members-update.tt @@ -78,8 +78,9 @@
[% FOREACH pm IN PendingModifications %] [% SET borrowernumber = pm.borrowernumber %] -

[% borrowers.$borrowernumber.surname %], [% borrowers.$borrowernumber.firstname %]

+

[% borrowers.$borrowernumber.surname %], [% borrowers.$borrowernumber.firstname %] ([% borrowers.$borrowernumber.cardnumber %])

+ View record
diff --git a/mainpage.pl b/mainpage.pl index 09450f6..fada31f 100755 --- a/mainpage.pl +++ b/mainpage.pl @@ -54,11 +54,9 @@ $template->param( koha_news_count => $koha_news_count ); -my $branch = - C4::Context->preference("IndependentBranches") - && !$flags->{'superlibrarian'} - ? C4::Context->userenv()->{'branch'} - : undef; +my $branch = $flags->{'superlibrarian'} + ? undef + : C4::Context->userenv()->{'branch'}; my $pendingcomments = numberofreviews(0); my $pendingtags = get_count_by_tag_status(0); diff --git a/members/members-update.pl b/members/members-update.pl index bed43ac..119ca16 100755 --- a/members/members-update.pl +++ b/members/members-update.pl @@ -42,10 +42,9 @@ my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user( ); my $branch = - C4::Context->preference("IndependentBranches") - && !$flags->{'superlibrarian'} - ? C4::Context->userenv()->{'branch'} - : undef; + $flags->{'superlibrarian'} + ? undef + : C4::Context->userenv()->{'branch'}; my $pending_modifications = Koha::Borrower::Modifications->GetPendingModifications($branch); -- 1.7.2.5