b94935feee701be4b51d1ae766a4c2b2b2114a43
[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 Modern::Perl;
22
23 use CGI qw ( -utf8 );
24 use C4::Auth;
25 use C4::Koha;
26 use C4::Serials;
27 use C4::Letters;
28 use C4::Output;
29 use C4::Context;
30
31 my $query      = new CGI;
32 my $op         = $query->param('op');
33 my $dbh        = C4::Context->dbh;
34 my $selectview = $query->param('selectview');
35 $selectview = C4::Context->preference("SubscriptionHistory") unless $selectview;
36
37 my $sth;
38
39 # my $id;
40 my ( $template, $loggedinuser, $cookie );
41 my $biblionumber = $query->param('biblionumber');
42 if ( $selectview eq "full" ) {
43     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
44         {
45             template_name   => "opac-full-serial-issues.tt",
46             query           => $query,
47             type            => "opac",
48             authnotrequired => 1,
49             debug           => 1,
50         }
51     );
52     my $subscriptions = GetFullSubscriptionsFromBiblionumber($biblionumber);
53     my $subscriptioninformation=PrepareSerialsData($subscriptions);
54     # PrepareSerialsData does some bogus stuff that the template could handle
55     # But at least it sorts the array by the year field so we dont have to
56     # find 'manage' if its there
57     if ($subscriptioninformation->[0]->{year} eq 'manage') {
58         shift @{$subscriptioninformation};
59     }
60
61     # now, check is there is an alert subscription for one of the subscriptions
62     if ($loggedinuser) {
63         foreach (@$subscriptions) {
64             my $subscription = Koha::Subscriptions->find( $_->{subscriptionid} );
65             my $subscriber = $subscription->subscribers->find( $loggedinuser );
66             $_->{hasalert} = 1 if $subscriber;
67         }
68     }
69
70     my $title   = $subscriptions->[0]->{bibliotitle};
71     my $yearmin = $subscriptions->[0]->{year};
72     my $yearmax = $subscriptions->[ -1 ]->{year};
73
74     # replace CR by <br> in librarian note
75     # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
76
77     $template->param(
78         biblionumber   => scalar $query->param('biblionumber'),
79         years          => $subscriptioninformation,
80         yearmin        => $yearmin,
81         yearmax        => $yearmax,
82         bibliotitle    => $title,
83         suggestion     => C4::Context->preference("suggestion"),
84         virtualshelves => C4::Context->preference("virtualshelves"),
85     );
86
87 }
88 else {
89     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
90         {
91             template_name   => "opac-serial-issues.tt",
92             query           => $query,
93             type            => "opac",
94             authnotrequired => 1,
95             debug           => 1,
96         }
97     );
98
99     my $subscriptions = GetSubscriptionsFromBiblionumber($biblionumber);
100     # now, check is there is an alert subscription for one of the subscriptions
101     if ($loggedinuser) {
102         foreach (@$subscriptions) {
103             my $subscription = Koha::Subscriptions->find( $_->{subscriptionid} );
104             my $subscriber = $subscription->subscribers->find( $loggedinuser );
105             $_->{hasalert} = 1 if $subscriber;
106         }
107     }
108
109     # replace CR by <br> in librarian note
110     # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
111
112     my $title   = $subscriptions->[0]->{bibliotitle};
113
114     $template->param(
115         biblionumber      => scalar $query->param('biblionumber'),
116         subscription_LOOP => $subscriptions,
117         bibliotitle        => $title,
118     );
119 }
120 output_html_with_http_headers $query, $cookie, $template->output;