b0dc6e4206d58966aadbf1796f4d92eb2cce3b35
[srvgit] / 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 Modern::Perl;
23 use C4::Koha qw( GetAuthorisedValues );
24 use CGI qw ( -utf8 );
25 use HTML::Entities;
26 use C4::Biblio qw( GetBiblioData GetFrameworkCode GetMarcBiblio );
27 use C4::Items qw( GetHostItemsInfo GetItemsInfo );
28 use C4::Acquisition qw( GetOrderFromItemnumber GetBasket GetInvoice );
29 use C4::Output qw( output_and_exit output_html_with_http_headers );
30 use C4::Auth qw( get_template_and_user );
31 use C4::Serials qw( CountSubscriptionFromBiblionumber );
32 use C4::Search qw( enabled_staff_search_views z3950_search_args );
33
34 use Koha::Acquisition::Booksellers;
35 use Koha::AuthorisedValues;
36 use Koha::Biblios;
37 use Koha::Items;
38 use Koha::Patrons;
39
40 my $query=CGI->new;
41
42 my ($template, $loggedinuser, $cookie) = get_template_and_user(
43     {
44         template_name   => 'catalogue/moredetail.tt',
45         query           => $query,
46         type            => "intranet",
47         flagsrequired   => { catalogue => 1 },
48     }
49 );
50
51 $template->param(
52     updated_exclude_from_local_holds_priority => scalar($query->param('updated_exclude_from_local_holds_priority'))
53 );
54
55 if($query->cookie("holdfor")){ 
56     my $holdfor_patron = Koha::Patrons->find( $query->cookie("holdfor") );
57     $template->param(
58         holdfor        => $query->cookie("holdfor"),
59         holdfor_patron => $holdfor_patron,
60     );
61 }
62
63 if( $query->cookie("searchToOrder") ){
64     my ( $basketno, $vendorid ) = split( /\//, $query->cookie("searchToOrder") );
65     $template->param(
66         searchtoorder_basketno => $basketno,
67         searchtoorder_vendorid => $vendorid
68     );
69 }
70
71 # get variables
72 my $biblionumber;
73 my $itemnumber;
74 if( $query->param('itemnumber') && !$query->param('biblionumber') ){
75     $itemnumber = $query->param('itemnumber');
76     my $item = Koha::Items->find( $itemnumber );
77     $biblionumber = $item->biblionumber;
78 } else {
79     $biblionumber = $query->param('biblionumber');
80 }
81
82 $biblionumber = HTML::Entities::encode($biblionumber);
83 my $title=$query->param('title');
84 my $bi=$query->param('bi');
85 $bi = $biblionumber unless $bi;
86 $itemnumber = $query->param('itemnumber');
87 my $data = &GetBiblioData($biblionumber);
88 my $dewey = $data->{'dewey'};
89 my $showallitems = $query->param('showallitems');
90
91 #coping with subscriptions
92 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
93
94 # FIXME Dewey is a string, not a number, & we should use a function
95 # $dewey =~ s/0+$//;
96 # if ($dewey eq "000.") { $dewey = "";};
97 # if ($dewey < 10){$dewey='00'.$dewey;}
98 # if ($dewey < 100 && $dewey > 10){$dewey='0'.$dewey;}
99 # if ($dewey <= 0){
100 #      $dewey='';
101 # }
102 # $dewey=~ s/\.$//;
103 # $data->{'dewey'}=$dewey;
104
105 my $fw = GetFrameworkCode($biblionumber);
106 my @all_items= GetItemsInfo($biblionumber);
107 my @items;
108 my $patron = Koha::Patrons->find( $loggedinuser );
109 for my $itm (@all_items) {
110     push @items, $itm unless ( $itm->{itemlost} && 
111                                $patron->category->hidelostitems &&
112                                !$showallitems && 
113                                ($itemnumber != $itm->{itemnumber}));
114 }
115
116 my $record=GetMarcBiblio({ biblionumber => $biblionumber });
117
118 output_and_exit( $query, $cookie, $template, 'unknown_biblio')
119     unless $record;
120
121 my $hostrecords;
122 # adding items linked via host biblios
123 my @hostitems = GetHostItemsInfo($record);
124 if (@hostitems){
125         $hostrecords =1;
126         push (@items,@hostitems);
127 }
128
129 my $biblio = Koha::Biblios->find( $biblionumber );
130
131 my $totalcount=@all_items;
132 my $showncount=@items;
133 my $hiddencount = $totalcount - $showncount;
134 $data->{'count'}=$totalcount;
135 $data->{'showncount'}=$showncount;
136 $data->{'hiddencount'}=$hiddencount;  # can be zero
137
138 my $ccodes =
139   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $fw, kohafield => 'items.ccode' } ) };
140 my $copynumbers =
141   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $fw, kohafield => 'items.copynumber' } ) };
142
143 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
144
145 $data->{'itemtypename'} = $itemtypes->{ $data->{'itemtype'} }->{'translated_description'}
146   if $data->{itemtype} && exists $itemtypes->{ $data->{itemtype} };
147 foreach ( keys %{$data} ) {
148     $template->param( "$_" => defined $data->{$_} ? $data->{$_} : '' );
149 }
150
151 ($itemnumber) and @items = (grep {$_->{'itemnumber'} == $itemnumber} @items);
152 foreach my $item (@items){
153     $item->{object} = Koha::Items->find( $item->{itemnumber} );
154     $item->{'collection'}              = $ccodes->{ $item->{ccode} } if $ccodes && $item->{ccode} && exists $ccodes->{ $item->{ccode} };
155     $item->{'itype'}                   = $itemtypes->{ $item->{'itype'} }->{'translated_description'} if exists $itemtypes->{ $item->{'itype'} };
156     $item->{'replacementprice'}        = $item->{'replacementprice'};
157     if ( defined $item->{'copynumber'} ) {
158         $item->{'displaycopy'} = 1;
159         if ( defined $copynumbers->{ $item->{'copynumber'} } ) {
160             $item->{'copyvol'} = $copynumbers->{ $item->{'copynumber'} }
161         }
162         else {
163             $item->{'copyvol'} = $item->{'copynumber'};
164         }
165     }
166
167     # item has a host number if its biblio number does not match the current bib
168     if ($item->{biblionumber} ne $biblionumber){
169         $item->{hostbiblionumber} = $item->{biblionumber};
170         $item->{hosttitle} = GetBiblioData($item->{biblionumber})->{title};
171     }
172
173     my $order  = GetOrderFromItemnumber( $item->{'itemnumber'} );
174     $item->{'ordernumber'}             = $order->{'ordernumber'};
175     $item->{'basketno'}                = $order->{'basketno'};
176     $item->{'orderdate'}               = $order->{'entrydate'};
177     if ($item->{'basketno'}){
178             my $basket = GetBasket($item->{'basketno'});
179         my $bookseller = Koha::Acquisition::Booksellers->find( $basket->{booksellerid} );
180         $item->{'vendor'} = $bookseller->name;
181     }
182     $item->{'invoiceid'}               = $order->{'invoiceid'};
183     if($item->{invoiceid}) {
184         my $invoice = GetInvoice($item->{invoiceid});
185         $item->{invoicenumber} = $invoice->{invoicenumber} if $invoice;
186     }
187     $item->{'datereceived'}            = $order->{'datereceived'};
188
189     if ($item->{notforloantext} or $item->{itemlost} or $item->{damaged} or $item->{withdrawn}) {
190         $item->{status_advisory} = 1;
191     }
192
193     # Add paidfor info
194     if ( $item->{itemlost} ) {
195         my $accountlines = Koha::Account::Lines->search(
196             {
197                 itemnumber        => $item->{itemnumber},
198                 debit_type_code   => 'LOST',
199                 status            => [ undef, { '<>' => 'RETURNED' } ],
200                 amountoutstanding => 0
201             },
202             {
203                 order_by => { '-desc' => 'date' },
204                 rows     => 1
205             }
206         );
207
208         if ( my $accountline = $accountlines->next ) {
209             my $payment_offsets = $accountline->debit_offsets(
210                 {
211                     credit_id => { '!=' => undef }, # it is not the debit itself
212                     'credit.credit_type_code' =>
213                       { '!=' => [ 'Writeoff', 'Forgiven' ] },
214                 },
215                 { join => 'credit', order_by => { '-desc' => 'created_on' } }
216             );
217
218             if ($payment_offsets->count) {
219                 my $patron = $accountline->patron;
220                 my $payment_offset = $payment_offsets->next;
221                 $item->{paidfor} = { patron => $patron, created_on => $payment_offset->created_on };
222             }
223         }
224     }
225
226     if (C4::Context->preference("IndependentBranches")) {
227         #verifying rights
228         my $userenv = C4::Context->userenv();
229         unless (C4::Context->IsSuperLibrarian() or ($userenv->{'branch'} eq $item->{'homebranch'})) {
230                 $item->{'nomod'}=1;
231         }
232     }
233     if ($item->{'datedue'}) {
234         $item->{'issue'}= 1;
235     } else {
236         $item->{'issue'}= 0;
237     }
238
239     if ( $item->{'borrowernumber'} ) {
240         my $curr_borrower = Koha::Patrons->find( $item->{borrowernumber} );
241         $item->{patron} = $curr_borrower;
242     }
243 }
244
245 my $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.itemlost', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
246 if ( $mss->count ) {
247     $template->param( itemlostloop => GetAuthorisedValues( $mss->next->authorised_value ) );
248 }
249 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.damaged', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
250 if ( $mss->count ) {
251     $template->param( itemdamagedloop => GetAuthorisedValues( $mss->next->authorised_value ) );
252 }
253 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.withdrawn', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
254 if ( $mss->count ) {
255     $template->param( itemwithdrawnloop => GetAuthorisedValues( $mss->next->authorised_value) );
256 }
257
258 $template->param(count => $data->{'count'},
259         subscriptionsnumber => $subscriptionsnumber,
260     subscriptiontitle   => $data->{title},
261         C4::Search::enabled_staff_search_views,
262 );
263
264 # get biblionumbers stored in the cart
265 my @cart_list;
266
267 if($query->cookie("intranet_bib_list")){
268     my $cart_list = $query->cookie("intranet_bib_list");
269     @cart_list = split(/\//, $cart_list);
270     if ( grep {$_ eq $biblionumber} @cart_list) {
271         $template->param( incart => 1 );
272     }
273 }
274
275 my $some_private_shelves = Koha::Virtualshelves->get_some_shelves(
276     {
277         borrowernumber => $loggedinuser,
278         add_allowed    => 1,
279         public         => 0,
280     }
281 );
282 my $some_public_shelves = Koha::Virtualshelves->get_some_shelves(
283     {
284         borrowernumber => $loggedinuser,
285         add_allowed    => 1,
286         public         => 1,
287     }
288 );
289
290
291 $template->param(
292     add_to_some_private_shelves => $some_private_shelves,
293     add_to_some_public_shelves  => $some_public_shelves,
294 );
295
296 $template->param(
297     ITEM_DATA           => \@items,
298     moredetailview      => 1,
299     loggedinuser        => $loggedinuser,
300     biblionumber        => $biblionumber,
301     biblioitemnumber    => $bi,
302     itemnumber          => $itemnumber,
303     z3950_search_params => C4::Search::z3950_search_args(GetBiblioData($biblionumber)),
304     biblio              => $biblio,
305 );
306 $template->param(ONLY_ONE => 1) if ( $itemnumber && $showncount != @items );
307 $template->{'VARS'}->{'searchid'} = $query->param('searchid');
308
309 my $holds = $biblio->holds;
310 $template->param( holdcount => $holds->count );
311
312 output_html_with_http_headers $query, $cookie, $template->output;
313