Bug 14879: Remove C4::Dates from catalogue/detail.pl
[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::VirtualShelves;
40 use C4::XSLT;
41 use C4::Images;
42 use Koha::DateUtils;
43 use C4::HTML5Media;
44 use C4::CourseReserves qw(GetItemCourseReservesInfo);
45 use C4::Acquisition qw(GetOrdersByBiblionumber);
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     foreach (qw(datelastseen onloan)) {
209         $item->{$_} = output_pref({ dt => dt_from_string( $item->{$_} ), dateonly => 1 });
210     }
211     $item->{datedue} = format_sqldatetime($item->{datedue});
212     # item damaged, lost, withdrawn loops
213     $item->{itemlostloop} = GetAuthorisedValues($authvalcode_items_itemlost, $item->{itemlost}) if $authvalcode_items_itemlost;
214     if ($item->{damaged}) {
215         $item->{itemdamagedloop} = GetAuthorisedValues($authvalcode_items_damaged, $item->{damaged}) if $authvalcode_items_damaged;
216     }
217     #get shelf location and collection code description if they are authorised value.
218     # same thing for copy number
219     my $shelfcode = $item->{'location'};
220     $item->{'location'} = $shelflocations->{$shelfcode} if ( defined( $shelfcode ) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
221     my $ccode = $item->{'ccode'};
222     $item->{'ccode'} = $collections->{$ccode} if ( defined( $ccode ) && defined($collections) && exists( $collections->{$ccode} ) );
223     my $copynumber = $item->{'copynumber'};
224     $item->{'copynumber'} = $copynumbers->{$copynumber} if ( defined($copynumber) && defined($copynumbers) && exists( $copynumbers->{$copynumber} ) );
225     foreach (qw(ccode enumchron copynumber stocknumber itemnotes uri)) {
226         $itemfields{$_} = 1 if ( $item->{$_} );
227     }
228
229     # checking for holds
230     my ($reservedate,$reservedfor,$expectedAt,undef,$wait) = GetReservesFromItemnumber($item->{itemnumber});
231     my $ItemBorrowerReserveInfo = GetMemberDetails( $reservedfor, 0);
232     
233     if (C4::Context->preference('HidePatronName')){
234         $item->{'hidepatronname'} = 1;
235     }
236
237     if ( defined $reservedate ) {
238         $item->{backgroundcolor} = 'reserved';
239         $item->{reservedate}     = output_pref({ dt => dt_from_string($reservedate ), dateonly => 1 });
240         $item->{ReservedForBorrowernumber}     = $reservedfor;
241         $item->{ReservedForSurname}     = $ItemBorrowerReserveInfo->{'surname'};
242         $item->{ReservedForFirstname}   = $ItemBorrowerReserveInfo->{'firstname'};
243         $item->{ExpectedAtLibrary}      = $branches->{$expectedAt}{branchname};
244         $item->{Reservedcardnumber}             = $ItemBorrowerReserveInfo->{'cardnumber'};
245         # Check waiting status
246         $item->{waitingdate} = $wait;
247     }
248
249
250         # Check the transit status
251     my ( $transfertwhen, $transfertfrom, $transfertto ) = GetTransfers($item->{itemnumber});
252     if ( defined( $transfertwhen ) && ( $transfertwhen ne '' ) ) {
253         $item->{transfertwhen} = output_pref({ dt => dt_from_string($transfertwhen ), dateonly => 1 });
254         $item->{transfertfrom} = $branches->{$transfertfrom}{branchname};
255         $item->{transfertto}   = $branches->{$transfertto}{branchname};
256         $item->{nocancel} = 1;
257     }
258
259     # item has a host number if its biblio number does not match the current bib
260     if ($item->{biblionumber} ne $biblionumber){
261         $item->{hostbiblionumber} = $item->{biblionumber};
262         $item->{hosttitle} = GetBiblioData($item->{biblionumber})->{title};
263     }
264         
265     #count if item is used in analytical bibliorecords
266     my $countanalytics= GetAnalyticsCount($item->{itemnumber});
267     if ($countanalytics > 0){
268         $analytics_flag=1;
269         $item->{countanalytics} = $countanalytics;
270     }
271
272     if (defined($item->{'materials'}) && $item->{'materials'} =~ /\S/){
273         $materials_flag = 1;
274     }
275
276     if ( C4::Context->preference('UseCourseReserves') ) {
277         $item->{'course_reserves'} = GetItemCourseReservesInfo( itemnumber => $item->{'itemnumber'} );
278     }
279
280     if ( C4::Context->preference('IndependentBranches') ) {
281         my $userenv = C4::Context->userenv();
282         if ( not C4::Context->IsSuperLibrarian()
283             and $userenv->{branch} ne $item->{homebranch} ) {
284             $item->{cannot_be_edited} = 1;
285         }
286     }
287
288     if ($currentbranch and $currentbranch ne "NO_LIBRARY_SET"
289     and C4::Context->preference('SeparateHoldings')) {
290         if ($itembranchcode and $itembranchcode eq $currentbranch) {
291             push @itemloop, $item;
292         } else {
293             push @otheritemloop, $item;
294         }
295     } else {
296         push @itemloop, $item;
297     }
298 }
299
300 # Display only one tab if one items list is empty
301 if (scalar(@itemloop) == 0 || scalar(@otheritemloop) == 0) {
302     $template->param(SeparateHoldings => 0);
303     if (scalar(@itemloop) == 0) {
304         @itemloop = @otheritemloop;
305     }
306 }
307
308 $template->param( norequests => $norequests );
309 $template->param(
310         MARCNOTES   => $marcnotesarray,
311         MARCSUBJCTS => $marcsubjctsarray,
312         MARCAUTHORS => $marcauthorsarray,
313         MARCSERIES  => $marcseriesarray,
314         MARCURLS => $marcurlsarray,
315     MARCISBNS => $marcisbnsarray,
316         MARCHOSTS => $marchostsarray,
317         subtitle    => $subtitle,
318         itemdata_ccode      => $itemfields{ccode},
319         itemdata_enumchron  => $itemfields{enumchron},
320         itemdata_uri        => $itemfields{uri},
321         itemdata_copynumber => $itemfields{copynumber},
322         itemdata_stocknumber => $itemfields{stocknumber},
323         volinfo                         => $itemfields{enumchron},
324     itemdata_itemnotes  => $itemfields{itemnotes},
325         z3950_search_params     => C4::Search::z3950_search_args($dat),
326         hostrecords         => $hostrecords,
327         analytics_flag  => $analytics_flag,
328         C4::Search::enabled_staff_search_views,
329         materials       => $materials_flag,
330 );
331
332 if (C4::Context->preference("AlternateHoldingsField") && scalar @items == 0) {
333     my $fieldspec = C4::Context->preference("AlternateHoldingsField");
334     my $subfields = substr $fieldspec, 3;
335     my $holdingsep = C4::Context->preference("AlternateHoldingsSeparator") || ' ';
336     my @alternateholdingsinfo = ();
337     my @holdingsfields = $record->field(substr $fieldspec, 0, 3);
338
339     for my $field (@holdingsfields) {
340         my %holding = ( holding => '' );
341         my $havesubfield = 0;
342         for my $subfield ($field->subfields()) {
343             if ((index $subfields, $$subfield[0]) >= 0) {
344                 $holding{'holding'} .= $holdingsep if (length $holding{'holding'} > 0);
345                 $holding{'holding'} .= $$subfield[1];
346                 $havesubfield++;
347             }
348         }
349         if ($havesubfield) {
350             push(@alternateholdingsinfo, \%holding);
351         }
352     }
353
354     $template->param(
355         ALTERNATEHOLDINGS   => \@alternateholdingsinfo,
356         );
357 }
358
359 my @results = ( $dat, );
360 foreach ( keys %{$dat} ) {
361     $template->param( "$_" => defined $dat->{$_} ? $dat->{$_} : '' );
362 }
363
364 # does not work: my %views_enabled = map { $_ => 1 } $template->query(loop => 'EnableViews');
365 # method query not found?!?!
366 $template->param( AmazonTld => get_amazon_tld() ) if ( C4::Context->preference("AmazonCoverImages"));
367 $template->param(
368     itemloop        => \@itemloop,
369     otheritemloop   => \@otheritemloop,
370     biblionumber        => $biblionumber,
371     ($analyze? 'analyze':'detailview') =>1,
372     subscriptions       => \@subs,
373     subscriptionsnumber => $subscriptionsnumber,
374     subscriptiontitle   => $dat->{title},
375     searchid            => $query->param('searchid'),
376 );
377
378 # $debug and $template->param(debug_display => 1);
379
380 # Lists
381
382 if (C4::Context->preference("virtualshelves") ) {
383    $template->param( 'GetShelves' => GetBibliosShelves( $biblionumber ) );
384 }
385
386 # XISBN Stuff
387 if (C4::Context->preference("FRBRizeEditions")==1) {
388     eval {
389         $template->param(
390             XISBNS => get_xisbns($isbn)
391         );
392     };
393     if ($@) { warn "XISBN Failed $@"; }
394 }
395
396 if ( C4::Context->preference("LocalCoverImages") == 1 ) {
397     my @images = ListImagesForBiblio($biblionumber);
398     $template->{VARS}->{localimages} = \@images;
399 }
400
401 # HTML5 Media
402 if ( (C4::Context->preference("HTML5MediaEnabled") eq 'both') or (C4::Context->preference("HTML5MediaEnabled") eq 'staff') ) {
403     $template->param( C4::HTML5Media->gethtml5media($record));
404 }
405
406 # Displaying tags
407
408 my $tag_quantity;
409 if (C4::Context->preference('TagsEnabled') and $tag_quantity = C4::Context->preference('TagsShowOnDetail')) {
410     $template->param(
411         TagsEnabled => 1,
412         TagsShowOnDetail => $tag_quantity
413     );
414     $template->param(TagLoop => get_tags({biblionumber=>$biblionumber, approved=>1,
415                                 'sort'=>'-weight', limit=>$tag_quantity}));
416 }
417
418 #we only need to pass the number of holds to the template
419 my $holds = C4::Reserves::GetReservesFromBiblionumber({ biblionumber => $biblionumber, all_dates => 1 });
420 $template->param( holdcount => scalar ( @$holds ) );
421
422 my $StaffDetailItemSelection = C4::Context->preference('StaffDetailItemSelection');
423 if ($StaffDetailItemSelection) {
424     # Only enable item selection if user can execute at least one action
425     if (
426         $flags->{superlibrarian}
427         || (
428             ref $flags->{tools} eq 'HASH' && (
429                 $flags->{tools}->{items_batchmod}       # Modify selected items
430                 || $flags->{tools}->{items_batchdel}    # Delete selected items
431             )
432         )
433         || ( ref $flags->{tools} eq '' && $flags->{tools} )
434       )
435     {
436         $template->param(
437             StaffDetailItemSelection => $StaffDetailItemSelection );
438     }
439 }
440
441 my @allorders_using_biblio = GetOrdersByBiblionumber ($biblionumber);
442 my @deletedorders_using_biblio;
443 my @orders_using_biblio;
444 my @baskets_orders;
445 my @baskets_deletedorders;
446
447 foreach my $myorder (@allorders_using_biblio) {
448     my $basket = $myorder->{'basketno'};
449     if ((defined $myorder->{'datecancellationprinted'}) and  ($myorder->{'datecancellationprinted'} ne '0000-00-00') ){
450         push @deletedorders_using_biblio, $myorder;
451         unless (grep(/^$basket$/, @baskets_deletedorders)){
452             push @baskets_deletedorders,$myorder->{'basketno'};
453         }
454     }
455     else {
456         push @orders_using_biblio, $myorder;
457         unless (grep(/^$basket$/, @baskets_orders)){
458             push @baskets_orders,$myorder->{'basketno'};
459             }
460     }
461 }
462
463 my $count_orders_using_biblio = scalar @orders_using_biblio ;
464 $template->param (countorders => $count_orders_using_biblio);
465
466 my $count_deletedorders_using_biblio = scalar @deletedorders_using_biblio ;
467 $template->param (countdeletedorders => $count_deletedorders_using_biblio);
468
469 $template->param (basketsorders => \@baskets_orders);
470 $template->param (basketsdeletedorders => \@baskets_deletedorders);
471
472 output_html_with_http_headers $query, $cookie, $template->output;