Bug 15263: (QA followup) Use the new XSLTParse4Display everywhere
[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
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20
21 use strict;
22 use warnings;
23
24 use CGI qw ( -utf8 );
25 use C4::Auth;
26 use C4::Koha;
27 use C4::Serials;
28 use C4::Letters;
29 use C4::Output;
30 use C4::Context;
31
32
33 my $query      = new CGI;
34 my $op         = $query->param('op');
35 my $dbh        = C4::Context->dbh;
36 my $selectview = $query->param('selectview');
37 $selectview = C4::Context->preference("SubscriptionHistory") unless $selectview;
38
39 my $sth;
40
41 # my $id;
42 my ( $template, $loggedinuser, $cookie );
43 my $biblionumber = $query->param('biblionumber');
44 if ( $selectview eq "full" ) {
45     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
46         {
47             template_name   => "opac-full-serial-issues.tt",
48             query           => $query,
49             type            => "opac",
50             authnotrequired => 1,
51             debug           => 1,
52         }
53     );
54     my $subscriptions = GetFullSubscriptionsFromBiblionumber($biblionumber);
55     my $subscriptioninformation=PrepareSerialsData($subscriptions);
56     # PrepareSerialsData does some bogus stuff that the template could handle
57     # But at least it sorts the array by the year field so we dont have to
58     # find 'manage' if its there
59     if ($subscriptioninformation->[0]->{year} eq 'manage') {
60         shift @{$subscriptioninformation};
61     }
62
63     # now, check is there is an alert subscription for one of the subscriptions
64     if ($loggedinuser) {
65         foreach (@$subscriptions) {
66             if (getalert($loggedinuser,'issue',$_->{subscriptionid})) {
67                 $_->{hasalert} = 1;
68             }
69         }
70     }
71
72     my $title   = $subscriptions->[0]->{bibliotitle};
73     my $yearmin = $subscriptions->[0]->{year};
74     my $yearmax = $subscriptions->[ -1 ]->{year};
75
76
77     # replace CR by <br> in librarian note
78     # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
79
80     $template->param(
81         biblionumber   => scalar $query->param('biblionumber'),
82         years          => $subscriptioninformation,
83         yearmin        => $yearmin,
84         yearmax        => $yearmax,
85         bibliotitle    => $title,
86         suggestion     => C4::Context->preference("suggestion"),
87         virtualshelves => C4::Context->preference("virtualshelves"),
88     );
89
90 }
91 else {
92     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
93         {
94             template_name   => "opac-serial-issues.tt",
95             query           => $query,
96             type            => "opac",
97             authnotrequired => 1,
98             debug           => 1,
99         }
100     );
101
102     my $subscriptions = GetSubscriptionsFromBiblionumber($biblionumber);
103     # now, check is there is an alert subscription for one of the subscriptions
104     if ($loggedinuser){
105         foreach (@$subscriptions) {
106             my $subscription = getalert($loggedinuser,'issue',$_->{subscriptionid});
107             if (@$subscription[0]) {
108                 $_->{hasalert} = 1;
109             }
110         }
111     }
112
113     # replace CR by <br> in librarian note
114     # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
115
116     $template->param(
117         biblionumber      => scalar $query->param('biblionumber'),
118         subscription_LOOP => $subscriptions,
119     );
120 }
121 output_html_with_http_headers $query, $cookie, $template->output;