Fix bug on opac-detail.pl with switch statement
[koha.git] / opac / opac-readingrecord.pl
blob7a77f59ad31c51ed9046ad4c49d14b0cce9e3152
1 #!/usr/bin/perl
3 # This file is part of Koha.
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.
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.
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
19 use strict;
20 use warnings;
22 use CGI;
24 use C4::Auth;
25 use C4::Koha;
26 use C4::Biblio;
27 use C4::Circulation;
28 use C4::Dates qw/format_date/;
29 use C4::Members;
31 use C4::Output;
33 my $query = new CGI;
34 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
36 template_name => "opac-readingrecord.tmpl",
37 query => $query,
38 type => "opac",
39 authnotrequired => 0,
40 flagsrequired => { borrow => 1 },
41 debug => 1,
45 # get borrower information ....
46 my ( $borr ) = GetMemberDetails( $borrowernumber );
48 $template->param($borr);
50 my $itemtypes = GetItemTypes();
52 # get the record
53 my $order = $query->param('order') || '';
54 if ( $order eq '' ) {
55 $order = "date_due desc";
56 $template->param( orderbydate => 1 );
59 if ( $order eq 'title' ) {
60 $template->param( orderbytitle => 1 );
63 if ( $order eq 'author' ) {
64 $template->param( orderbyauthor => 1 );
67 my $limit = $query->param('limit') || 50;
68 if ( $limit eq 'full' ) {
69 $limit = 0;
71 else {
72 $limit = 50;
75 my ( $issues ) = GetAllIssues( $borrowernumber, $order, $limit );
77 my @bordat;
78 $bordat[0] = $borr;
79 $template->param( BORROWER_INFO => \@bordat );
81 my @loop_reading;
83 foreach my $issue (@{$issues} ) {
84 my %line;
86 my $record = GetMarcBiblio($issue->{'biblionumber'});
88 # XISBN Stuff
89 my $isbn = GetNormalizedISBN($issue->{'isbn'});
90 $line{normalized_isbn} = $isbn;
91 $line{biblionumber} = $issue->{'biblionumber'};
92 $line{title} = $issue->{'title'};
93 $line{author} = $issue->{'author'};
94 $line{itemcallnumber} = $issue->{'itemcallnumber'};
95 $line{date_due} = format_date( $issue->{'date_due'} );
96 $line{returndate} = format_date( $issue->{'returndate'} );
97 $line{volumeddesc} = $issue->{'volumeddesc'};
98 if($issue->{'itemtype'}) {
99 $line{'description'} = $itemtypes->{ $issue->{'itemtype'} }->{'description'};
100 $line{imageurl} = getitemtypeimagelocation( 'opac', $itemtypes->{ $issue->{'itemtype'} }->{'imageurl'} );
102 push( @loop_reading, \%line );
103 $line{subtitle} = GetRecordValue('subtitle', $record, GetFrameworkCode($issue->{'biblionumber'}));
106 if (C4::Context->preference('BakerTaylorEnabled')) {
107 $template->param(
108 JacketImages=>1,
109 BakerTaylorEnabled => 1,
110 BakerTaylorImageURL => &image_url(),
111 BakerTaylorLinkURL => &link_url(),
112 BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
116 BEGIN {
117 if (C4::Context->preference('BakerTaylorEnabled')) {
118 require C4::External::BakerTaylor;
119 import C4::External::BakerTaylor qw(&image_url &link_url);
123 for(qw(AmazonCoverImages GoogleJackets)) { # BakerTaylorEnabled handled above
124 C4::Context->preference($_) or next;
125 $template->param($_=>1);
126 $template->param(JacketImages=>1);
129 $template->param(
130 READING_RECORD => \@loop_reading,
131 limit => $limit,
132 showfulllink => 1,
133 readingrecview => 1,
134 count => scalar @loop_reading,
137 output_html_with_http_headers $query, $cookie, $template->output;