fix for 2336
[koha.git] / serials / subscription-bib-search.pl
blob21341dbf857858bdf454aab716c26a49786631ab
1 #!/usr/bin/perl
2 # WARNING: 4-character tab stops here
4 # Copyright 2000-2002 Katipo Communications
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA 02111-1307 USA
22 =head1 NAME
24 subscription-bib-search.pl
26 =head1 DESCRIPTION
28 this script search among all existing subscriptions.
30 =head1 PARAMETERS
32 =over 4
34 =item op
35 op use to know the operation to do on this template.
36 * do_search : to search the subscription.
38 Note that if op = do_search there are some others params specific to the search :
39 marclist,and_or,excluding,operator,value
41 =item startfrom
42 to multipage gestion.
45 =back
47 =cut
50 use strict;
52 use CGI;
53 use C4::Koha;
54 use C4::Auth;
55 use C4::Context;
56 use C4::Output;
57 use C4::Search;
58 use C4::Biblio;
60 my $input=new CGI;
61 # my $type=$query->param('type');
62 my $op = $input->param('op');
63 my $dbh = C4::Context->dbh;
65 my $startfrom=$input->param('startfrom');
66 $startfrom=0 unless $startfrom;
67 my ($template, $loggedinuser, $cookie);
68 my $resultsperpage;
70 my $query = $input->param('q');
71 # don't run the search if no search term !
72 if ($op eq "do_search" && $query) {
74 # add the itemtype limit if applicable
75 my $itemtypelimit = $input->param('itemtypelimit');
76 $query .= " AND itype=$itemtypelimit" if $itemtypelimit;
78 $resultsperpage= $input->param('resultsperpage');
79 $resultsperpage = 19 if(!defined $resultsperpage);
81 my ($error, $marcrecords, $total_hits) = SimpleSearch($query, $startfrom, $resultsperpage);
82 my $total = scalar @$marcrecords;
84 if (defined $error) {
85 $template->param(query_error => $error);
86 warn "error: ".$error;
87 output_html_with_http_headers $input, $cookie, $template->output;
88 exit;
90 my @results;
92 for(my $i=0;$i<$total;$i++) {
93 my %resultsloop;
94 my $marcrecord = MARC::File::USMARC::decode($marcrecords->[$i]);
95 my $biblio = TransformMarcToKoha(C4::Context->dbh,$marcrecord,'');
97 #build the hash for the template.
98 $resultsloop{highlight} = ($i % 2)?(1):(0);
99 $resultsloop{title} = $biblio->{'title'};
100 $resultsloop{subtitle} = $biblio->{'subtitle'};
101 $resultsloop{biblionumber} = $biblio->{'biblionumber'};
102 $resultsloop{author} = $biblio->{'author'};
103 $resultsloop{publishercode} = $biblio->{'publishercode'};
104 $resultsloop{publicationyear} = $biblio->{'publicationyear'};
106 push @results, \%resultsloop;
109 ($template, $loggedinuser, $cookie)
110 = get_template_and_user({template_name => "serials/result.tmpl",
111 query => $input,
112 type => "intranet",
113 authnotrequired => 0,
114 flagsrequired => {serials => 1},
115 flagsrequired => {catalogue => 1},
116 debug => 1,
119 # multi page display gestion
120 my $displaynext=0;
121 my $displayprev=$startfrom;
122 if(($total - (($startfrom+1)*($resultsperpage))) > 0 ){
123 $displaynext = 1;
127 my @numbers = ();
129 if ($total>$resultsperpage)
131 for (my $i=1; $i<$total/$resultsperpage+1; $i++)
133 if ($i<16)
135 my $highlight=0;
136 ($startfrom==($i-1)) && ($highlight=1);
137 push @numbers, { number => $i,
138 highlight => $highlight ,
139 searchdata=> \@results,
140 startfrom => ($i-1)};
145 my $from = $startfrom*$resultsperpage+1;
146 my $to;
148 if($total < (($startfrom+1)*$resultsperpage))
150 $to = $total;
151 } else {
152 $to = (($startfrom+1)*$resultsperpage);
154 $template->param(
155 query => $query,
156 resultsloop => \@results,
157 startfrom=> $startfrom,
158 displaynext=> $displaynext,
159 displayprev=> $displayprev,
160 resultsperpage => $resultsperpage,
161 startfromnext => $startfrom+1,
162 startfromprev => $startfrom-1,
163 total=>$total,
164 from=>$from,
165 to=>$to,
166 numbers=>\@numbers,
168 } # end of if ($op eq "do_search" & $query)
169 elsif ($op eq "do_search") {
170 ($template, $loggedinuser, $cookie)
171 = get_template_and_user({template_name => "serials/subscription-bib-search.tmpl",
172 query => $input,
173 type => "intranet",
174 authnotrequired => 0,
175 flagsrequired => {catalogue => 1, serials=>1},
176 debug => 1,
178 # load the itemtypes
179 my $itemtypes = GetItemTypes;
180 my @itemtypesloop;
181 my $selected=1;
182 my $cnt;
183 foreach my $thisitemtype ( sort {$itemtypes->{$a}->{'description'} cmp $itemtypes->{$b}->{'description'} } keys %$itemtypes ) {
184 my %row =(
185 code => $thisitemtype,
186 selected => $selected,
187 description => $itemtypes->{$thisitemtype}->{'description'},
189 $selected = 0 if ($selected) ;
190 push @itemtypesloop, \%row;
192 $template->param(itemtypeloop => \@itemtypesloop);
193 $template->param("no_query" => 1);
195 else {
196 ($template, $loggedinuser, $cookie)
197 = get_template_and_user({template_name => "serials/subscription-bib-search.tmpl",
198 query => $input,
199 type => "intranet",
200 authnotrequired => 0,
201 flagsrequired => {catalogue => 1, serials=>1},
202 debug => 1,
204 # load the itemtypes
205 my $itemtypes = GetItemTypes;
206 my @itemtypesloop;
207 my $selected=1;
208 my $cnt;
209 foreach my $thisitemtype ( sort {$itemtypes->{$a}->{'description'} cmp $itemtypes->{$b}->{'description'} } keys %$itemtypes ) {
210 my %row =(
211 code => $thisitemtype,
212 selected => $selected,
213 description => $itemtypes->{$thisitemtype}->{'description'},
215 $selected = 0 if ($selected) ;
216 push @itemtypesloop, \%row;
218 $template->param(itemtypeloop => \@itemtypesloop);
219 $template->param("no_query" => 0);
222 # Print the page
223 output_html_with_http_headers $input, $cookie, $template->output;
225 # Local Variables:
226 # tab-width: 4
227 # End: