Merge remote branch 'kc/master' into new/bug_3013
[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 #
10 # This file is part of Koha.
11 #
12 # Koha is free software; you can redistribute it and/or modify it under the
13 # terms of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2 of the License, or (at your option) any later
15 # version.
16 #
17 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
18 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License along
22 # with Koha; if not, write to the Free Software Foundation, Inc.,
23 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24
25 use strict;
26 #use warnings; FIXME - Bug 2505
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 File::Basename;
34
35 my $input = new CGI;
36 my $quicksearch = $input->param('quicksearch');
37 my $startfrom = $input->param('startfrom')||1;
38 my $resultsperpage = $input->param('resultsperpage')||C4::Context->preference("PatronsPerPage")||20;
39
40 my ($template, $loggedinuser, $cookie)
41     = get_template_and_user({template_name => "members/member.tmpl",
42                  query => $input,
43                  type => "intranet",
44                  authnotrequired => 0,
45                  flagsrequired => {borrowers => 1},
46                  });
47
48 my $theme = $input->param('theme') || "default";
49
50 my $patron = $input->Vars;
51 foreach (keys %$patron){
52         delete $$patron{$_} unless($$patron{$_});
53 }
54 my @categories=C4::Category->all;
55
56 my $branches = GetBranches;
57 my @branchloop;
58
59 foreach (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches) {
60   my $selected = 1 if $branches->{$_}->{branchcode} eq $$patron{branchcode};
61   my %row = ( value => $_,
62         selected => $selected,
63         branchname => $branches->{$_}->{branchname},
64       );
65   push @branchloop, \%row;
66 }
67
68 my %categories_dislay;
69
70 foreach my $category (@categories){
71         my $hash={
72                         category_description=>$$category{description},
73                         category_type=>$$category{category_type}
74                          };
75         $categories_dislay{$$category{categorycode}} = $hash;
76 }
77 $template->param( 
78         "AddPatronLists_".C4::Context->preference("AddPatronLists")=> "1",
79             );
80 if (C4::Context->preference("AddPatronLists")=~/code/){
81     $categories[0]->{'first'}=1;
82 }  
83
84 my $member=$input->param('member');
85 my $orderbyparams=$input->param('orderby');
86 my @orderby;
87 if ($orderbyparams){
88         my @orderbyelt=split(/,/,$orderbyparams);
89         push @orderby, {$orderbyelt[0]=>$orderbyelt[1]||0};
90 }
91 else {
92         @orderby = ({surname=>0},{firstname=>0});
93 }
94
95 $member =~ s/,//g;   #remove any commas from search string
96 $member =~ s/\*/%/g;
97
98 my ($count,$results);
99
100 my @searchpatron;
101 push @searchpatron, $member if ($member);
102 push @searchpatron, $patron if (keys %$patron);
103 my $from= ($startfrom-1)*$resultsperpage;
104 my $to=$from+$resultsperpage;
105  #($results)=Search(\@searchpatron,{surname=>1,firstname=>1},[$from,$to],undef,["firstname","surname","email","othernames"]  ) if (@searchpatron);
106  my $search_scope=($quicksearch?"field_start_with":"contain");
107  ($results)=Search(\@searchpatron,\@orderby,undef,undef,["firstname","surname","email","othernames","cardnumber","userid"],$search_scope  ) if (@searchpatron);
108 if ($results){
109         $count =scalar(@$results);
110 }
111 my @resultsdata;
112 $to=($count>$to?$to:$count);
113 my $index=$from;
114 foreach my $borrower(@$results[$from..$to-1]){
115   #find out stats
116   my ($od,$issue,$fines)=GetMemberIssuesAndFines($$borrower{'borrowernumber'});
117
118   $$borrower{'dateexpiry'}= C4::Dates->new($$borrower{'dateexpiry'},'iso')->output('syspref');
119
120   my %row = (
121     count => $index++,
122         %$borrower,
123         %{$categories_dislay{$$borrower{categorycode}}},
124     overdues => $od,
125     issues => $issue,
126     odissue => "$od/$issue",
127     fines =>  sprintf("%.2f",$fines),
128     );
129   push(@resultsdata, \%row);
130 }
131
132 if ($$patron{categorycode}){
133         foreach my $category (grep{$_->{categorycode} eq $$patron{categorycode}}@categories){
134                 $$category{selected}=1;
135         }
136 }
137 my %parameters=
138         (  %$patron
139                 , 'orderby'                     => $orderbyparams 
140                 , 'resultsperpage'      => $resultsperpage 
141         , 'type'=> 'intranet'); 
142 my $base_url =
143     'member.pl?&'
144   . join(
145     '&',
146     map { "$_=$parameters{$_}" } (keys %parameters)
147   );
148
149 my @letters = map { {letter => $_} } ( 'A' .. 'Z');
150
151 $template->param(
152     letters => \@letters,
153     paginationbar => pagination_bar(
154         $base_url,
155         int( $count / $resultsperpage ) + ($count % $resultsperpage ? 1 : 0),
156         $startfrom, 'startfrom'
157     ),
158     startfrom => $startfrom,
159     from      => ($startfrom-1)*$resultsperpage+1,  
160     to        => $to,
161     multipage => ($count != $to+1 || $startfrom!=1),
162     advsearch => ($$patron{categorycode} || $$patron{branchcode}),
163     branchloop=>\@branchloop,
164     categories=>\@categories,
165     searching       => "1",
166                 actionname              =>basename($0),
167                 %$patron,
168         numresults      => $count,
169         resultsloop     => \@resultsdata,
170             );
171
172 output_html_with_http_headers $input, $cookie, $template->output;