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
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.
22 use vars
qw($debug $cgi_debug);
25 use List::Util qw( max min );
28 use C4
::Auth
qw(get_template_and_user);
29 use C4
::Output
qw(output_html_with_http_headers);
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);
40 $debug = $debug || $cgi_debug;
43 import Data
::Dumper
qw(Dumper);
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);
56 $total_hits, $orderby, $results, $total, $error,
57 $marcresults, $idx, $datefrom, $dateto, $ccl_textbox
59 my $resultsperpage = C4
::Context
->preference('numSearchResults') || '20';
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');
79 $datefrom = C4
::Dates
->new($datefrom);
80 $ccl_query .= ' and ' if $ccl_textbox;
82 "acqdate,st-date-normalized,ge=" . $datefrom->output("iso");
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};
99 $debug and warn "ERROR label-item-search: no results from SimpleSearch";
101 # leave $show_results undef
106 my $hits = $show_results;
107 my @results_set = ();
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++ ) {
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'}) {
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);
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",
151 authnotrequired
=> 0,
152 flagsrequired
=> { borrowers
=> 1 },
153 flagsrequired
=> { catalogue
=> 1 },
158 # build page nav stuff.
159 my ( @field_data, @numbers );
160 $total = $total_hits;
162 my ( $from, $to, $startfromnext, $startfromprev, $displaynext,
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;
172 startfrom
=> $startfrm
177 $startfromprev = $startfrom - $resultsperpage;
178 $startfromnext = $startfrom + $resultsperpage;
181 $startfrom + $resultsperpage > $total
183 : $startfrom + $resultsperpage - 1;
187 $displayprev = $startfrom > 1 ?
$startfrom : 0;
189 $displaynext = 1 if $to < $total_hits;
198 total
=> $total_hits,
201 startfromnext
=> $startfromnext,
202 startfromprev
=> $startfromprev,
203 startfrom
=> $startfrom,
204 displaynext
=> $displaynext,
205 displayprev
=> $displayprev,
206 resultsperpage
=> $resultsperpage,
207 numbers
=> \
@numbers,
211 results
=> ($show_results ?
1 : 0),
212 result_set
=> \
@results_set,
213 batch_id
=> $batch_id,
216 ccl_query
=> $ccl_query,
225 ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
227 template_name
=> "labels/search.tmpl",
230 authnotrequired
=> 0,
231 flagsrequired
=> { catalogue
=> 1 },
235 my $itemtypes = GetItemTypes
;
237 foreach my $thisitemtype ( keys %$itemtypes ) {
239 value
=> $thisitemtype,
240 description
=> $itemtypes->{$thisitemtype}->{'description'},
242 push @itemtypeloop, \
%row;
245 itemtypeloop
=> \
@itemtypeloop,
246 batch_id
=> $batch_id,
253 $template->param( DHTMLcalendar_dateformat
=> C4
::Dates
->DHTMLcalendar(), );
254 output_html_with_http_headers
$query, $cookie, $template->output;