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
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
24 subscription-bib-search.pl
28 this script search among all existing subscriptions.
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
62 # my $type=$query->param('type');
63 my $op = $input->param('op') || q{};
64 my $dbh = C4
::Context
->dbh;
66 my $startfrom=$input->param('startfrom');
67 $startfrom=0 unless $startfrom;
68 my ($template, $loggedinuser, $cookie);
71 my $query = $input->param('q');
72 # don't run the search if no search term !
73 if ($op eq "do_search" && $query) {
75 # add the itemtype limit if applicable
76 my $itemtypelimit = $input->param('itemtypelimit');
77 if ( $itemtypelimit ) {
78 my $index = C4
::Context
->preference("item-level_itypes") ?
'itype' : 'itemtype';
79 $query .= " AND $index=$itemtypelimit";
82 $resultsperpage= $input->param('resultsperpage');
83 $resultsperpage = 20 if(!defined $resultsperpage);
85 my ($error, $marcrecords, $total_hits) = SimpleSearch
($query, $startfrom*$resultsperpage, $resultsperpage);
86 my $total = scalar @
$marcrecords;
89 $template->param(query_error
=> $error);
90 warn "error: ".$error;
91 output_html_with_http_headers
$input, $cookie, $template->output;
96 for(my $i=0;$i<$total;$i++) {
98 my $marcrecord = MARC
::File
::USMARC
::decode
($marcrecords->[$i]);
99 my $biblio = TransformMarcToKoha
(C4
::Context
->dbh,$marcrecord,'');
101 #build the hash for the template.
102 $resultsloop{highlight
} = ($i % 2)?
(1):(0);
103 $resultsloop{title
} = $biblio->{'title'};
104 $resultsloop{subtitle
} = $biblio->{'subtitle'};
105 $resultsloop{biblionumber
} = $biblio->{'biblionumber'};
106 $resultsloop{author
} = $biblio->{'author'};
107 $resultsloop{publishercode
} = $biblio->{'publishercode'};
108 $resultsloop{publicationyear
} = $biblio->{'publicationyear'};
110 push @results, \
%resultsloop;
113 ($template, $loggedinuser, $cookie)
114 = get_template_and_user
({template_name
=> "serials/result.tmpl",
117 authnotrequired
=> 0,
118 flagsrequired
=> {serials
=> 1},
119 flagsrequired
=> {catalogue
=> 1},
123 # multi page display gestion
125 my $displayprev=$startfrom;
126 if(($total_hits - (($startfrom+1)*($resultsperpage))) > 0 ){
133 if ($total_hits>$resultsperpage)
135 for (my $i=1; $i<$total/$resultsperpage+1; $i++)
140 ($startfrom==($i-1)) && ($highlight=1);
141 push @numbers, { number
=> $i,
142 highlight
=> $highlight ,
143 searchdata
=> \
@results,
144 startfrom
=> ($i-1)};
150 $from = $startfrom*$resultsperpage+1 if($total_hits > 0);
153 if($total_hits < (($startfrom+1)*$resultsperpage))
157 $to = (($startfrom+1)*$resultsperpage);
161 resultsloop
=> \
@results,
162 startfrom
=> $startfrom,
163 displaynext
=> $displaynext,
164 displayprev
=> $displayprev,
165 resultsperpage
=> $resultsperpage,
166 startfromnext
=> $startfrom+1,
167 startfromprev
=> $startfrom-1,
173 } # end of if ($op eq "do_search" & $query)
174 elsif ($op eq "do_search") {
175 ($template, $loggedinuser, $cookie)
176 = get_template_and_user
({template_name
=> "serials/subscription-bib-search.tmpl",
179 authnotrequired
=> 0,
180 flagsrequired
=> {catalogue
=> 1, serials
=>1},
184 my $itemtypes = GetItemTypes
;
188 foreach my $thisitemtype ( sort {$itemtypes->{$a}->{'description'} cmp $itemtypes->{$b}->{'description'} } keys %$itemtypes ) {
190 code
=> $thisitemtype,
191 selected
=> $selected,
192 description
=> $itemtypes->{$thisitemtype}->{'description'},
194 $selected = 0 if ($selected) ;
195 push @itemtypesloop, \
%row;
197 $template->param(itemtypeloop
=> \
@itemtypesloop);
198 $template->param("no_query" => 1);
201 ($template, $loggedinuser, $cookie)
202 = get_template_and_user
({template_name
=> "serials/subscription-bib-search.tmpl",
205 authnotrequired
=> 0,
206 flagsrequired
=> {catalogue
=> 1, serials
=>1},
210 my $itemtypes = GetItemTypes
;
214 foreach my $thisitemtype ( sort {$itemtypes->{$a}->{'description'} cmp $itemtypes->{$b}->{'description'} } keys %$itemtypes ) {
216 code
=> $thisitemtype,
217 selected
=> $selected,
218 description
=> $itemtypes->{$thisitemtype}->{'description'},
220 $selected = 0 if ($selected) ;
221 push @itemtypesloop, \
%row;
223 $template->param(itemtypeloop
=> \
@itemtypesloop);
224 $template->param("no_query" => 0);
228 output_html_with_http_headers
$input, $cookie, $template->output;