Bug 17074: Fix links in result list of 'scan indexes' and keep search term visible
[koha.git] / catalogue / moredetail.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2003 Katipo Communications
4 # parts copyright 2010 BibLibre
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21
22 use strict;
23 #use warnings; FIXME - Bug 2505
24 use C4::Koha;
25 use CGI qw ( -utf8 );
26 use HTML::Entities;
27 use C4::Biblio;
28 use C4::Items;
29 use C4::Branch;
30 use C4::Acquisition;
31 use C4::Output;
32 use C4::Auth;
33 use C4::Serials;
34 use C4::Members; # to use GetMember
35 use C4::Search;         # enabled_staff_search_views
36 use C4::Members qw/GetHideLostItemsPreference/;
37 use C4::Reserves qw(GetReservesFromBiblionumber);
38
39 use Koha::Acquisition::Bookseller;
40 use Koha::DateUtils;
41 use Koha::Items;
42
43 my $query=new CGI;
44
45 my ($template, $loggedinuser, $cookie) = get_template_and_user(
46     {
47         template_name   => 'catalogue/moredetail.tt',
48         query           => $query,
49         type            => "intranet",
50         authnotrequired => 0,
51         flagsrequired   => { catalogue => 1 },
52     }
53 );
54
55 if($query->cookie("holdfor")){ 
56     my $holdfor_patron = GetMember('borrowernumber' => $query->cookie("holdfor"));
57     $template->param(
58         holdfor => $query->cookie("holdfor"),
59         holdfor_surname => $holdfor_patron->{'surname'},
60         holdfor_firstname => $holdfor_patron->{'firstname'},
61         holdfor_cardnumber => $holdfor_patron->{'cardnumber'},
62     );
63 }
64
65 my $hidepatronname = C4::Context->preference("HidePatronName");
66
67 # get variables
68
69 my $biblionumber=$query->param('biblionumber');
70 $biblionumber = HTML::Entities::encode($biblionumber);
71 my $title=$query->param('title');
72 my $bi=$query->param('bi');
73 $bi = $biblionumber unless $bi;
74 my $itemnumber = $query->param('itemnumber');
75 my $data = &GetBiblioData($biblionumber);
76 my $dewey = $data->{'dewey'};
77 my $showallitems = $query->param('showallitems');
78
79 #coping with subscriptions
80 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
81
82 # FIXME Dewey is a string, not a number, & we should use a function
83 # $dewey =~ s/0+$//;
84 # if ($dewey eq "000.") { $dewey = "";};
85 # if ($dewey < 10){$dewey='00'.$dewey;}
86 # if ($dewey < 100 && $dewey > 10){$dewey='0'.$dewey;}
87 # if ($dewey <= 0){
88 #      $dewey='';
89 # }
90 # $dewey=~ s/\.$//;
91 # $data->{'dewey'}=$dewey;
92
93 my $fw = GetFrameworkCode($biblionumber);
94 my @all_items= GetItemsInfo($biblionumber);
95 my @items;
96 for my $itm (@all_items) {
97     push @items, $itm unless ( $itm->{itemlost} && 
98                                GetHideLostItemsPreference($loggedinuser) &&
99                                !$showallitems && 
100                                ($itemnumber != $itm->{itemnumber}));
101 }
102
103 my $record=GetMarcBiblio($biblionumber);
104
105 my $hostrecords;
106 # adding items linked via host biblios
107 my @hostitems = GetHostItemsInfo($record);
108 if (@hostitems){
109         $hostrecords =1;
110         push (@items,@hostitems);
111 }
112
113 my $subtitle = GetRecordValue('subtitle', $record, $fw);
114
115 my $totalcount=@all_items;
116 my $showncount=@items;
117 my $hiddencount = $totalcount - $showncount;
118 $data->{'count'}=$totalcount;
119 $data->{'showncount'}=$showncount;
120 $data->{'hiddencount'}=$hiddencount;  # can be zero
121
122 my $ccodes= GetKohaAuthorisedValues('items.ccode',$fw);
123 my $copynumbers = GetKohaAuthorisedValues('items.copynumber',$fw);
124 my $itemtypes = GetItemTypes;
125
126 $data->{'itemtypename'} = $itemtypes->{$data->{'itemtype'}}->{'translated_description'};
127 $data->{'rentalcharge'} = sprintf( "%.2f", $data->{'rentalcharge'} );
128 foreach ( keys %{$data} ) {
129     $template->param( "$_" => defined $data->{$_} ? $data->{$_} : '' );
130 }
131
132 ($itemnumber) and @items = (grep {$_->{'itemnumber'} == $itemnumber} @items);
133 foreach my $item (@items){
134     $item->{object} = Koha::Items->find( $item->{itemnumber} );
135     $item->{'collection'}              = $ccodes->{ $item->{ccode} } if ($ccodes);
136     $item->{'itype'}                   = $itemtypes->{ $item->{'itype'} }->{'translated_description'};
137     $item->{'replacementprice'}        = sprintf( "%.2f", $item->{'replacementprice'} );
138     if ( defined $item->{'copynumber'} ) {
139         $item->{'displaycopy'} = 1;
140         if ( defined $copynumbers->{ $item->{'copynumber'} } ) {
141             $item->{'copyvol'} = $copynumbers->{ $item->{'copynumber'} }
142         }
143         else {
144             $item->{'copyvol'} = $item->{'copynumber'};
145         }
146     }
147
148     # item has a host number if its biblio number does not match the current bib
149     if ($item->{biblionumber} ne $biblionumber){
150         $item->{hostbiblionumber} = $item->{biblionumber};
151         $item->{hosttitle} = GetBiblioData($item->{biblionumber})->{title};
152     }
153
154     my $order  = GetOrderFromItemnumber( $item->{'itemnumber'} );
155     $item->{'ordernumber'}             = $order->{'ordernumber'};
156     $item->{'basketno'}                = $order->{'basketno'};
157     $item->{'orderdate'}               = $order->{'entrydate'};
158     if ($item->{'basketno'}){
159             my $basket = GetBasket($item->{'basketno'});
160         my $bookseller = Koha::Acquisition::Bookseller->fetch({ id => $basket->{booksellerid} });
161             $item->{'vendor'} = $bookseller->{'name'};
162     }
163     $item->{'invoiceid'}               = $order->{'invoiceid'};
164     if($item->{invoiceid}) {
165         my $invoice = GetInvoice($item->{invoiceid});
166         $item->{invoicenumber} = $invoice->{invoicenumber} if $invoice;
167     }
168     $item->{'datereceived'}            = $order->{'datereceived'};
169
170     if ($item->{notforloantext} or $item->{itemlost} or $item->{damaged} or $item->{withdrawn}) {
171         $item->{status_advisory} = 1;
172     }
173
174     if (C4::Context->preference("IndependentBranches")) {
175         #verifying rights
176         my $userenv = C4::Context->userenv();
177         unless (C4::Context->IsSuperLibrarian() or ($userenv->{'branch'} eq $item->{'homebranch'})) {
178                 $item->{'nomod'}=1;
179         }
180     }
181     $item->{'homebranchname'} = GetBranchName($item->{'homebranch'});
182     $item->{'holdingbranchname'} = GetBranchName($item->{'holdingbranch'});
183     if ($item->{'datedue'}) {
184         $item->{'issue'}= 1;
185     } else {
186         $item->{'issue'}= 0;
187     }
188
189     unless ($hidepatronname) {
190         if ( $item->{'borrowernumber'} ) {
191             my $curr_borrower = GetMember('borrowernumber' => $item->{'borrowernumber'} );
192             $item->{borrowerfirstname} = $curr_borrower->{'firstname'};
193             $item->{borrowersurname} = $curr_borrower->{'surname'};
194         }
195     }
196
197 }
198
199 if ( my $lost_av = GetAuthValCode('items.itemlost', $fw) ) {
200     $template->param( itemlostloop => GetAuthorisedValues( $lost_av ) );
201 }
202 if ( my $damaged_av = GetAuthValCode('items.damaged', $fw) ) {
203     $template->param( itemdamagedloop => GetAuthorisedValues( $damaged_av ) );
204 }
205 if ( my $withdrawn_av = GetAuthValCode('items.withdrawn', $fw) ) {
206     $template->param( itemwithdrawnloop => GetAuthorisedValues( $withdrawn_av ) );
207 }
208
209 $template->param(count => $data->{'count'},
210         subscriptionsnumber => $subscriptionsnumber,
211     subscriptiontitle   => $data->{title},
212         C4::Search::enabled_staff_search_views,
213 );
214
215 $template->param(
216     ITEM_DATA           => \@items,
217     moredetailview      => 1,
218     loggedinuser        => $loggedinuser,
219     biblionumber        => $biblionumber,
220     biblioitemnumber    => $bi,
221     itemnumber          => $itemnumber,
222     z3950_search_params => C4::Search::z3950_search_args(GetBiblioData($biblionumber)),
223     subtitle            => $subtitle,
224     hidepatronname      => $hidepatronname,
225 );
226 $template->param(ONLY_ONE => 1) if ( $itemnumber && $showncount != @items );
227 $template->{'VARS'}->{'searchid'} = $query->param('searchid');
228
229 my @allorders_using_biblio = GetOrdersByBiblionumber ($biblionumber);
230 my @deletedorders_using_biblio;
231 my @orders_using_biblio;
232 my @baskets_orders;
233 my @baskets_deletedorders;
234
235 foreach my $myorder (@allorders_using_biblio) {
236     my $basket = $myorder->{'basketno'};
237     if ((defined $myorder->{'datecancellationprinted'}) and  ($myorder->{'datecancellationprinted'} ne '0000-00-00') ){
238         push @deletedorders_using_biblio, $myorder;
239         unless (grep(/^$basket$/, @baskets_deletedorders)){
240             push @baskets_deletedorders,$myorder->{'basketno'};
241         }
242     }
243     else {
244         push @orders_using_biblio, $myorder;
245         unless (grep(/^$basket$/, @baskets_orders)){
246             push @baskets_orders,$myorder->{'basketno'};
247             }
248     }
249 }
250
251 my $count_orders_using_biblio = scalar @orders_using_biblio ;
252 $template->param (countorders => $count_orders_using_biblio);
253
254 my $count_deletedorders_using_biblio = scalar @deletedorders_using_biblio ;
255 $template->param (countdeletedorders => $count_deletedorders_using_biblio);
256
257 my $holds = GetReservesFromBiblionumber({ biblionumber => $biblionumber, all_dates => 1 });
258 my $holdcount = scalar( @$holds );
259 $template->param( holdcount => scalar ( @$holds ) );
260
261 output_html_with_http_headers $query, $cookie, $template->output;
262