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 is the main page for serials/
52 my $title = $query->param('title_filter');
53 my $ISSN = $query->param('ISSN_filter');
54 my $routing = $query->param('routing')||C4::Context->preference("RoutingSerials");
55 my $searched = $query->param('searched');
56 my $biblionumber = $query->param('biblionumber');
58 my @serialseqs = $query->param('serialseq');
59 my @planneddates = $query->param('planneddate');
60 my @publisheddates = $query->param('publisheddate');
61 my @status = $query->param('status');
62 my @notes = $query->param('notes');
64 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
66 template_name => "serials/serials-home.tmpl",
70 flagsrequired => { serials => '*' },
78 foreach my $seq (@serialseqs){
80 ### FIXME This limitation that a serial must be given a title may not be very efficient for some library who do not update serials titles.
83 publisheddate=>$publisheddates[$index],
84 planneddate=>$planneddates[$index],
85 notes=>$notes[$index],
86 status=>$status[$index]
91 $template->param('information'=>\@information);
95 @subscriptions = GetSubscriptions( $title, $ISSN, $biblionumber );
98 # to toggle between create or edit routing list options
100 for my $subscription ( @subscriptions) {
101 $subscription->{routingedit} = check_routing( $subscription->{subscriptionid} );
106 subscriptions => \@subscriptions,
107 title_filter => $title,
108 ISSN_filter => $ISSN,
109 done_searched => $searched,
112 output_html_with_http_headers $query, $cookie, $template->output;