Bug 16130 - Show the item non-public note on the detail view
[koha.git] / catalogue / detail.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18
19 use strict;
20 use warnings;
21
22 use CGI qw ( -utf8 );
23 use C4::Acquisition qw( GetHistory );
24 use C4::Auth;
25 use C4::Koha;
26 use C4::Serials;    #uses getsubscriptionfrom biblionumber
27 use C4::Output;
28 use C4::Biblio;
29 use C4::Items;
30 use C4::Circulation;
31 use C4::Branch;
32 use C4::Reserves;
33 use C4::Members; # to use GetMember
34 use C4::Serials;
35 use C4::XISBN qw(get_xisbns get_biblionumber_from_isbn);
36 use C4::External::Amazon;
37 use C4::Search;         # enabled_staff_search_views
38 use C4::Tags qw(get_tags);
39 use C4::XSLT;
40 use C4::Images;
41 use Koha::DateUtils;
42 use C4::HTML5Media;
43 use C4::CourseReserves qw(GetItemCourseReservesInfo);
44 use C4::Acquisition qw(GetOrdersByBiblionumber);
45 use Koha::Virtualshelves;
46
47 my $query = CGI->new();
48
49 my $analyze = $query->param('analyze');
50
51 my ( $template, $borrowernumber, $cookie, $flags ) = get_template_and_user(
52     {
53     template_name   =>  'catalogue/detail.tt',
54         query           => $query,
55         type            => "intranet",
56         authnotrequired => 0,
57         flagsrequired   => { catalogue => 1 },
58     }
59 );
60
61 my $biblionumber = $query->param('biblionumber');
62 my $record       = GetMarcBiblio($biblionumber);
63
64 if ( not defined $record ) {
65     # biblionumber invalid -> report and exit
66     $template->param( unknownbiblionumber => 1,
67                       biblionumber => $biblionumber );
68     output_html_with_http_headers $query, $cookie, $template->output;
69     exit;
70 }
71
72 if($query->cookie("holdfor")){ 
73     my $holdfor_patron = GetMember('borrowernumber' => $query->cookie("holdfor"));
74     $template->param(
75         holdfor => $query->cookie("holdfor"),
76         holdfor_surname => $holdfor_patron->{'surname'},
77         holdfor_firstname => $holdfor_patron->{'firstname'},
78         holdfor_cardnumber => $holdfor_patron->{'cardnumber'},
79     );
80 }
81
82 my $fw           = GetFrameworkCode($biblionumber);
83 my $showallitems = $query->param('showallitems');
84 my $marcflavour  = C4::Context->preference("marcflavour");
85
86 # XSLT processing of some stuff
87 if (C4::Context->preference("XSLTDetailsDisplay") ) {
88     $template->param('XSLTDetailsDisplay' =>'1',
89         'XSLTBloc' => XSLTParse4Display($biblionumber, $record, "XSLTDetailsDisplay") );
90 }
91
92 $template->param( 'SpineLabelShowPrintOnBibDetails' => C4::Context->preference("SpineLabelShowPrintOnBibDetails") );
93 $template->param( ocoins => GetCOinSBiblio($record) );
94
95 # some useful variables for enhanced content;
96 # in each case, we're grabbing the first value we find in
97 # the record and normalizing it
98 my $upc = GetNormalizedUPC($record,$marcflavour);
99 my $ean = GetNormalizedEAN($record,$marcflavour);
100 my $oclc = GetNormalizedOCLCNumber($record,$marcflavour);
101 my $isbn = GetNormalizedISBN(undef,$record,$marcflavour);
102
103 $template->param(
104     normalized_upc => $upc,
105     normalized_ean => $ean,
106     normalized_oclc => $oclc,
107     normalized_isbn => $isbn,
108 );
109
110 my $marcnotesarray   = GetMarcNotes( $record, $marcflavour );
111 my $marcisbnsarray   = GetMarcISBN( $record, $marcflavour );
112 my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
113 my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
114 my $marcseriesarray  = GetMarcSeries($record,$marcflavour);
115 my $marcurlsarray    = GetMarcUrls    ($record,$marcflavour);
116 my $marchostsarray  = GetMarcHosts($record,$marcflavour);
117 my $subtitle         = GetRecordValue('subtitle', $record, $fw);
118
119 # Get Branches, Itemtypes and Locations
120 my $branches = GetBranches();
121 my $itemtypes = GetItemTypes();
122 my $dbh = C4::Context->dbh;
123
124 my @all_items = GetItemsInfo( $biblionumber );
125 my @items;
126 for my $itm (@all_items) {
127     push @items, $itm unless ( $itm->{itemlost} && GetHideLostItemsPreference($borrowernumber) && !$showallitems);
128 }
129
130 # flag indicating existence of at least one item linked via a host record
131 my $hostrecords;
132 # adding items linked via host biblios
133 my @hostitems = GetHostItemsInfo($record);
134 if (@hostitems){
135         $hostrecords =1;
136         push (@items,@hostitems);
137 }
138
139 my $dat = &GetBiblioData($biblionumber);
140
141 #coping with subscriptions
142 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
143 my @subscriptions       = SearchSubscriptions({ biblionumber => $biblionumber, orderby => 'title' });
144 my @subs;
145
146 foreach my $subscription (@subscriptions) {
147     my %cell;
148         my $serials_to_display;
149     $cell{subscriptionid}    = $subscription->{subscriptionid};
150     $cell{subscriptionnotes} = $subscription->{internalnotes};
151     $cell{missinglist}       = $subscription->{missinglist};
152     $cell{librariannote}     = $subscription->{librariannote};
153     $cell{branchcode}        = $subscription->{branchcode};
154     $cell{branchname}        = GetBranchName($subscription->{branchcode});
155     $cell{hasalert}          = $subscription->{hasalert};
156     $cell{callnumber}        = $subscription->{callnumber};
157     $cell{closed}            = $subscription->{closed};
158     #get the three latest serials.
159         $serials_to_display = $subscription->{staffdisplaycount};
160         $serials_to_display = C4::Context->preference('StaffSerialIssueDisplayCount') unless $serials_to_display;
161         $cell{staffdisplaycount} = $serials_to_display;
162     $cell{latestserials} =
163       GetLatestSerials( $subscription->{subscriptionid}, $serials_to_display );
164     push @subs, \%cell;
165 }
166
167
168 # Get acquisition details
169 if ( C4::Context->preference('AcquisitionDetails') ) {
170     my $orders = C4::Acquisition::GetHistory( biblionumber => $biblionumber, get_canceled_order => 1 );
171     $template->param(
172         orders => $orders,
173     );
174 }
175
176 if ( defined $dat->{'itemtype'} ) {
177     $dat->{imageurl} = getitemtypeimagelocation( 'intranet', $itemtypes->{ $dat->{itemtype} }{imageurl} );
178 }
179
180 $dat->{'count'} = scalar @all_items + @hostitems;
181 $dat->{'showncount'} = scalar @items + @hostitems;
182 $dat->{'hiddencount'} = scalar @all_items + @hostitems - scalar @items;
183
184 my $shelflocations = GetKohaAuthorisedValues('items.location', $fw);
185 my $collections    = GetKohaAuthorisedValues('items.ccode'   , $fw);
186 my $copynumbers    = GetKohaAuthorisedValues('items.copynumber', $fw);
187 my (@itemloop, @otheritemloop, %itemfields);
188 my $norequests = 1;
189 my $authvalcode_items_itemlost = GetAuthValCode('items.itemlost',$fw);
190 my $authvalcode_items_damaged  = GetAuthValCode('items.damaged', $fw);
191
192 my $analytics_flag;
193 my $materials_flag; # set this if the items have anything in the materials field
194 my $currentbranch = C4::Context->userenv ? C4::Context->userenv->{branch} : undef;
195 if ($currentbranch and C4::Context->preference('SeparateHoldings')) {
196     $template->param(SeparateHoldings => 1);
197 }
198 my $separatebranch = C4::Context->preference('SeparateHoldingsBranch') || 'homebranch';
199 foreach my $item (@items) {
200     my $itembranchcode = $item->{$separatebranch};
201
202     # can place holds defaults to yes
203     $norequests = 0 unless ( ( $item->{'notforloan'} > 0 ) || ( $item->{'itemnotforloan'} > 0 ) );
204
205     $item->{imageurl} = defined $item->{itype} ? getitemtypeimagelocation('intranet', $itemtypes->{ $item->{itype} }{imageurl})
206                                                : '';
207
208     $item->{datedue} = format_sqldatetime($item->{datedue});
209     # item damaged, lost, withdrawn loops
210     $item->{itemlostloop} = GetAuthorisedValues($authvalcode_items_itemlost, $item->{itemlost}) if $authvalcode_items_itemlost;
211     if ($item->{damaged}) {
212         $item->{itemdamagedloop} = GetAuthorisedValues($authvalcode_items_damaged, $item->{damaged}) if $authvalcode_items_damaged;
213     }
214     #get shelf location and collection code description if they are authorised value.
215     # same thing for copy number
216     my $shelfcode = $item->{'location'};
217     $item->{'location'} = $shelflocations->{$shelfcode} if ( defined( $shelfcode ) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
218     my $ccode = $item->{'ccode'};
219     $item->{'ccode'} = $collections->{$ccode} if ( defined( $ccode ) && defined($collections) && exists( $collections->{$ccode} ) );
220     my $copynumber = $item->{'copynumber'};
221     $item->{'copynumber'} = $copynumbers->{$copynumber} if ( defined($copynumber) && defined($copynumbers) && exists( $copynumbers->{$copynumber} ) );
222     foreach (qw(ccode enumchron copynumber stocknumber itemnotes itemnotes_nonpublic uri)) {
223         $itemfields{$_} = 1 if ( $item->{$_} );
224     }
225
226     # checking for holds
227     my ($reservedate,$reservedfor,$expectedAt,undef,$wait) = GetReservesFromItemnumber($item->{itemnumber});
228     my $ItemBorrowerReserveInfo = C4::Members::GetMember( borrowernumber => $reservedfor);
229     
230     if (C4::Context->preference('HidePatronName')){
231         $item->{'hidepatronname'} = 1;
232     }
233
234     if ( defined $reservedate ) {
235         $item->{backgroundcolor} = 'reserved';
236         $item->{reservedate}     = $reservedate;
237         $item->{ReservedForBorrowernumber}     = $reservedfor;
238         $item->{ReservedForSurname}     = $ItemBorrowerReserveInfo->{'surname'};
239         $item->{ReservedForFirstname}   = $ItemBorrowerReserveInfo->{'firstname'};
240         $item->{ExpectedAtLibrary}      = $branches->{$expectedAt}{branchname};
241         $item->{Reservedcardnumber}             = $ItemBorrowerReserveInfo->{'cardnumber'};
242         # Check waiting status
243         $item->{waitingdate} = $wait;
244     }
245
246
247         # Check the transit status
248     my ( $transfertwhen, $transfertfrom, $transfertto ) = GetTransfers($item->{itemnumber});
249     if ( defined( $transfertwhen ) && ( $transfertwhen ne '' ) ) {
250         $item->{transfertwhen} = $transfertwhen;
251         $item->{transfertfrom} = $branches->{$transfertfrom}{branchname};
252         $item->{transfertto}   = $branches->{$transfertto}{branchname};
253         $item->{nocancel} = 1;
254     }
255
256     foreach my $f (qw( itemnotes )) {
257         if ($item->{$f}) {
258             $item->{$f} =~ s|\n|<br />|g;
259             $itemfields{$f} = 1;
260         }
261     }
262
263     #item has a host number if its biblio number does not match the current bib
264
265     if ($item->{biblionumber} ne $biblionumber){
266         $item->{hostbiblionumber} = $item->{biblionumber};
267         $item->{hosttitle} = GetBiblioData($item->{biblionumber})->{title};
268     }
269         
270     #count if item is used in analytical bibliorecords
271     my $countanalytics= GetAnalyticsCount($item->{itemnumber});
272     if ($countanalytics > 0){
273         $analytics_flag=1;
274         $item->{countanalytics} = $countanalytics;
275     }
276
277     if (defined($item->{'materials'}) && $item->{'materials'} =~ /\S/){
278         $materials_flag = 1;
279     }
280
281     if ( C4::Context->preference('UseCourseReserves') ) {
282         $item->{'course_reserves'} = GetItemCourseReservesInfo( itemnumber => $item->{'itemnumber'} );
283     }
284
285     if ( C4::Context->preference('IndependentBranches') ) {
286         my $userenv = C4::Context->userenv();
287         if ( not C4::Context->IsSuperLibrarian()
288             and $userenv->{branch} ne $item->{homebranch} ) {
289             $item->{cannot_be_edited} = 1;
290         }
291     }
292
293     if ($currentbranch and $currentbranch ne "NO_LIBRARY_SET"
294     and C4::Context->preference('SeparateHoldings')) {
295         if ($itembranchcode and $itembranchcode eq $currentbranch) {
296             push @itemloop, $item;
297         } else {
298             push @otheritemloop, $item;
299         }
300     } else {
301         push @itemloop, $item;
302     }
303 }
304
305 # Display only one tab if one items list is empty
306 if (scalar(@itemloop) == 0 || scalar(@otheritemloop) == 0) {
307     $template->param(SeparateHoldings => 0);
308     if (scalar(@itemloop) == 0) {
309         @itemloop = @otheritemloop;
310     }
311 }
312
313 $template->param( norequests => $norequests );
314 $template->param(
315         MARCNOTES   => $marcnotesarray,
316         MARCSUBJCTS => $marcsubjctsarray,
317         MARCAUTHORS => $marcauthorsarray,
318         MARCSERIES  => $marcseriesarray,
319         MARCURLS => $marcurlsarray,
320     MARCISBNS => $marcisbnsarray,
321         MARCHOSTS => $marchostsarray,
322         subtitle    => $subtitle,
323         itemdata_ccode      => $itemfields{ccode},
324         itemdata_enumchron  => $itemfields{enumchron},
325         itemdata_uri        => $itemfields{uri},
326         itemdata_copynumber => $itemfields{copynumber},
327         itemdata_stocknumber => $itemfields{stocknumber},
328         volinfo                         => $itemfields{enumchron},
329         itemdata_itemnotes  => $itemfields{itemnotes},
330         itemdata_nonpublicnotes => $itemfields{itemnotes_nonpublic},
331         z3950_search_params     => C4::Search::z3950_search_args($dat),
332         hostrecords         => $hostrecords,
333         analytics_flag  => $analytics_flag,
334         C4::Search::enabled_staff_search_views,
335         materials       => $materials_flag,
336 );
337
338 if (C4::Context->preference("AlternateHoldingsField") && scalar @items == 0) {
339     my $fieldspec = C4::Context->preference("AlternateHoldingsField");
340     my $subfields = substr $fieldspec, 3;
341     my $holdingsep = C4::Context->preference("AlternateHoldingsSeparator") || ' ';
342     my @alternateholdingsinfo = ();
343     my @holdingsfields = $record->field(substr $fieldspec, 0, 3);
344
345     for my $field (@holdingsfields) {
346         my %holding = ( holding => '' );
347         my $havesubfield = 0;
348         for my $subfield ($field->subfields()) {
349             if ((index $subfields, $$subfield[0]) >= 0) {
350                 $holding{'holding'} .= $holdingsep if (length $holding{'holding'} > 0);
351                 $holding{'holding'} .= $$subfield[1];
352                 $havesubfield++;
353             }
354         }
355         if ($havesubfield) {
356             push(@alternateholdingsinfo, \%holding);
357         }
358     }
359
360     $template->param(
361         ALTERNATEHOLDINGS   => \@alternateholdingsinfo,
362         );
363 }
364
365 my @results = ( $dat, );
366 foreach ( keys %{$dat} ) {
367     $template->param( "$_" => defined $dat->{$_} ? $dat->{$_} : '' );
368 }
369
370 # does not work: my %views_enabled = map { $_ => 1 } $template->query(loop => 'EnableViews');
371 # method query not found?!?!
372 $template->param( AmazonTld => get_amazon_tld() ) if ( C4::Context->preference("AmazonCoverImages"));
373 $template->param(
374     itemloop        => \@itemloop,
375     otheritemloop   => \@otheritemloop,
376     biblionumber        => $biblionumber,
377     ($analyze? 'analyze':'detailview') =>1,
378     subscriptions       => \@subs,
379     subscriptionsnumber => $subscriptionsnumber,
380     subscriptiontitle   => $dat->{title},
381     searchid            => $query->param('searchid'),
382 );
383
384 # $debug and $template->param(debug_display => 1);
385
386 # Lists
387
388 if (C4::Context->preference("virtualshelves") ) {
389     my $shelves = Koha::Virtualshelves->search(
390         {
391             biblionumber => $biblionumber,
392             category => 2,
393         },
394         {
395             join => 'virtualshelfcontents',
396         }
397     );
398     $template->param( 'shelves' => $shelves );
399 }
400
401 # XISBN Stuff
402 if (C4::Context->preference("FRBRizeEditions")==1) {
403     eval {
404         $template->param(
405             XISBNS => get_xisbns($isbn)
406         );
407     };
408     if ($@) { warn "XISBN Failed $@"; }
409 }
410
411 if ( C4::Context->preference("LocalCoverImages") == 1 ) {
412     my @images = ListImagesForBiblio($biblionumber);
413     $template->{VARS}->{localimages} = \@images;
414 }
415
416 # HTML5 Media
417 if ( (C4::Context->preference("HTML5MediaEnabled") eq 'both') or (C4::Context->preference("HTML5MediaEnabled") eq 'staff') ) {
418     $template->param( C4::HTML5Media->gethtml5media($record));
419 }
420
421 # Displaying tags
422
423 my $tag_quantity;
424 if (C4::Context->preference('TagsEnabled') and $tag_quantity = C4::Context->preference('TagsShowOnDetail')) {
425     $template->param(
426         TagsEnabled => 1,
427         TagsShowOnDetail => $tag_quantity
428     );
429     $template->param(TagLoop => get_tags({biblionumber=>$biblionumber, approved=>1,
430                                 'sort'=>'-weight', limit=>$tag_quantity}));
431 }
432
433 #we only need to pass the number of holds to the template
434 my $holds = C4::Reserves::GetReservesFromBiblionumber({ biblionumber => $biblionumber, all_dates => 1 });
435 $template->param( holdcount => scalar ( @$holds ) );
436
437 my $StaffDetailItemSelection = C4::Context->preference('StaffDetailItemSelection');
438 if ($StaffDetailItemSelection) {
439     # Only enable item selection if user can execute at least one action
440     if (
441         $flags->{superlibrarian}
442         || (
443             ref $flags->{tools} eq 'HASH' && (
444                 $flags->{tools}->{items_batchmod}       # Modify selected items
445                 || $flags->{tools}->{items_batchdel}    # Delete selected items
446             )
447         )
448         || ( ref $flags->{tools} eq '' && $flags->{tools} )
449       )
450     {
451         $template->param(
452             StaffDetailItemSelection => $StaffDetailItemSelection );
453     }
454 }
455
456 my @allorders_using_biblio = GetOrdersByBiblionumber ($biblionumber);
457 my @deletedorders_using_biblio;
458 my @orders_using_biblio;
459 my @baskets_orders;
460 my @baskets_deletedorders;
461
462 foreach my $myorder (@allorders_using_biblio) {
463     my $basket = $myorder->{'basketno'};
464     if ((defined $myorder->{'datecancellationprinted'}) and  ($myorder->{'datecancellationprinted'} ne '0000-00-00') ){
465         push @deletedorders_using_biblio, $myorder;
466         unless (grep(/^$basket$/, @baskets_deletedorders)){
467             push @baskets_deletedorders,$myorder->{'basketno'};
468         }
469     }
470     else {
471         push @orders_using_biblio, $myorder;
472         unless (grep(/^$basket$/, @baskets_orders)){
473             push @baskets_orders,$myorder->{'basketno'};
474             }
475     }
476 }
477
478 my $count_orders_using_biblio = scalar @orders_using_biblio ;
479 $template->param (countorders => $count_orders_using_biblio);
480
481 my $count_deletedorders_using_biblio = scalar @deletedorders_using_biblio ;
482 $template->param (countdeletedorders => $count_deletedorders_using_biblio);
483
484 $template->param (basketsorders => \@baskets_orders);
485 $template->param (basketsdeletedorders => \@baskets_deletedorders);
486
487 output_html_with_http_headers $query, $cookie, $template->output;