X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=members%2Fmembers-home.pl;h=247cc00c73939672452f5b47d72044db53c17c7b;hb=b648e8c8bf0fc0f851931eba60c7692f6b0ee726;hp=d589a9c5bdf1fe4bf540c1ec352f5f63ea7154eb;hpb=5bbf1aa67415835fdf486c5d62f97591bb5792b9;p=koha.git diff --git a/members/members-home.pl b/members/members-home.pl index d589a9c5bd..247cc00c73 100755 --- a/members/members-home.pl +++ b/members/members-home.pl @@ -3,18 +3,18 @@ # Parts Copyright Biblibre 2010 # This file is part of Koha. # -# Koha is free software; you can redistribute it and/or modify it under the -# terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. # -# Koha is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along -# with Koha; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . use strict; use warnings; @@ -26,7 +26,9 @@ use C4::Context; use C4::Members; use C4::Branch; use C4::Category; -use Koha::Borrower::Modifications; +use Koha::Patron::Modifications; +use Koha::Libraries; +use Koha::List::Patron; my $query = new CGI; my $branch = $query->param('branchcode'); @@ -46,11 +48,11 @@ my $branches = GetBranches; my @branchloop; if ( C4::Branch::onlymine ) { my $userenv = C4::Context->userenv; - my $branch = C4::Branch::GetBranchDetail( $userenv->{'branch'} ); + my $library = Koha::Libraries->find( $userenv->{'branch'} ); push @branchloop, { - value => $branch->{branchcode}, - branchcode => $branch->{branchcode}, - branchname => $branch->{branchname}, + value => $library->id, + branchcode => $library->branchcode, + branchname => $library->branchname, selected => 1 } } else { @@ -87,7 +89,7 @@ else { my $pending_borrower_modifications = - Koha::Borrower::Modifications->GetPendingModificationsCount( $branch ); + Koha::Patron::Modifications->GetPendingModificationsCount( $branch ); $template->param( no_add => $no_add, @@ -96,6 +98,7 @@ $template->param( $template->param( alphabet => C4::Context->preference('alphabet') || join (' ', 'A' .. 'Z'), + patron_lists => [ GetPatronLists() ], PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20, );