Bug 19074: Fix category display in Batch patron modification.
[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::Acquisition;
30 use C4::Output;
31 use C4::Auth;
32 use C4::Serials;
33 use C4::Search;         # enabled_staff_search_views
34
35 use Koha::Acquisition::Booksellers;
36 use Koha::AuthorisedValues;
37 use Koha::Biblios;
38 use Koha::DateUtils;
39 use Koha::Items;
40 use Koha::Patrons;
41
42 my $query=new CGI;
43
44 my ($template, $loggedinuser, $cookie) = get_template_and_user(
45     {
46         template_name   => 'catalogue/moredetail.tt',
47         query           => $query,
48         type            => "intranet",
49         authnotrequired => 0,
50         flagsrequired   => { catalogue => 1 },
51     }
52 );
53
54 if($query->cookie("holdfor")){ 
55     my $holdfor_patron = Koha::Patrons->find( $query->cookie("holdfor") );
56     $template->param(
57         holdfor => $query->cookie("holdfor"),
58         holdfor_surname => $holdfor_patron->surname,
59         holdfor_firstname => $holdfor_patron->firstname,
60         holdfor_cardnumber => $holdfor_patron->cardnumber,
61     );
62 }
63
64 my $hidepatronname = C4::Context->preference("HidePatronName");
65
66 # get variables
67
68 my $biblionumber=$query->param('biblionumber');
69 $biblionumber = HTML::Entities::encode($biblionumber);
70 my $title=$query->param('title');
71 my $bi=$query->param('bi');
72 $bi = $biblionumber unless $bi;
73 my $itemnumber = $query->param('itemnumber');
74 my $data = &GetBiblioData($biblionumber);
75 my $dewey = $data->{'dewey'};
76 my $showallitems = $query->param('showallitems');
77
78 #coping with subscriptions
79 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
80
81 # FIXME Dewey is a string, not a number, & we should use a function
82 # $dewey =~ s/0+$//;
83 # if ($dewey eq "000.") { $dewey = "";};
84 # if ($dewey < 10){$dewey='00'.$dewey;}
85 # if ($dewey < 100 && $dewey > 10){$dewey='0'.$dewey;}
86 # if ($dewey <= 0){
87 #      $dewey='';
88 # }
89 # $dewey=~ s/\.$//;
90 # $data->{'dewey'}=$dewey;
91
92 my $fw = GetFrameworkCode($biblionumber);
93 my @all_items= GetItemsInfo($biblionumber);
94 my @items;
95 my $patron = Koha::Patrons->find( $loggedinuser );
96 for my $itm (@all_items) {
97     push @items, $itm unless ( $itm->{itemlost} && 
98                                $patron->category->hidelostitems &&
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 =
123   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $fw, kohafield => 'items.ccode' } ) };
124 my $copynumbers =
125   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $fw, kohafield => 'items.copynumber' } ) };
126
127 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search_with_localization->unblessed } };
128
129 $data->{'itemtypename'} = $itemtypes->{$data->{'itemtype'}}->{'translated_description'};
130 $data->{'rentalcharge'} = sprintf( "%.2f", $data->{'rentalcharge'} );
131 foreach ( keys %{$data} ) {
132     $template->param( "$_" => defined $data->{$_} ? $data->{$_} : '' );
133 }
134
135 ($itemnumber) and @items = (grep {$_->{'itemnumber'} == $itemnumber} @items);
136 foreach my $item (@items){
137     $item->{object} = Koha::Items->find( $item->{itemnumber} );
138     $item->{'collection'}              = $ccodes->{ $item->{ccode} } if ($ccodes);
139     $item->{'itype'}                   = $itemtypes->{ $item->{'itype'} }->{'translated_description'};
140     $item->{'replacementprice'}        = sprintf( "%.2f", $item->{'replacementprice'} );
141     if ( defined $item->{'copynumber'} ) {
142         $item->{'displaycopy'} = 1;
143         if ( defined $copynumbers->{ $item->{'copynumber'} } ) {
144             $item->{'copyvol'} = $copynumbers->{ $item->{'copynumber'} }
145         }
146         else {
147             $item->{'copyvol'} = $item->{'copynumber'};
148         }
149     }
150
151     # item has a host number if its biblio number does not match the current bib
152     if ($item->{biblionumber} ne $biblionumber){
153         $item->{hostbiblionumber} = $item->{biblionumber};
154         $item->{hosttitle} = GetBiblioData($item->{biblionumber})->{title};
155     }
156
157     my $order  = GetOrderFromItemnumber( $item->{'itemnumber'} );
158     $item->{'ordernumber'}             = $order->{'ordernumber'};
159     $item->{'basketno'}                = $order->{'basketno'};
160     $item->{'orderdate'}               = $order->{'entrydate'};
161     if ($item->{'basketno'}){
162             my $basket = GetBasket($item->{'basketno'});
163         my $bookseller = Koha::Acquisition::Booksellers->find( $basket->{booksellerid} );
164         $item->{'vendor'} = $bookseller->name;
165     }
166     $item->{'invoiceid'}               = $order->{'invoiceid'};
167     if($item->{invoiceid}) {
168         my $invoice = GetInvoice($item->{invoiceid});
169         $item->{invoicenumber} = $invoice->{invoicenumber} if $invoice;
170     }
171     $item->{'datereceived'}            = $order->{'datereceived'};
172
173     if ($item->{notforloantext} or $item->{itemlost} or $item->{damaged} or $item->{withdrawn}) {
174         $item->{status_advisory} = 1;
175     }
176
177     if (C4::Context->preference("IndependentBranches")) {
178         #verifying rights
179         my $userenv = C4::Context->userenv();
180         unless (C4::Context->IsSuperLibrarian() or ($userenv->{'branch'} eq $item->{'homebranch'})) {
181                 $item->{'nomod'}=1;
182         }
183     }
184     if ($item->{'datedue'}) {
185         $item->{'issue'}= 1;
186     } else {
187         $item->{'issue'}= 0;
188     }
189
190     unless ($hidepatronname) {
191         if ( $item->{'borrowernumber'} ) {
192             my $curr_borrower = Koha::Patrons->find( $item->{borrowernumber} );
193             $item->{borrowerfirstname} = $curr_borrower->firstname;
194             $item->{borrowersurname} = $curr_borrower->surname;
195         }
196     }
197
198 }
199
200 my $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.itemlost', authorised_value => { not => undef } });
201 if ( $mss->count ) {
202     $template->param( itemlostloop => GetAuthorisedValues( $mss->next->authorised_value ) );
203 }
204 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.damaged', authorised_value => { not => undef } });
205 if ( $mss->count ) {
206     $template->param( itemdamagedloop => GetAuthorisedValues( $mss->next->authorised_value ) );
207 }
208 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.withdrawn', authorised_value => { not => undef } });
209 if ( $mss->count ) {
210     $template->param( itemwithdrawnloop => GetAuthorisedValues( $mss->next->authorised_value) );
211 }
212
213 $template->param(count => $data->{'count'},
214         subscriptionsnumber => $subscriptionsnumber,
215     subscriptiontitle   => $data->{title},
216         C4::Search::enabled_staff_search_views,
217 );
218
219 $template->param(
220     ITEM_DATA           => \@items,
221     moredetailview      => 1,
222     loggedinuser        => $loggedinuser,
223     biblionumber        => $biblionumber,
224     biblioitemnumber    => $bi,
225     itemnumber          => $itemnumber,
226     z3950_search_params => C4::Search::z3950_search_args(GetBiblioData($biblionumber)),
227     subtitle            => $subtitle,
228     hidepatronname      => $hidepatronname,
229 );
230 $template->param(ONLY_ONE => 1) if ( $itemnumber && $showncount != @items );
231 $template->{'VARS'}->{'searchid'} = $query->param('searchid');
232
233 my @allorders_using_biblio = GetOrdersByBiblionumber ($biblionumber);
234 my @deletedorders_using_biblio;
235 my @orders_using_biblio;
236 my @baskets_orders;
237 my @baskets_deletedorders;
238
239 foreach my $myorder (@allorders_using_biblio) {
240     my $basket = $myorder->{'basketno'};
241     if ((defined $myorder->{'datecancellationprinted'}) and  ($myorder->{'datecancellationprinted'} ne '0000-00-00') ){
242         push @deletedorders_using_biblio, $myorder;
243         unless (grep(/^$basket$/, @baskets_deletedorders)){
244             push @baskets_deletedorders,$myorder->{'basketno'};
245         }
246     }
247     else {
248         push @orders_using_biblio, $myorder;
249         unless (grep(/^$basket$/, @baskets_orders)){
250             push @baskets_orders,$myorder->{'basketno'};
251             }
252     }
253 }
254
255 my $count_orders_using_biblio = scalar @orders_using_biblio ;
256 $template->param (countorders => $count_orders_using_biblio);
257
258 my $count_deletedorders_using_biblio = scalar @deletedorders_using_biblio ;
259 $template->param (countdeletedorders => $count_deletedorders_using_biblio);
260
261 my $biblio = Koha::Biblios->find( $biblionumber );
262 my $holds = $biblio->holds;
263 $template->param( holdcount => $holds->count );
264
265 output_html_with_http_headers $query, $cookie, $template->output;
266