Bug 13904: Make unimarc_field_4XX displays usefull 200 subfield data
[koha.git] / serials / serial-issues.pl
blob12d7f90dce6042c4d72b0636c3e481653c9e9ad5
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
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 =head1 NAME
23 serial-issue.pl
25 =head1 DESCRIPTION
27 this script give more information about a susbcription given on input arg.
29 =head1 PARAMETERS
31 =over 4
33 =item selectview
34 can be equal to "full" or not.
36 =item biblionumber
37 the biblionumber this script has to give more infos.
39 =back
42 =cut
44 use strict;
45 use warnings;
46 use CGI qw ( -utf8 );
47 use C4::Auth;
48 use C4::Koha;
49 use C4::Dates;
50 use C4::Serials;
51 use C4::Output;
52 use C4::Context;
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;
60 my ($template, $loggedinuser, $cookie);
61 my $biblionumber = $query->param('biblionumber');
62 if ($selectview eq "full"){
63 my $subscriptions = GetFullSubscriptionsFromBiblionumber($biblionumber);
65 my $title = $subscriptions->[0]{bibliotitle};
66 my $yearmin=$subscriptions->[0]{year};
67 my $yearmax=$subscriptions->[scalar(@$subscriptions)-1]{year};
69 ($template, $loggedinuser, $cookie)
70 = get_template_and_user({template_name => "serials/serial-issues-full.tt",
71 query => $query,
72 type => "intranet",
73 flagsrequired => {serials => '*'},
74 });
76 # replace CR by <br> in librarian note
77 # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
79 $template->param(
80 biblionumber => $query->param('biblionumber'),
81 years => $subscriptions,
82 yearmin => $yearmin,
83 yearmax =>$yearmax,
84 bibliotitle => $title,
85 suggestion => C4::Context->preference("suggestion"),
86 virtualshelves => C4::Context->preference("virtualshelves"),
89 } else {
90 my $subscriptions = GetSubscriptionsFromBiblionumber($biblionumber);
91 ($template, $loggedinuser, $cookie)
92 = get_template_and_user({template_name => "serials/serial-issues.tt",
93 query => $query,
94 type => "intranet",
95 flagsrequired => {serials => '*'},
96 });
98 # replace CR by <br> in librarian note
99 # $subscription->{opacnote} =~ s/\n/\<br\/\>/g;
101 $template->param(
102 biblionumber => "".$query->param('biblionumber'),
103 subscription_LOOP => $subscriptions,
104 suggestion => "".C4::Context->preference("suggestion"),
105 virtualshelves => "".C4::Context->preference("virtualshelves"),
108 $template->param((uc(C4::Context->preference("marcflavour"))) => 1);
109 output_html_with_http_headers $query, $cookie, $template->output;