added serials help files
[koha.git] / labels / pcard-member-search.pl
blobb269a5ca91e4be9f6595692bcdeeac938787da34
1 #!/usr/bin/perl
4 #script to do a borrower enquiry/bring up borrower details etc
5 #written 20/12/99 by chris@katipo.co.nz
8 # Copyright 2000-2002 Katipo Communications
10 # This file is part of Koha.
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.
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.
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
25 use strict;
26 use C4::Auth;
27 use C4::Output;
28 use CGI;
29 use C4::Members;
30 use C4::Debug;
33 my $input = new CGI;
34 my $batch_id = $input->param('batch_id');
35 my $batch_type = $input->param('type');
37 $debug and warn "[In pcard-member-search] Batch Id: $batch_id, and Type: $batch_type";
39 my $quicksearch = $input->param('quicksearch');
40 my $startfrom = $input->param('startfrom')||1;
41 my $resultsperpage = $input->param('resultsperpage')||C4::Context->preference("PatronsPerPage")||20;
42 my $category = $input->param('category');
44 my ($template, $loggedinuser, $cookie);
45 if($quicksearch){
46 ($template, $loggedinuser, $cookie)
47 = get_template_and_user({template_name => "members/member-quicksearch-results.tmpl", # FIXME: template doesn't exist
48 query => $input,
49 type => "intranet",
50 authnotrequired => 0,
51 flagsrequired => {borrowers => 1},
52 debug => 1,
53 });
54 } else {
55 ($template, $loggedinuser, $cookie)
56 = get_template_and_user({template_name => "labels/pcard-members-search.tmpl",
57 query => $input,
58 type => "intranet",
59 authnotrequired => 0,
60 flagsrequired => {borrowers => 1},
61 debug => 1,
62 });
64 my $theme = $input->param('theme') || "default";
65 # only used if allowthemeoverride is set
66 #my %tmpldata = pathtotemplate ( template => 'member.tmpl', theme => $theme, language => 'fi' );
67 # FIXME - Error-checking
68 #my $template = HTML::Template->new( filename => $tmpldata{'path'},
69 # die_on_bad_params => 0,
70 # loop_context_vars => 1 );
73 my $member=$input->param('member');
74 my $orderby=$input->param('orderby');
75 $orderby = "surname,firstname" unless $orderby;
76 $member =~ s/,//g; #remove any commas from search string
77 $member =~ s/\*/%/g;
79 unless ($member||$category) {
80 $template->param( batch_id => $batch_id, type => $batch_type,);
81 output_html_with_http_headers $input, $cookie, $template->output;
82 exit;
85 my ($count,$results);
87 if(length($member) == 1)
89 ($count,$results)=SearchMember($member,$orderby,"simple");
91 else
93 ($count,$results)=SearchMember($member,$orderby,"advanced",$category);
97 my @resultsdata;
98 my $to=($count>($startfrom*$resultsperpage)?$startfrom*$resultsperpage:$count);
99 for (my $i=($startfrom-1)*$resultsperpage; $i < $to; $i++){
100 #find out stats
101 my ($od,$issue,$fines)=GetMemberIssuesAndFines($results->[$i]{'borrowernumber'});
103 my %row = (
104 count => $i+1,
105 borrowernumber => $results->[$i]{'borrowernumber'},
106 cardnumber => $results->[$i]{'cardnumber'},
107 surname => $results->[$i]{'surname'},
108 firstname => $results->[$i]{'firstname'},
109 categorycode => $results->[$i]{'categorycode'},
110 category_type => $results->[$i]{'category_type'},
111 category_description => $results->[$i]{'description'},
112 address => $results->[$i]{'address'},
113 address2 => $results->[$i]{'address2'},
114 city => $results->[$i]{'city'},
115 zipcode => $results->[$i]{'zipcode'},
116 country => $results->[$i]{'country'},
117 branchcode => $results->[$i]{'branchcode'},
118 overdues => $od,
119 issues => $issue,
120 odissue => "$od/$issue",
121 fines => sprintf("%.2f",$fines),
122 borrowernotes => $results->[$i]{'borrowernotes'},
123 sort1 => $results->[$i]{'sort1'},
124 sort2 => $results->[$i]{'sort2'},
125 dateexpiry => C4::Dates->new($results->[$i]{'dateexpiry'},'iso')->output('syspref'),
127 push(@resultsdata, \%row);
129 my $base_url =
130 'pcard-member-search.pl?'
131 . join(
132 '&amp;',
133 map { $_->{term} . '=' . $_->{val} } (
134 { term => 'member', val => $member },
135 { term => 'category', val => $category },
136 { term => 'orderby', val => $orderby },
137 { term => 'resultsperpage', val => $resultsperpage },
138 { term => 'type', val => $batch_type },
139 { term => 'batch_id', val => $batch_id },
143 $template->param(
144 paginationbar => pagination_bar(
145 $base_url, int( $count / $resultsperpage ) + 1,
146 $startfrom, 'startfrom'
148 startfrom => $startfrom,
149 from => ($startfrom-1)*$resultsperpage+1,
150 to => $to,
151 multipage => ($count != $to || $startfrom!=1),
154 $template->param(
155 searching => "1",
156 member => $member,
157 category_type => $category,
158 numresults => $count,
159 resultsloop => \@resultsdata,
160 batch_id => $batch_id,
161 type => $batch_type,
164 output_html_with_http_headers $input, $cookie, $template->output;