Bug 1980: some cleanup, getting ready to add pagination to label-item-search.pl
[koha.git] / labels / label-item-search.pl
1 #!/usr/bin/perl
2 # WARNING: 4-character tab stops here
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
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.
12 #
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.
16 #
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
20
21 use strict;
22 use CGI;
23 use C4::Auth;
24 use HTML::Template::Pro;
25 use C4::Context;
26 use C4::Search;
27 use C4::Auth;
28 use C4::Output;
29 use C4::Biblio;
30 use C4::Items;
31 use C4::Acquisition;
32 use C4::Search;
33 use C4::Dates qw( DHTMLcalendar );
34 use C4::Koha;    # XXX subfield_is_koha_internal_p
35
36 #use Smart::Comments;
37 use Data::Dumper;
38
39 # Creates a scrolling list with the associated default value.
40 # Using more than one scrolling list in a CGI assigns the same default value to all the
41 # scrolling lists on the page !?!? That's why this function was written.
42
43 my $query           = new CGI;
44 my $type            = $query->param('type');
45 my $op              = $query->param('op');
46 my $batch_id        = $query->param('batch_id');
47 my $dateaccessioned = $query->param('dateaccessioned');
48
49 my $dbh = C4::Context->dbh;
50
51 my $startfrom = $query->param('startfrom') || 0;
52 my ( $template, $loggedinuser, $cookie );
53 my (@marclist,@and_or,@excluding,@operator,@value,$orderby,@tags,$results,$total,$error,$marcresults);
54 my $resultsperpage = $query->param('resultsperpage') || 19;
55
56 my $show_results = 0;
57 if ( $op eq "do_search" ) {
58     @marclist  = $query->param('marclist');
59     @and_or    = $query->param('and_or');
60     @excluding = $query->param('excluding');
61     @operator  = $query->param('operator');
62     @value     = $query->param('value');
63     $orderby   = $query->param('orderby');
64         if (scalar @marclist) {
65       #catalogsearch( $dbh, \@tags, \@and_or, \@excluding, \@operator, \@value,
66       #  $startfrom * $resultsperpage,
67       #  $resultsperpage, $orderby );
68                 ($error, $marcresults) = SimpleSearch($marclist[0]);
69                 if ($marcresults) {
70                         $show_results = scalar @$marcresults;
71                 } else {
72                         warn "ERROR label-item-search: no results from SimpleSearch";
73                         # leave $show_results undef
74                 }
75         }
76 }
77
78 if ( $show_results ) {
79         my $hits = $show_results;
80         my (@results,@results2);
81     # This code needs to be refactored using these subs...
82     #my @items = &GetItemsInfo( $biblio->{biblionumber}, 'intra' );
83     #my $dat = &GetBiblioData( $biblio->{biblionumber} );
84         for(my $i=0; $i<$hits; $i++) {
85         #DEBUG Notes: Decode the MARC record from each resulting MARC record...
86             my $marcrecord = MARC::File::USMARC::decode($marcresults->[$i]);
87         #DEBUG Notes: Transform it to Koha form...
88             my $biblio = TransformMarcToKoha(C4::Context->dbh,$marcrecord,'');
89             #build the hash for the template.
90             $biblio->{highlight}       = ($i % 2)?(1):(0);
91         #DEBUG Notes: Stuff it into @results... (used below to supply fields not existing in the item data)
92         push @results, $biblio;
93             my $biblionumber = $biblio->{'biblionumber'};
94         #DEBUG Notes: Grab the item numbers associated with this MARC record...
95         my $itemnums = get_itemnumbers_of($biblionumber);
96         #DEBUG Notes: Retrieve the item data for each number... 
97         my $iii = $itemnums->{$biblionumber};
98             if ($iii) {
99             my @titem_results = GetItemsInfo( $itemnums->{$biblionumber}, 'intra' );
100                 my $item_results =  GetItemInfosOf( @$iii );
101                 foreach my $item (keys %$item_results) {
102                 for my $bibdata (keys %{$results[$i]}) {
103                     if ( !$item_results->{$item}{$bibdata} ) {      #Only add the data from the bibliodata if the data does not already exit in itemdata.
104                         #Otherwise we just build duplicate records rather than unique records per item.
105                         $item_results->{$item}{$bibdata} = $results[$i]->{$bibdata};
106                     }
107                 }
108                 #DEBUG Notes: After merging the bib and item data, stuff the results into $results2...
109                 push @results2, $item_results->{$item};
110             }
111             #warn Dumper(@results2);
112             }
113     }
114   
115   ( $template, $loggedinuser, $cookie ) = get_template_and_user(
116         {
117             template_name   => "labels/result.tmpl",
118             query           => $query,
119             type            => "intranet",
120             authnotrequired => 0,
121             flagsrequired   => { borrowers => 1 },
122             flagsrequired   => { catalogue => 1 },
123             debug           => 1,
124         }
125     );
126
127     # multi page display gestion
128     my $displaynext = 0;
129     my $displayprev = $startfrom;
130     if ( ( $total - ( ( $startfrom + 1 ) * ($resultsperpage) ) ) > 0 ) {
131         $displaynext = 1;
132     }
133
134     my @field_data = ();
135
136         # FIXME: this relies on symmetric order of CGI params that IS NOT GUARANTEED by spec.
137
138     for ( my $i = 0 ; $i <= $#marclist ; $i++ ) {
139         push @field_data, { term => "marclist",  val => $marclist[$i] };
140         push @field_data, { term => "and_or",    val => $and_or[$i] };
141         push @field_data, { term => "excluding", val => $excluding[$i] };
142         push @field_data, { term => "operator",  val => $operator[$i] };
143         push @field_data, { term => "value",     val => $value[$i] };
144     }
145
146     my @numbers = ();
147     if ( $total > $resultsperpage ) {
148         for ( my $i = 1 ; $i < $total / $resultsperpage + 1 ; $i++ ) {
149             if ( $i < 16 ) {
150                 my $highlight = 0;
151                 ( $startfrom == ( $i - 1 ) ) && ( $highlight = 1 );
152                 push @numbers,
153                   {
154                     number     => $i,
155                     highlight  => $highlight,
156                     searchdata => \@field_data,
157                     startfrom  => ( $i - 1 )
158                   };
159             }
160         }
161     }
162
163     my $from = $startfrom * $resultsperpage + 1;
164         my $temp = ( $startfrom + 1 ) * $resultsperpage;
165     my $to   = ($total < $temp) ? $total : $temp;
166
167     $template->param(
168         result         => \@results2,
169         startfrom      => $startfrom,
170         displaynext    => $displaynext,
171         displayprev    => $displayprev,
172         resultsperpage => $resultsperpage,
173         startfromnext  => $startfrom + 1,
174         startfromprev  => $startfrom - 1,
175         searchdata     => \@field_data,
176         total          => $total,
177         from           => $from,
178         to             => $to,
179         numbers        => \@numbers,
180         batch_id       => $batch_id,
181         type           => $type,
182     );
183 }
184
185 #
186 #   search section
187 #
188
189 else {
190     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
191         {
192             template_name   => "labels/search.tmpl",
193             query           => $query,
194             type            => "intranet",
195             authnotrequired => 0,
196             flagsrequired   => { catalogue => 1 },
197             debug           => 1,
198         }
199     );
200
201    #using old rel2.2 getitemtypes for testing!!!!, not devweek's GetItemTypes()
202
203     my $itemtypes = GetItemTypes;
204     my @itemtypeloop;
205     my ($thisitemtype );
206     foreach my $thisitemtype (keys %$itemtypes) {
207             my %row =(value => $thisitemtype,
208                            description => $itemtypes->{$thisitemtype}->{'description'},
209                             );  
210             push @itemtypeloop, \%row;
211     }  
212     $template->param(
213     itemtypeloop =>\@itemtypeloop,
214     batch_id     => $batch_id,
215     type         => $type,
216     );
217
218 }
219 # Print the page
220 $template->param(
221     DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
222 );
223 output_html_with_http_headers $query, $cookie, $template->output;
224
225 # Local Variables:
226 # tab-width: 4
227 # End: