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 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
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.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 this script give more information about a susbcription given on input arg.
34 can be equal to "full" or not.
37 the biblionumber this script has to give more infos.
56 my $dbh = C4
::Context
->dbh;
57 my $selectview = $query->param('selectview');
58 $selectview = C4
::Context
->preference("SubscriptionHistory") unless $selectview;
60 my ($template, $loggedinuser, $cookie);
61 my $biblionumber = $query->param('biblionumber');
62 if ($selectview eq "full"){
63 my $subscriptions = GetFullSubscriptionsFromBiblionumber
($biblionumber);
65 my $title = $subscriptions->[0]{bibliotitle
};
66 my $yearmin=$subscriptions->[0]{year
};
67 my $yearmax=$subscriptions->[scalar(@
$subscriptions)-1]{year
};
69 ($template, $loggedinuser, $cookie)
70 = get_template_and_user
({template_name
=> "serials/serial-issues-full.tt",
73 flagsrequired
=> {serials
=> '*'},
76 # replace CR by <br> in librarian note
77 # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
80 biblionumber
=> $query->param('biblionumber'),
81 years
=> $subscriptions,
84 bibliotitle
=> $title,
85 suggestion
=> C4
::Context
->preference("suggestion"),
86 virtualshelves
=> C4
::Context
->preference("virtualshelves"),
90 my $subscriptions = GetSubscriptionsFromBiblionumber
($biblionumber);
91 ($template, $loggedinuser, $cookie)
92 = get_template_and_user
({template_name
=> "serials/serial-issues.tt",
95 flagsrequired
=> {serials
=> '*'},
98 # replace CR by <br> in librarian note
99 # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
102 biblionumber
=> "".$query->param('biblionumber'),
103 subscription_LOOP
=> $subscriptions,
104 suggestion
=> "".C4
::Context
->preference("suggestion"),
105 virtualshelves
=> "".C4
::Context
->preference("virtualshelves"),
108 $template->param((uc(C4
::Context
->preference("marcflavour"))) => 1);
109 output_html_with_http_headers
$query, $cookie, $template->output;