3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
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.
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.
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>.
35 my $op = $query->param('op');
36 my $dbh = C4
::Context
->dbh;
37 my $selectview = $query->param('selectview');
38 $selectview = C4
::Context
->preference("SubscriptionHistory") unless $selectview;
43 my ( $template, $loggedinuser, $cookie );
44 my $biblionumber = $query->param('biblionumber');
45 if ( $selectview eq "full" ) {
46 ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
48 template_name
=> "opac-full-serial-issues.tt",
55 my $subscriptions = GetFullSubscriptionsFromBiblionumber
($biblionumber);
56 my $subscriptioninformation=PrepareSerialsData
($subscriptions);
57 # PrepareSerialsData does some bogus stuff that the template could handle
58 # But at least it sorts the array by the year field so we dont have to
59 # find 'manage' if its there
60 if ($subscriptioninformation->[0]->{year
} eq 'manage') {
61 shift @
{$subscriptioninformation};
64 # now, check is there is an alert subscription for one of the subscriptions
66 foreach (@
$subscriptions) {
67 if (getalert
($loggedinuser,'issue',$_->{subscriptionid
})) {
73 my $title = $subscriptions->[0]->{bibliotitle
};
74 my $yearmin = $subscriptions->[0]->{year
};
75 my $yearmax = $subscriptions->[ -1 ]->{year
};
78 # replace CR by <br> in librarian note
79 # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
82 biblionumber
=> $query->param('biblionumber'),
83 years
=> $subscriptioninformation,
86 bibliotitle
=> $title,
87 suggestion
=> C4
::Context
->preference("suggestion"),
88 virtualshelves
=> C4
::Context
->preference("virtualshelves"),
93 ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
95 template_name
=> "opac-serial-issues.tt",
103 my $subscriptions = GetSubscriptionsFromBiblionumber
($biblionumber);
104 # now, check is there is an alert subscription for one of the subscriptions
106 foreach (@
$subscriptions) {
107 my $subscription = getalert
($loggedinuser,'issue',$_->{subscriptionid
});
108 if (@
$subscription[0]) {
114 # replace CR by <br> in librarian note
115 # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
118 biblionumber
=> $query->param('biblionumber'),
119 subscription_LOOP
=> $subscriptions,
122 output_html_with_http_headers
$query, $cookie, $template->output;