merging katipo changes
[koha-equinox.git] / serials / serials-home.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 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
10 # version.
11 #
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.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 # $Id$
21
22 =head1 NAME
23
24 serials-home.pl
25
26 =head1 DESCRIPTION
27
28 this script is the main page for serials/
29
30 =head1 PARAMETERS
31
32 =over 4
33
34 =item title
35
36 =item ISSN
37
38 =item biblionumber
39
40 =back
41
42 =cut
43
44
45 use strict;
46 use CGI;
47 use C4::Auth;
48 use C4::Serials;
49 use C4::Output;
50 use C4::Interface::CGI::Output;
51 use C4::Context;
52 use HTML::Template;
53
54 my $query = new CGI;
55 my $title = $query->param('title');
56 my $ISSN = $query->param('ISSN');
57 my $routing = $query->param('routing');
58 my $searched = $query->param('searched');
59 my $biblionumber = $query->param('biblionumber');
60 my $alt_links = 0;
61 if(C4::Context->preference("RoutingSerials")){
62     $alt_links = 0;
63 }
64 my @subscriptions = GetSubscriptions($title,$ISSN,$biblionumber);
65 my ($template, $loggedinuser, $cookie)
66 = get_template_and_user({template_name => "serials/serials-home.tmpl",
67                                 query => $query,
68                                 type => "intranet",
69                                 authnotrequired => 0,
70                                 flagsrequired => {catalogue => 1},
71                                 debug => 1,
72                                 });
73
74 # to toggle between create or edit routing list options
75 if($routing){ 
76     for(my $i=0;$i<@subscriptions;$i++){
77         my $checkrouting = check_routing($subscriptions[$i]->{'subscriptionid'});
78         $subscriptions[$i]->{'routingedit'} = $checkrouting;
79         # warn "check $checkrouting";
80     }
81 }
82
83 $template->param(
84         subscriptions => \@subscriptions,
85         title => $title,
86         ISSN => $ISSN,
87         done_searched => $searched,
88         routing => $routing,
89         alt_links => $alt_links,
90         );
91 output_html_with_http_headers $query, $cookie, $template->output;