3 # Copyright 2000-2003 Katipo Communications
4 # parts copyright 2010 BibLibre
6 # This file is part of Koha.
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.
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.
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>.
32 use C4
::Search
; # enabled_staff_search_views
34 use Koha
::Acquisition
::Booksellers
;
35 use Koha
::AuthorisedValues
;
43 my ($template, $loggedinuser, $cookie) = get_template_and_user
(
45 template_name
=> 'catalogue/moredetail.tt',
49 flagsrequired
=> { catalogue
=> 1 },
53 if($query->cookie("holdfor")){
54 my $holdfor_patron = Koha
::Patrons
->find( $query->cookie("holdfor") );
56 holdfor
=> $query->cookie("holdfor"),
57 holdfor_surname
=> $holdfor_patron->surname,
58 holdfor_firstname
=> $holdfor_patron->firstname,
59 holdfor_cardnumber
=> $holdfor_patron->cardnumber,
65 my $biblionumber=$query->param('biblionumber');
66 $biblionumber = HTML
::Entities
::encode
($biblionumber);
67 my $title=$query->param('title');
68 my $bi=$query->param('bi');
69 $bi = $biblionumber unless $bi;
70 my $itemnumber = $query->param('itemnumber');
71 my $data = &GetBiblioData
($biblionumber);
72 my $dewey = $data->{'dewey'};
73 my $showallitems = $query->param('showallitems');
75 #coping with subscriptions
76 my $subscriptionsnumber = CountSubscriptionFromBiblionumber
($biblionumber);
78 # FIXME Dewey is a string, not a number, & we should use a function
80 # if ($dewey eq "000.") { $dewey = "";};
81 # if ($dewey < 10){$dewey='00'.$dewey;}
82 # if ($dewey < 100 && $dewey > 10){$dewey='0'.$dewey;}
87 # $data->{'dewey'}=$dewey;
89 my $fw = GetFrameworkCode
($biblionumber);
90 my @all_items= GetItemsInfo
($biblionumber);
92 my $patron = Koha
::Patrons
->find( $loggedinuser );
93 for my $itm (@all_items) {
94 push @items, $itm unless ( $itm->{itemlost
} &&
95 $patron->category->hidelostitems &&
97 ($itemnumber != $itm->{itemnumber
}));
100 my $record=GetMarcBiblio
({ biblionumber
=> $biblionumber });
102 output_and_exit
( $query, $cookie, $template, 'unknown_biblio')
106 # adding items linked via host biblios
107 my @hostitems = GetHostItemsInfo
($record);
110 push (@items,@hostitems);
113 my $subtitle = GetRecordValue
('subtitle', $record, $fw);
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
123 { map { $_->{authorised_value
} => $_->{lib
} } Koha
::AuthorisedValues
->get_descriptions_by_koha_field( { frameworkcode
=> $fw, kohafield
=> 'items.ccode' } ) };
125 { map { $_->{authorised_value
} => $_->{lib
} } Koha
::AuthorisedValues
->get_descriptions_by_koha_field( { frameworkcode
=> $fw, kohafield
=> 'items.copynumber' } ) };
127 my $itemtypes = { map { $_->{itemtype
} => $_ } @
{ Koha
::ItemTypes
->search_with_localization->unblessed } };
129 $data->{'itemtypename'} = $itemtypes->{ $data->{'itemtype'} }->{'translated_description'}
130 if $data->{itemtype
} && exists $itemtypes->{ $data->{itemtype
} };
131 $data->{'rentalcharge'} = sprintf( "%.2f", $data->{'rentalcharge'} || 0); # Price formatting should be done template-side
132 foreach ( keys %{$data} ) {
133 $template->param( "$_" => defined $data->{$_} ?
$data->{$_} : '' );
136 ($itemnumber) and @items = (grep {$_->{'itemnumber'} == $itemnumber} @items);
137 foreach my $item (@items){
138 $item->{object
} = Koha
::Items
->find( $item->{itemnumber
} );
139 $item->{'collection'} = $ccodes->{ $item->{ccode
} } if $ccodes && $item->{ccode
} && exists $ccodes->{ $item->{ccode
} };
140 $item->{'itype'} = $itemtypes->{ $item->{'itype'} }->{'translated_description'} if exists $itemtypes->{ $item->{'itype'} };
141 $item->{'replacementprice'} = sprintf( "%.2f", $item->{'replacementprice'} || 0 ); # Price formatting should be done template-side
142 if ( defined $item->{'copynumber'} ) {
143 $item->{'displaycopy'} = 1;
144 if ( defined $copynumbers->{ $item->{'copynumber'} } ) {
145 $item->{'copyvol'} = $copynumbers->{ $item->{'copynumber'} }
148 $item->{'copyvol'} = $item->{'copynumber'};
152 # item has a host number if its biblio number does not match the current bib
153 if ($item->{biblionumber
} ne $biblionumber){
154 $item->{hostbiblionumber
} = $item->{biblionumber
};
155 $item->{hosttitle
} = GetBiblioData
($item->{biblionumber
})->{title
};
158 my $order = GetOrderFromItemnumber
( $item->{'itemnumber'} );
159 $item->{'ordernumber'} = $order->{'ordernumber'};
160 $item->{'basketno'} = $order->{'basketno'};
161 $item->{'orderdate'} = $order->{'entrydate'};
162 if ($item->{'basketno'}){
163 my $basket = GetBasket
($item->{'basketno'});
164 my $bookseller = Koha
::Acquisition
::Booksellers
->find( $basket->{booksellerid
} );
165 $item->{'vendor'} = $bookseller->name;
167 $item->{'invoiceid'} = $order->{'invoiceid'};
168 if($item->{invoiceid
}) {
169 my $invoice = GetInvoice
($item->{invoiceid
});
170 $item->{invoicenumber
} = $invoice->{invoicenumber
} if $invoice;
172 $item->{'datereceived'} = $order->{'datereceived'};
174 if ($item->{notforloantext
} or $item->{itemlost
} or $item->{damaged
} or $item->{withdrawn
}) {
175 $item->{status_advisory
} = 1;
178 if (C4
::Context
->preference("IndependentBranches")) {
180 my $userenv = C4
::Context
->userenv();
181 unless (C4
::Context
->IsSuperLibrarian() or ($userenv->{'branch'} eq $item->{'homebranch'})) {
185 if ($item->{'datedue'}) {
191 if ( $item->{'borrowernumber'} ) {
192 my $curr_borrower = Koha
::Patrons
->find( $item->{borrowernumber
} );
193 $item->{patron
} = $curr_borrower;
197 my $mss = Koha
::MarcSubfieldStructures
->search({ frameworkcode
=> $fw, kohafield
=> 'items.itemlost', authorised_value
=> [ -and => {'!=' => undef }, {'!=' => ''}] });
199 $template->param( itemlostloop
=> GetAuthorisedValues
( $mss->next->authorised_value ) );
201 $mss = Koha
::MarcSubfieldStructures
->search({ frameworkcode
=> $fw, kohafield
=> 'items.damaged', authorised_value
=> [ -and => {'!=' => undef }, {'!=' => ''}] });
203 $template->param( itemdamagedloop
=> GetAuthorisedValues
( $mss->next->authorised_value ) );
205 $mss = Koha
::MarcSubfieldStructures
->search({ frameworkcode
=> $fw, kohafield
=> 'items.withdrawn', authorised_value
=> [ -and => {'!=' => undef }, {'!=' => ''}] });
207 $template->param( itemwithdrawnloop
=> GetAuthorisedValues
( $mss->next->authorised_value) );
210 $template->param(count
=> $data->{'count'},
211 subscriptionsnumber
=> $subscriptionsnumber,
212 subscriptiontitle
=> $data->{title
},
213 C4
::Search
::enabled_staff_search_views
,
217 ITEM_DATA
=> \
@items,
219 loggedinuser
=> $loggedinuser,
220 biblionumber
=> $biblionumber,
221 biblioitemnumber
=> $bi,
222 itemnumber
=> $itemnumber,
223 z3950_search_params
=> C4
::Search
::z3950_search_args
(GetBiblioData
($biblionumber)),
224 subtitle
=> $subtitle,
226 $template->param(ONLY_ONE
=> 1) if ( $itemnumber && $showncount != @items );
227 $template->{'VARS'}->{'searchid'} = $query->param('searchid');
229 my @allorders_using_biblio = GetOrdersByBiblionumber
($biblionumber);
230 my @deletedorders_using_biblio;
231 my @orders_using_biblio;
233 my @baskets_deletedorders;
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'};
244 push @orders_using_biblio, $myorder;
245 unless (grep(/^$basket$/, @baskets_orders)){
246 push @baskets_orders,$myorder->{'basketno'};
251 my $count_orders_using_biblio = scalar @orders_using_biblio ;
252 $template->param (countorders
=> $count_orders_using_biblio);
254 my $count_deletedorders_using_biblio = scalar @deletedorders_using_biblio ;
255 $template->param (countdeletedorders
=> $count_deletedorders_using_biblio);
257 my $biblio = Koha
::Biblios
->find( $biblionumber );
258 my $holds = $biblio->holds;
259 $template->param( holdcount
=> $holds->count );
261 output_html_with_http_headers
$query, $cookie, $template->output;