Merge branch 'bug_8641' into 3.12-master
[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 strict;
27 #use warnings; FIXME - Bug 2505
28 use C4::Auth;
29 use C4::Output;
30 use CGI;
31 use C4::Members;
32 use C4::Branch;
33 use C4::Category;
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 $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 my $searchfields = $input->param('searchfields');
99 my @searchfields = $searchfields ? split( ',', $searchfields ) : ( "firstname", "surname", "othernames", "cardnumber", "userid", "email" );
100
101 $member =~ s/,//g;   #remove any commas from search string
102 $member =~ s/\*/%/g;
103
104 my $from = ( $startfrom - 1 ) * $resultsperpage;
105 my $to   = $from + $resultsperpage;
106
107 my ($count,$results);
108 if ($member || keys %$patron) {
109     #($results)=Search($member || $patron,{surname=>1,firstname=>1},[$from,$to],undef,["firstname","surname","email","othernames"]  );
110     my $search_scope = ( $quicksearch ? "field_start_with" : "start_with" );
111     ($results) = Search( $member || $patron, \@orderby, undef, undef, \@searchfields, $search_scope );
112 }
113
114 if ($results) {
115         for my $field ('categorycode','branchcode'){
116                 next unless ($patron->{$field});
117                 @$results = grep { $_->{$field} eq $patron->{$field} } @$results; 
118         }
119     $count = scalar(@$results);
120 }
121
122 if($count == 1){
123     print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=" . @$results[0]->{borrowernumber});
124     exit;
125 }
126
127 my @resultsdata;
128 $to=($count>$to?$to:$count);
129 my $index=$from;
130 foreach my $borrower(@$results[$from..$to-1]){
131   #find out stats
132   my ($od,$issue,$fines)=GetMemberIssuesAndFines($$borrower{'borrowernumber'});
133
134   $$borrower{'dateexpiry'}= C4::Dates->new($$borrower{'dateexpiry'},'iso')->output('syspref');
135
136   my %row = (
137     count => $index++,
138         %$borrower,
139         %{$categories_dislay{$$borrower{categorycode}}},
140     overdues => $od,
141     issues => $issue,
142     odissue => "$od/$issue",
143     fines =>  sprintf("%.2f",$fines),
144     branchname => $branches->{$borrower->{branchcode}}->{branchname},
145     );
146   push(@resultsdata, \%row);
147 }
148
149 if ($$patron{categorycode}){
150         foreach my $category (grep{$_->{categorycode} eq $$patron{categorycode}}@categories){
151                 $$category{selected}=1;
152         }
153 }
154 my %parameters=
155         (  %$patron
156                 , 'orderby'                     => $orderbyparams 
157                 , 'resultsperpage'      => $resultsperpage 
158         , 'type'=> 'intranet'); 
159 my $base_url =
160     'member.pl?&'
161   . join(
162     '&',
163     map { "$_=$parameters{$_}" } (keys %parameters)
164   );
165
166 my @letters = map { {letter => $_} } ( 'A' .. 'Z');
167
168 $template->param(
169     letters => \@letters,
170     paginationbar => pagination_bar(
171         $base_url,
172         int( $count / $resultsperpage ) + ($count % $resultsperpage ? 1 : 0),
173         $startfrom, 'startfrom'
174     ),
175     startfrom => $startfrom,
176     from      => ($startfrom-1)*$resultsperpage+1,  
177     to        => $to,
178     multipage => ($count != $to || $startfrom!=1),
179     advsearch => ($$patron{categorycode} || $$patron{branchcode}),
180     branchloop=>\@branchloop,
181     categories=>\@categories,
182     searching       => "1",
183                 actionname              =>basename($0),
184                 %$patron,
185         numresults      => $count,
186         resultsloop     => \@resultsdata,
187             );
188
189 output_html_with_http_headers $input, $cookie, $template->output;