Improving and Bug Fixing Membersearch
[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 with
22 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
23 # Suite 330, Boston, MA  02111-1307 USA
24
25 use strict;
26 use C4::Auth;
27 use C4::Output;
28 use CGI;
29 use C4::Members;
30 use C4::Branch;
31 use C4::Category;
32
33 my $input = new CGI;
34 my $quicksearch = $input->param('quicksearch');
35 my $startfrom = $input->param('startfrom')||1;
36 my $resultsperpage = $input->param('resultsperpage')||C4::Context->preference("PatronsPerPage")||20;
37
38 my ($template, $loggedinuser, $cookie);
39 if($quicksearch){
40     ($template, $loggedinuser, $cookie)
41     = get_template_and_user({template_name => "members/member-quicksearch-results.tmpl",
42                  query => $input,
43                  type => "intranet",
44                  authnotrequired => 0,
45                  flagsrequired => {borrowers => 1},
46                  });
47 } else {
48     ($template, $loggedinuser, $cookie)
49     = get_template_and_user({template_name => "members/member.tmpl",
50                  query => $input,
51                  type => "intranet",
52                  authnotrequired => 0,
53                  flagsrequired => {borrowers => 1},
54                  });
55 }
56 my $theme = $input->param('theme') || "default";
57
58 my @categories=C4::Category->all;
59 my $branches=GetBranchesLoop();
60
61 my %categories_dislay;
62
63 foreach my $category (@categories){
64         my $hash={
65                         category_description=>$$category{description},
66                         category_type=>$$category{category_type}
67                          };
68         $categories_dislay{$$category{categorycode}} = $hash;
69 }
70 $template->param( 
71         "AddPatronLists_".C4::Context->preference("AddPatronLists")=> "1",
72             );
73 if (C4::Context->preference("AddPatronLists")=~/code/){
74     $categories[0]->{'first'}=1;
75 }  
76
77 my $member=$input->param('member');
78 my $orderby=$input->param('orderby');
79 $orderby = "surname,firstname" unless $orderby;
80 $member =~ s/,//g;   #remove any commas from search string
81 $member =~ s/\*/%/g;
82
83 my ($count,$results);
84
85 my $patron = $input->Vars;
86 foreach (keys %$patron){
87         delete $$patron{$_} unless($$patron{$_}); 
88 }
89 if (C4::Context->preference("IndependantBranches")){
90    if (C4::Context->userenv && C4::Context->userenv->{flags} % 2 !=1 && C4::Context->userenv->{'branch'}){
91         $$patron{branchcode}=C4::Context->userenv->{'branch'} unless (C4::Context->userenv->{'branch'} eq "insecure");
92    }
93 }
94 $$patron{firstname}.="\%" if ($$patron{firstname});
95
96 my @searchpatron;
97 push @searchpatron, $member if ($member);
98 push @searchpatron, $patron if (keys %$patron);
99 my $from= ($startfrom-1)*$resultsperpage;
100 my $to=$from+$resultsperpage;
101  #($results)=Search(\@searchpatron,{surname=>1,firstname=>1},[$from,$to],undef,["firstname","surname","email","othernames"]  ) if (@searchpatron);
102  ($results)=Search(\@searchpatron,{surname=>1,firstname=>1},undef,undef,["firstname","surname","email","othernames"]  ) if (@searchpatron);
103 if ($results){
104         $count =scalar(@$results);
105 }
106 my @resultsdata;
107 my $to=($count>$to?$to:$count);
108 my $index=$from;
109 foreach my $borrower(@$results[$from..$to-1]){
110   #find out stats
111   my ($od,$issue,$fines)=GetMemberIssuesAndFines($$borrower{'borrowernumber'});
112
113   $$borrower{'dateexpiry'}= C4::Dates->new($$borrower{'dateexpiry'},'iso')->output('syspref');
114
115   my %row = (
116     count => $index++,
117         %$borrower,
118         %{$categories_dislay{$$borrower{categorycode}}},
119     overdues => $od,
120     issues => $issue,
121     odissue => "$od/$issue",
122     fines =>  sprintf("%.2f",$fines),
123     );
124   push(@resultsdata, \%row);
125 }
126
127 if ($$patron{branchcode}){
128         foreach my $branch (grep{$_->{value} eq $$patron{branchcode}}@$branches){
129                 $$branch{selected}=1;
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'                     => $orderby 
140                 , 'resultsperpage'      => $resultsperpage 
141         , 'type'=> 'intranet'); 
142 my $base_url =
143     'member.pl?&'
144   . join(
145     '&',
146     map { "$_=$parameters{$_}" } (keys %parameters)
147   );
148
149 $template->param(
150     paginationbar => pagination_bar(
151         $base_url,  int( $count / $resultsperpage ) + 1,
152         $startfrom, 'startfrom'
153     ),
154     startfrom => $startfrom,
155     from      => ($startfrom-1)*$resultsperpage+1,  
156     to        => $to,
157     multipage => ($count != $to+1 || $startfrom!=1),
158 );
159 $template->param(
160     branchloop=>$branches,
161         categoryloop=>\@categories,
162 );
163
164
165 $template->param( 
166         searching       => "1",
167                 %$patron,
168         numresults      => $count,
169         resultsloop     => \@resultsdata,
170             );
171
172 output_html_with_http_headers $input, $cookie, $template->output;