Bug 7108 - OPAC Translations Display Patch
[koha.git] / labels / label-item-search.pl
blob9b920094cf1a92c030608aff44b1b11b249fb88b
1 #!/usr/bin/perl
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 use strict;
21 use warnings;
22 use vars qw($debug $cgi_debug);
24 use CGI;
25 use List::Util qw( max min );
26 use POSIX qw(ceil);
28 use C4::Auth qw(get_template_and_user);
29 use C4::Output qw(output_html_with_http_headers);
30 use C4::Context;
31 use C4::Dates;
32 use C4::Search qw(SimpleSearch);
33 use C4::Biblio qw(TransformMarcToKoha);
34 use C4::Items qw(GetItemInfosOf get_itemnumbers_of);
35 use C4::Koha qw(GetItemTypes); # XXX subfield_is_koha_internal_p
36 use C4::Creators::Lib qw(html_table);
37 use C4::Debug;
39 BEGIN {
40 $debug = $debug || $cgi_debug;
41 if ($debug) {
42 require Data::Dumper;
43 import Data::Dumper qw(Dumper);
47 my $query = new CGI;
49 my $type = $query->param('type');
50 my $op = $query->param('op') || '';
51 my $batch_id = $query->param('batch_id');
52 my $ccl_query = $query->param('ccl_query');
53 my $startfrom = $query->param('startfrom') || 1;
54 my ($template, $loggedinuser, $cookie) = (undef, undef, undef);
55 my (
56 $total_hits, $orderby, $results, $total, $error,
57 $marcresults, $idx, $datefrom, $dateto, $ccl_textbox
59 my $resultsperpage = C4::Context->preference('numSearchResults') || '20';
60 my $show_results = 0;
61 my $display_columns = [ {_add => {label => "Add Item", link_field => 1}},
62 {_item_call_number => {label => "Call Number", link_field => 0}},
63 {_date_accessioned => {label => "Accession Date", link_field => 0}},
64 {_barcode => {label => "Barcode", link_field => 0}},
65 {select => {label => "Select", value => "_item_number"}},
68 if ( $op eq "do_search" ) {
69 $idx = $query->param('idx');
70 $ccl_textbox = $query->param('ccl_textbox');
71 if ( $ccl_textbox && $idx ) {
72 $ccl_query = "$idx=$ccl_textbox";
75 $datefrom = $query->param('datefrom');
76 $dateto = $query->param('dateto');
78 if ($datefrom) {
79 $datefrom = C4::Dates->new($datefrom);
80 $ccl_query .= ' and ' if $ccl_textbox;
81 $ccl_query .=
82 "acqdate,st-date-normalized,ge=" . $datefrom->output("iso");
85 if ($dateto) {
86 $dateto = C4::Dates->new($dateto);
87 $ccl_query .= ' and ' if ( $ccl_textbox || $datefrom );
88 $ccl_query .= "acqdate,st-date-normalized,le=" . $dateto->output("iso");
91 my $offset = $startfrom > 1 ? $startfrom - 1 : 0;
92 ( $error, $marcresults, $total_hits ) =
93 SimpleSearch( $ccl_query, $offset, $resultsperpage );
95 if (!defined $error && @{$marcresults} ) {
96 $show_results = @{$marcresults};
98 else {
99 $debug and warn "ERROR label-item-search: no results from SimpleSearch";
101 # leave $show_results undef
105 if ($show_results) {
106 my $hits = $show_results;
107 my @results_set = ();
108 my @items =();
109 # This code needs to be refactored using these subs...
110 #my @items = &GetItemsInfo( $biblio->{biblionumber}, 'intra' );
111 #my $dat = &GetBiblioData( $biblio->{biblionumber} );
112 for ( my $i = 0 ; $i < $hits ; $i++ ) {
113 my @row_data= ();
114 #DEBUG Notes: Decode the MARC record from each resulting MARC record...
115 my $marcrecord = MARC::File::USMARC::decode( $marcresults->[$i] );
116 #DEBUG Notes: Transform it to Koha form...
117 my $biblio = TransformMarcToKoha( C4::Context->dbh, $marcrecord, '' );
118 #DEBUG Notes: Stuff the bib into @biblio_data...
119 push (@results_set, $biblio);
120 my $biblionumber = $biblio->{'biblionumber'};
121 #DEBUG Notes: Grab the item numbers associated with this MARC record...
122 my $itemnums = get_itemnumbers_of($biblionumber);
123 #DEBUG Notes: Retrieve the item data for each number...
124 if (my $iii = $itemnums->{$biblionumber}) {
125 my $item_results = GetItemInfosOf(@$iii);
126 foreach my $item ( keys %$item_results ) {
127 #DEBUG Notes: Build an array element 'item' of the correct bib (results) hash which contains item-specific data...
128 if ($item_results->{$item}->{'biblionumber'} eq $results_set[$i]->{'biblionumber'}) {
129 my $item_data;
130 $item_data->{'_item_number'} = $item_results->{$item}->{'itemnumber'};
131 $item_data->{'_item_call_number'} = ($item_results->{$item}->{'itemcallnumber'} ? $item_results->{$item}->{'itemcallnumber'} : 'NA');
132 $item_data->{'_date_accessioned'} = $item_results->{$item}->{'dateaccessioned'};
133 $item_data->{'_barcode'} = ( $item_results->{$item}->{'barcode'} ? $item_results->{$item}->{'barcode'} : 'NA');
134 $item_data->{'_add'} = $item_results->{$item}->{'itemnumber'};
135 unshift (@row_data, $item_data); # item numbers are given to us in descending order by get_itemnumbers_of()...
138 $results_set[$i]->{'item_table'} = html_table($display_columns, \@row_data);
140 else {
141 # FIXME: Some error trapping code needed
142 warn sprintf('No item numbers retrieved for biblio number: %s', $biblionumber);
146 ( $template, $loggedinuser, $cookie ) = get_template_and_user(
148 template_name => "labels/result.tmpl",
149 query => $query,
150 type => "intranet",
151 authnotrequired => 0,
152 flagsrequired => { borrowers => 1 },
153 flagsrequired => { catalogue => 1 },
154 debug => 1,
158 # build page nav stuff.
159 my ( @field_data, @numbers );
160 $total = $total_hits;
162 my ( $from, $to, $startfromnext, $startfromprev, $displaynext,
163 $displayprev );
165 if ( $total > $resultsperpage ) {
166 my $num_of_pages = ceil( $total / $resultsperpage + 1 );
167 for ( my $page = 1 ; $page < $num_of_pages ; $page++ ) {
168 my $startfrm = ( ( $page - 1 ) * $resultsperpage ) + 1;
169 push @numbers,
171 number => $page,
172 startfrom => $startfrm
176 $from = $startfrom;
177 $startfromprev = $startfrom - $resultsperpage;
178 $startfromnext = $startfrom + $resultsperpage;
180 $to =
181 $startfrom + $resultsperpage > $total
182 ? $total
183 : $startfrom + $resultsperpage - 1;
185 # multi page display
186 $displaynext = 0;
187 $displayprev = $startfrom > 1 ? $startfrom : 0;
189 $displaynext = 1 if $to < $total_hits;
192 else {
193 $displayprev = 0;
194 $displaynext = 0;
197 $template->param(
198 total => $total_hits,
199 from => $from,
200 to => $to,
201 startfromnext => $startfromnext,
202 startfromprev => $startfromprev,
203 startfrom => $startfrom,
204 displaynext => $displaynext,
205 displayprev => $displayprev,
206 resultsperpage => $resultsperpage,
207 numbers => \@numbers,
210 $template->param(
211 results => ($show_results ? 1 : 0),
212 result_set=> \@results_set,
213 batch_id => $batch_id,
214 type => $type,
215 idx => $idx,
216 ccl_query => $ccl_query,
221 # search section
224 else {
225 ( $template, $loggedinuser, $cookie ) = get_template_and_user(
227 template_name => "labels/search.tmpl",
228 query => $query,
229 type => "intranet",
230 authnotrequired => 0,
231 flagsrequired => { catalogue => 1 },
232 debug => 1,
235 my $itemtypes = GetItemTypes;
236 my @itemtypeloop;
237 foreach my $thisitemtype ( keys %$itemtypes ) {
238 my %row = (
239 value => $thisitemtype,
240 description => $itemtypes->{$thisitemtype}->{'description'},
242 push @itemtypeloop, \%row;
244 $template->param(
245 itemtypeloop => \@itemtypeloop,
246 batch_id => $batch_id,
247 type => $type,
252 # Print the page
253 $template->param( DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(), );
254 output_html_with_http_headers $query, $cookie, $template->output;