GPL licence added, POD added, call to Members.pm added
[koha.git] / serials / serial-issues.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 use strict;
23 use CGI;
24 use C4::Auth;
25 use C4::Koha;
26 use C4::Date;
27 use C4::Serials;
28 use C4::Output;
29 use C4::Interface::CGI::Output;
30 use C4::Context;
31 use HTML::Template;
32
33 my $query = new CGI;
34 my $op = $query->param('op');
35 my $dbh = C4::Context->dbh;
36 my $selectview = $query->param('selectview');
37 $selectview = C4::Context->preference("SubscriptionHistory") unless $selectview;
38
39 my $sth;
40 # my $id;
41 my ($template, $loggedinuser, $cookie);
42 my $biblionumber = $query->param('biblionumber');
43 if ($selectview eq "full"){
44  my $subscriptions = GetFullSubscriptionListFromBiblionumber($biblionumber);
45  
46  my $title = $subscriptions->[0]{bibliotitle};
47  my $yearmin=$subscriptions->[0]{year};
48  my $yearmax=$subscriptions->[scalar(@$subscriptions)-1]{year};
49
50  ($template, $loggedinuser, $cookie)
51  = get_template_and_user({template_name => "serials/serial-issues-full.tmpl",
52      query => $query,
53      type => "intranet",
54      authnotrequired => 1,
55      debug => 1,
56      });
57  
58  # replace CR by <br> in librarian note
59  # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
60  
61  $template->param(
62   biblionumber => $query->param('biblionumber'),
63   years => $subscriptions,
64   yearmin => $yearmin,
65   yearmax =>$yearmax,
66   bibliotitle => $title,
67   suggestion => C4::Context->preference("suggestion"),
68   virtualshelves => C4::Context->preference("virtualshelves"),
69   );
70
71 } else {
72  my $subscriptions = GetSubscriptionListFromBiblionumber($biblionumber);
73  
74  ($template, $loggedinuser, $cookie)
75  = get_template_and_user({template_name => "serials/serial-issues.tmpl",
76      query => $query,
77      type => "intranet",
78      authnotrequired => 1,
79      debug => 1,
80      });
81  
82  # replace CR by <br> in librarian note
83  # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
84  
85  $template->param(
86   biblionumber => $query->param('biblionumber'),
87   subscription_LOOP => $subscriptions,
88   suggestion => C4::Context->preference("suggestion"),
89   virtualshelves => C4::Context->preference("virtualshelves"),
90   );
91 }
92 output_html_with_http_headers $query, $cookie, $template->output;