Bug 10838: Silence warns in members/member.pl
[koha.git] / members / member.pl
1 #!/usr/bin/perl
2
3
4 #script to do a borrower enquiry/bring up borrower details etc
5 #written 20/12/99 by chris@katipo.co.nz
6
7
8 # Copyright 2000-2002 Katipo Communications
9 # Copyright 2010 BibLibre
10 #
11 # This file is part of Koha.
12 #
13 # Koha is free software; you can redistribute it and/or modify it under the
14 # terms of the GNU General Public License as published by the Free Software
15 # Foundation; either version 2 of the License, or (at your option) any later
16 # version.
17 #
18 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
19 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
20 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License along
23 # with Koha; if not, write to the Free Software Foundation, Inc.,
24 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25
26 use Modern::Perl;
27 use C4::Auth;
28 use C4::Output;
29 use CGI;
30 use C4::Members;
31 use C4::Branch;
32 use C4::Category;
33 use Koha::DateUtils;
34 use File::Basename;
35
36 my $input = new CGI;
37 my $quicksearch = $input->param('quicksearch') || '';
38 my $startfrom = $input->param('startfrom') || 1;
39 my $resultsperpage = $input->param('resultsperpage') || C4::Context->preference("PatronsPerPage") || 20;
40
41 my ($template, $loggedinuser, $cookie)
42     = get_template_and_user({template_name => "members/member.tmpl",
43                  query => $input,
44                  type => "intranet",
45                  authnotrequired => 0,
46                  flagsrequired => {borrowers => 1},
47                  });
48
49 my $theme = $input->param('theme') || "default";
50
51 my $patron = $input->Vars;
52 foreach (keys %$patron){
53         delete $$patron{$_} unless($$patron{$_});
54 }
55 my @categories=C4::Category->all;
56
57 my $branches = GetBranches;
58 my @branchloop;
59
60 foreach (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches) {
61   my $selected;
62   $selected = 1 if $patron->{branchcode} && $branches->{$_}->{branchcode} eq $patron->{branchcode};
63   my %row = ( value => $_,
64         selected => $selected,
65         branchname => $branches->{$_}->{branchname},
66       );
67   push @branchloop, \%row;
68 }
69
70 my %categories_dislay;
71
72 foreach my $category (@categories){
73         my $hash={
74                         category_description=>$$category{description},
75                         category_type=>$$category{category_type}
76                          };
77         $categories_dislay{$$category{categorycode}} = $hash;
78 }
79 my $AddPatronLists = C4::Context->preference("AddPatronLists") || '';
80 $template->param( 
81         "AddPatronLists_$AddPatronLists" => "1",
82             );
83 if ($AddPatronLists=~/code/){
84     $categories[0]->{'first'}=1;
85 }  
86
87 my $member=$input->param('member') || '';
88 my $orderbyparams=$input->param('orderby') || '';
89 my @orderby;
90 if ($orderbyparams){
91         my @orderbyelt=split(/,/,$orderbyparams);
92         push @orderby, {$orderbyelt[0]=>$orderbyelt[1]||0};
93 }
94 else {
95         @orderby = ({surname=>0},{firstname=>0});
96 }
97
98 $member =~ s/,//g;   #remove any commas from search string
99 $member =~ s/\*/%/g;
100
101 my $from = ( $startfrom - 1 ) * $resultsperpage;
102 my $to   = $from + $resultsperpage;
103
104 my ($count,$results);
105 if ($member || keys %$patron) {
106     my $searchfields = $input->param('searchfields') || '';
107     my @searchfields = $searchfields ? split( ',', $searchfields ) : ( "firstname", "surname", "othernames", "cardnumber", "userid", "email" );
108
109     if ( $searchfields eq "dateofbirth" ) {
110         $member = output_pref(dt_from_string($member), 'iso', undef, 1);
111     }
112
113     my $searchtype = $input->param('searchtype');
114     my $search_scope =
115         $quicksearch ? "field_start_with"
116       : $searchtype  ? $searchtype
117       :                "start_with";
118
119     ($results) = Search( $member || $patron, \@orderby, undef, undef, \@searchfields, $search_scope );
120 }
121
122 if ($results) {
123         for my $field ('categorycode','branchcode'){
124                 next unless ($patron->{$field});
125                 @$results = grep { $_->{$field} eq $patron->{$field} } @$results; 
126         }
127     $count = scalar(@$results);
128 }
129
130 if($count == 1){
131     print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=" . @$results[0]->{borrowernumber});
132     exit;
133 }
134
135 my @resultsdata;
136 $to=($count>$to?$to:$count);
137 my $index=$from;
138 foreach my $borrower(@$results[$from..$to-1]){
139   #find out stats
140   my ($od,$issue,$fines)=GetMemberIssuesAndFines($$borrower{'borrowernumber'});
141   $fines ||= 0;
142   $$borrower{'dateexpiry'}= C4::Dates->new($$borrower{'dateexpiry'},'iso')->output('syspref');
143
144   my %row = (
145     count => $index++,
146     %$borrower,
147     (defined $categories_dislay{ $borrower->{categorycode} }?   %{ $categories_dislay{ $borrower->{categorycode} } }:()),
148     overdues => $od,
149     issues => $issue,
150     odissue => "$od/$issue",
151     fines =>  sprintf("%.2f",$fines),
152     branchname => $branches->{$borrower->{branchcode}}->{branchname},
153     );
154   push(@resultsdata, \%row);
155 }
156
157 if ($$patron{categorycode}){
158         foreach my $category (grep{$_->{categorycode} eq $$patron{categorycode}}@categories){
159                 $$category{selected}=1;
160         }
161 }
162 my %parameters=
163         (  %$patron
164                 , 'orderby'                     => $orderbyparams 
165                 , 'resultsperpage'      => $resultsperpage 
166         , 'type'=> 'intranet'); 
167 my $base_url =
168     'member.pl?&'
169   . join(
170     '&',
171     map { "$_=$parameters{$_}" } (keys %parameters)
172   );
173
174 my @letters = map { {letter => $_} } ( 'A' .. 'Z');
175
176 $template->param(
177     letters => \@letters,
178     paginationbar => pagination_bar(
179         $base_url,
180         int( $count / $resultsperpage ) + ($count % $resultsperpage ? 1 : 0),
181         $startfrom, 'startfrom'
182     ),
183     startfrom => $startfrom,
184     from      => ($startfrom-1)*$resultsperpage+1,  
185     to        => $to,
186     multipage => ($count != $to || $startfrom!=1),
187     advsearch => ($$patron{categorycode} || $$patron{branchcode}),
188     branchloop=>\@branchloop,
189     categories=>\@categories,
190     searching       => "1",
191                 actionname              =>basename($0),
192                 %$patron,
193         numresults      => $count,
194         resultsloop     => \@resultsdata,
195             );
196
197 output_html_with_http_headers $input, $cookie, $template->output;