Items from Bug 2167 ("URL handling in staff client inconsistent"): Removing display...
[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 under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17
18
19 use strict;
20 require Exporter;
21 use CGI;
22 use C4::Auth;
23 use C4::Date qw/format_date/;
24 use C4::Koha;
25 use C4::Serials;    #uses getsubscriptionfrom biblionumber
26 use C4::Output;
27 use C4::Biblio;
28 use C4::Items;
29 use C4::Circulation;
30 use C4::Branch;
31 use C4::Reserves;
32 use C4::Members;
33 use C4::Serials;
34 use C4::XISBN qw(get_xisbns get_biblionumber_from_isbn get_biblio_from_xisbn);
35 use C4::Amazon;
36
37 # use Smart::Comments;
38
39 my $query = new CGI;
40 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
41     {
42         template_name   => "catalogue/detail.tmpl",
43         query           => $query,
44         type            => "intranet",
45         authnotrequired => 0,
46         flagsrequired   => { catalogue => 1 },
47     }
48 );
49
50 my $biblionumber = $query->param('biblionumber');
51 my $fw = GetFrameworkCode($biblionumber);
52
53 ## get notes and subjects from MARC record
54 my $marcflavour      = C4::Context->preference("marcflavour");
55 my $record           = GetMarcBiblio($biblionumber);
56
57 unless (defined($record)) {
58     print $query->redirect("/cgi-bin/koha/errors/404.pl");
59         exit;
60 }
61
62 my $marcnotesarray   = GetMarcNotes( $record, $marcflavour );
63 my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
64 my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
65 my $marcseriesarray  = GetMarcSeries($record,$marcflavour);
66 my $marcurlsarray    = GetMarcUrls    ($record,$marcflavour);
67 my $subtitle         = C4::Biblio::get_koha_field_from_marc('bibliosubtitle', 'subtitle', $record, '');
68
69 # Get Branches, Itemtypes and Locations
70 my $branches = GetBranches();
71 my $itemtypes = GetItemTypes();
72
73 # FIXME: move this to a pm, check waiting status for holds
74 my $dbh = C4::Context->dbh;
75
76 # change back when ive fixed request.pl
77 my @items = &GetItemsInfo( $biblionumber, 'intra' );
78 my $dat = &GetBiblioData($biblionumber);
79
80 #coping with subscriptions
81 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
82 my @subscriptions       = GetSubscriptions( $dat->{title}, $dat->{issn}, $biblionumber );
83
84
85
86 my @subs;
87 foreach my $subscription (@subscriptions) {
88     my %cell;
89     $cell{subscriptionid}    = $subscription->{subscriptionid};
90     $cell{subscriptionnotes} = $subscription->{notes};
91
92     #get the three latest serials.
93     $cell{latestserials} =
94       GetLatestSerials( $subscription->{subscriptionid}, 3 );
95     push @subs, \%cell;
96 }
97 $dat->{imageurl} = getitemtypeimagesrc() . "/".$itemtypes->{ $dat->{itemtype} }{imageurl};
98 $dat->{'count'} = @items;
99 my @itemloop;
100 my $norequests = 1;
101 foreach my $item (@items) {
102
103     # can place holds defaults to yes
104     $norequests = 0 unless ( ( $item->{'notforloan'} > 0 ) || ( $item->{'itemnotforloan'} > 0 ) );
105
106     # format some item fields for display
107     $item->{ $item->{'publictype'} } = 1;
108     $item->{imageurl} = getitemtypeimagesrc() . "/".$itemtypes->{ $item->{itype} }{imageurl};
109     $item->{datedue} = format_date($item->{datedue});
110     $item->{datelastseen} = format_date($item->{datelastseen});
111     $item->{onloan} = format_date($item->{onloan});
112     # item damaged, lost, withdrawn loops
113     $item->{itemlostloop}= GetAuthorisedValues(GetAuthValCode('items.itemlost',$fw),$item->{itemlost}) if GetAuthValCode('items.itemlost',$fw);
114     if ($item->{damaged}) {
115         $item->{itemdamagedloop}= GetAuthorisedValues(GetAuthValCode('items.damaged',$fw),$item->{damaged}) if GetAuthValCode('items.damaged',$fw);
116     }
117     #get shelf location and collection code description if they are authorised value.
118         my $shelflocations = GetKohaAuthorisedValues('items.location',$fw );
119         my $shelfcode= $item->{'location'};
120         $item->{'location'} = $shelflocations->{$shelfcode} if(defined($shelflocations) && exists($shelflocations->{$shelfcode})); 
121     my $collections =  GetKohaAuthorisedValues('items.ccode',$fw );
122         my $ccode= $item->{'ccode'};
123         $item->{'ccode'} = $collections->{$ccode} if(defined($collections) && exists($collections->{$ccode})); 
124
125     # checking for holds
126     my ($reservedate,$reservedfor,$expectedAt) = GetReservesFromItemnumber($item->{itemnumber});
127     my $ItemBorrowerReserveInfo = GetMemberDetails( $reservedfor, 0);
128
129     if ( defined $reservedate ) {
130         $item->{backgroundcolor} = 'reserved';
131         $item->{reservedate}     = format_date($reservedate);
132         $item->{ReservedForBorrowernumber}     = $reservedfor;
133         $item->{ReservedForSurname}     = $ItemBorrowerReserveInfo->{'surname'};
134         $item->{ReservedForFirstname}     = $ItemBorrowerReserveInfo->{'firstname'};
135         $item->{ExpectedAtLibrary}     = $branches->{$expectedAt}{branchname};
136     }
137
138         # Check the transit status
139     my ( $transfertwhen, $transfertfrom, $transfertto ) = GetTransfers($item->{itemnumber});
140     if ( $transfertwhen ne '' ) {
141         $item->{transfertwhen} = format_date($transfertwhen);
142         $item->{transfertfrom} = $branches->{$transfertfrom}{branchname};
143         $item->{transfertto} = $branches->{$transfertto}{branchname};
144         $item->{nocancel} = 1;
145     }
146
147     # FIXME: move this to a pm, check waiting status for holds
148     my $sth2 = $dbh->prepare("SELECT * FROM reserves WHERE borrowernumber=? AND itemnumber=? AND found='W'");
149     $sth2->execute($item->{ReservedForBorrowernumber},$item->{itemnumber});
150     while (my $wait_hashref = $sth2->fetchrow_hashref) {
151         $item->{waitingdate} = format_date($wait_hashref->{waitingdate});
152     }
153
154     push @itemloop, $item;
155 }
156
157 $template->param( norequests => $norequests );
158
159     $template->param(
160         MARCNOTES   => $marcnotesarray,
161         MARCSUBJCTS => $marcsubjctsarray,
162         MARCAUTHORS => $marcauthorsarray,
163         MARCSERIES  => $marcseriesarray,
164         MARCURLS => $marcurlsarray,
165         subtitle    => $subtitle,
166     );
167
168 my @results = ( $dat, );
169 foreach ( keys %{$dat} ) {
170     $template->param( "$_" => $dat->{$_} . "" );
171 }
172
173 $template->param(
174     itemloop        => \@itemloop,
175     biblionumber        => $biblionumber,
176     detailview => 1,
177     subscriptions       => \@subs,
178     subscriptionsnumber => $subscriptionsnumber,
179     subscriptiontitle   => $dat->{title},
180 );
181
182 # XISBN Stuff
183 my $xisbn=$dat->{'isbn'};
184 $xisbn =~ s/(p|-| |:)//g;
185 $template->param(amazonisbn => $xisbn);
186 if (C4::Context->preference("FRBRizeEditions")==1) {
187     eval {
188         $template->param(
189             xisbn => $xisbn,
190             XISBNS => get_xisbns($xisbn)
191         );
192     };
193     if ($@) { warn "XISBN Failed $@"; }
194 }
195 if ( C4::Context->preference("AmazonContent") == 1 ) {
196     my $similar_products_exist;
197     my $amazon_details = &get_amazon_details( $xisbn );
198     my $item_attributes = \%{$amazon_details->{Items}->{Item}->{ItemAttributes}};
199     my $customer_reviews = \@{$amazon_details->{Items}->{Item}->{CustomerReviews}->{Review}};
200     my @similar_products;
201     for my $similar_product (@{$amazon_details->{Items}->{Item}->{SimilarProducts}->{SimilarProduct}}) {
202         # do we have any of these isbns in our collection?
203         my $similar_biblionumbers = get_biblionumber_from_isbn($similar_product->{ASIN});
204         # verify that there is at least one similar item
205         $similar_products_exist++ if ${@$similar_biblionumbers}[0];
206         push @similar_products, +{ similar_biblionumbers => $similar_biblionumbers, title => $similar_product->{Title}, ASIN => $similar_product->{ASIN}  };
207     }
208     my $editorial_reviews = \@{$amazon_details->{Items}->{Item}->{EditorialReviews}->{EditorialReview}};
209     my $average_rating = $amazon_details->{Items}->{Item}->{CustomerReviews}->{AverageRating};
210     $template->param( AmazonSimilarItems => $similar_products_exist );
211     $template->param( amazon_average_rating => $average_rating * 20);
212     $template->param( AMAZON_CUSTOMER_REVIEWS    => $customer_reviews );
213     $template->param( AMAZON_SIMILAR_PRODUCTS => \@similar_products );
214     $template->param( AMAZON_EDITORIAL_REVIEWS    => $editorial_reviews );
215 }
216 output_html_with_http_headers $query, $cookie, $template->output;