Merge commit 'pianohacker-koha/prefs-submit' into master
[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
21 =head1 NAME
22
23 serial-issue.pl
24
25 =head1 DESCRIPTION
26
27 this script give more information about a susbcription given on input arg.
28
29 =head1 PARAMETERS
30
31 =over 4
32
33 =item selectview
34 can be equal to "full" or not.
35
36 =item biblionumber
37 the biblionumber this script has to give more infos.
38
39 =back
40
41
42 =cut
43
44 use strict;
45 use warnings;
46 use CGI;
47 use C4::Auth;
48 use C4::Koha;
49 use C4::Dates;
50 use C4::Serials;
51 use C4::Output;
52 use C4::Context;
53
54
55 my $query = new CGI;
56 my $dbh = C4::Context->dbh;
57 my $selectview = $query->param('selectview');
58 $selectview = C4::Context->preference("SubscriptionHistory") unless $selectview;
59
60 my $sth;
61 my ($template, $loggedinuser, $cookie);
62 my $biblionumber = $query->param('biblionumber');
63 if ($selectview eq "full"){
64     my $subscriptions = GetFullSubscriptionsFromBiblionumber($biblionumber);
65
66     my $title = $subscriptions->[0]{bibliotitle};
67     my $yearmin=$subscriptions->[0]{year};
68     my $yearmax=$subscriptions->[scalar(@$subscriptions)-1]{year};
69
70     ($template, $loggedinuser, $cookie)
71      = get_template_and_user({template_name => "serials/serial-issues-full.tmpl",
72      query => $query,
73      type => "intranet",
74      authnotrequired => 0,
75          flagsrequired => {serials => 1},
76      debug => 1,
77      });
78
79  # replace CR by <br> in librarian note
80  # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
81
82     $template->param(
83         biblionumber => $query->param('biblionumber'),
84         years => $subscriptions,
85         yearmin => $yearmin,
86         yearmax =>$yearmax,
87         bibliotitle => $title,
88         suggestion => C4::Context->preference("suggestion"),
89         virtualshelves => C4::Context->preference("virtualshelves"),
90     );
91
92 } else {
93     my $subscriptions = GetSubscriptionsFromBiblionumber($biblionumber);
94     ($template, $loggedinuser, $cookie)
95     = get_template_and_user({template_name => "serials/serial-issues.tmpl",
96         query => $query,
97         type => "intranet",
98         authnotrequired => 1,
99         debug => 1,
100      });
101
102  # replace CR by <br> in librarian note
103  # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
104
105     $template->param(
106         biblionumber => "".$query->param('biblionumber'),
107         subscription_LOOP => $subscriptions,
108         suggestion => "".C4::Context->preference("suggestion"),
109         virtualshelves => "".C4::Context->preference("virtualshelves"),
110     );
111 }
112 output_html_with_http_headers $query, $cookie, $template->output;