Replace itemnumber by barcode in links of patron modification log
[koha.git] / serials / serials-home.pl
blob031e3613a0bfde42692ee2d5ce595d635abe4335
1 #!/usr/bin/perl
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
10 # version.
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.
21 =head1 NAME
23 serials-home.pl
25 =head1 DESCRIPTION
27 this script is the main page for serials/
29 =head1 PARAMETERS
31 =over 4
33 =item title
35 =item ISSN
37 =item biblionumber
39 =back
41 =cut
43 use strict;
44 use warnings;
45 use CGI;
46 use C4::Auth;
47 use C4::Serials;
48 use C4::Output;
49 use C4::Context;
50 use C4::Branch;
52 my $query = new CGI;
53 my $title = $query->param('title_filter');
54 my $ISSN = $query->param('ISSN_filter');
55 my $routing = $query->param('routing')||C4::Context->preference("RoutingSerials");
56 my $searched = $query->param('searched');
57 my $biblionumber = $query->param('biblionumber');
59 my @serialseqs = $query->param('serialseq');
60 my @planneddates = $query->param('planneddate');
61 my @publisheddates = $query->param('publisheddate');
62 my @status = $query->param('status');
63 my @notes = $query->param('notes');
65 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
67 template_name => "serials/serials-home.tmpl",
68 query => $query,
69 type => "intranet",
70 authnotrequired => 0,
71 flagsrequired => { serials => '*' },
72 debug => 1,
76 if (@serialseqs){
77 my @information;
78 my $index;
79 foreach my $seq (@serialseqs){
80 if ($seq){
81 ### 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.
82 push @information,
83 { serialseq=>$seq,
84 publisheddate=>$publisheddates[$index],
85 planneddate=>$planneddates[$index],
86 notes=>$notes[$index],
87 status=>$status[$index]
90 $index++;
92 $template->param('information'=>\@information);
94 my @subscriptions;
95 if ($searched){
96 @subscriptions = GetSubscriptions( $title, $ISSN, $biblionumber );
99 # to toggle between create or edit routing list options
100 if ($routing) {
101 for my $subscription ( @subscriptions) {
102 $subscription->{routingedit} = check_routing( $subscription->{subscriptionid} );
103 $subscription->{branchname} = GetBranchName ( $subscription->{branchcode} );
107 $template->param(
108 subscriptions => \@subscriptions,
109 title_filter => $title,
110 ISSN_filter => $ISSN,
111 done_searched => $searched,
112 routing => $routing,
114 output_html_with_http_headers $query, $cookie, $template->output;