Change to patron-renewal javascript to fix issues described in Bug 1620
[koha.git] / opac / opac-serial-issues.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20
21 use strict;
22 use CGI;
23 use C4::Auth;
24 use C4::Koha;
25 use C4::Date;
26 use C4::Serials;
27 use C4::Letters;
28 use C4::Output;
29 use C4::Context;
30
31
32 my $query      = new CGI;
33 my $op         = $query->param('op');
34 my $dbh        = C4::Context->dbh;
35 my $selectview = $query->param('selectview');
36 $selectview = C4::Context->preference("SubscriptionHistory") unless $selectview;
37
38 my $sth;
39
40 # my $id;
41 my ( $template, $loggedinuser, $cookie );
42 my $biblionumber = $query->param('biblionumber');
43 if ( $selectview eq "full" ) {
44     my $subscriptions = GetFullSubscriptionsFromBiblionumber($biblionumber);
45
46     my $title   = $subscriptions->[0]{bibliotitle};
47     my $yearmin = $subscriptions->[0]{year};
48     my $yearmax = $subscriptions->[ scalar(@$subscriptions) - 1 ]{year};
49
50     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
51         {
52             template_name   => "opac-full-serial-issues.tmpl",
53             query           => $query,
54             type            => "opac",
55             authnotrequired => 1,
56             debug           => 1,
57         }
58     );
59
60     # replace CR by <br> in librarian note
61     # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
62
63     $template->param(
64         biblionumber   => $query->param('biblionumber'),
65         years          => $subscriptions,
66         yearmin        => $yearmin,
67         yearmax        => $yearmax,
68         bibliotitle    => $title,
69         suggestion     => C4::Context->preference("suggestion"),
70         virtualshelves => C4::Context->preference("virtualshelves"),
71     );
72
73 }
74 else {
75     my $subscriptions = GetSubscriptionsFromBiblionumber($biblionumber);
76
77     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
78         {
79             template_name   => "opac-serial-issues.tmpl",
80             query           => $query,
81             type            => "opac",
82             authnotrequired => 1,
83             debug           => 1,
84         }
85     );
86
87     # replace CR by <br> in librarian note
88     # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
89
90     $template->param(
91         biblionumber      => $query->param('biblionumber'),
92         subscription_LOOP => $subscriptions,
93     );
94 }
95 output_html_with_http_headers $query, $cookie, $template->output;