|
Lines 1-108
Link Here
|
| 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 |
| 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. |
| 11 |
# |
| 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. |
| 16 |
# |
| 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>. |
| 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 qw ( -utf8 ); |
| 47 |
use C4::Auth; |
| 48 |
use C4::Koha; |
| 49 |
use C4::Serials; |
| 50 |
use C4::Output; |
| 51 |
use C4::Context; |
| 52 |
|
| 53 |
|
| 54 |
my $query = new CGI; |
| 55 |
my $dbh = C4::Context->dbh; |
| 56 |
my $selectview = $query->param('selectview'); |
| 57 |
$selectview = C4::Context->preference("SubscriptionHistory") unless $selectview; |
| 58 |
|
| 59 |
my ($template, $loggedinuser, $cookie); |
| 60 |
my $biblionumber = $query->param('biblionumber'); |
| 61 |
if ($selectview eq "full"){ |
| 62 |
my $subscriptions = GetFullSubscriptionsFromBiblionumber($biblionumber); |
| 63 |
|
| 64 |
my $title = $subscriptions->[0]{bibliotitle}; |
| 65 |
my $yearmin=$subscriptions->[0]{year}; |
| 66 |
my $yearmax=$subscriptions->[scalar(@$subscriptions)-1]{year}; |
| 67 |
|
| 68 |
($template, $loggedinuser, $cookie) |
| 69 |
= get_template_and_user({template_name => "serials/serial-issues-full.tt", |
| 70 |
query => $query, |
| 71 |
type => "intranet", |
| 72 |
flagsrequired => {serials => '*'}, |
| 73 |
}); |
| 74 |
|
| 75 |
# replace CR by <br> in librarian note |
| 76 |
# $subscription->{opacnote} =~ s/\n/\<br\/\>/g; |
| 77 |
|
| 78 |
$template->param( |
| 79 |
biblionumber => scalar $query->param('biblionumber'), |
| 80 |
years => $subscriptions, |
| 81 |
yearmin => $yearmin, |
| 82 |
yearmax =>$yearmax, |
| 83 |
bibliotitle => $title, |
| 84 |
suggestion => C4::Context->preference("suggestion"), |
| 85 |
virtualshelves => C4::Context->preference("virtualshelves"), |
| 86 |
); |
| 87 |
|
| 88 |
} else { |
| 89 |
my $subscriptions = GetSubscriptionsFromBiblionumber($biblionumber); |
| 90 |
($template, $loggedinuser, $cookie) |
| 91 |
= get_template_and_user({template_name => "serials/serial-issues.tt", |
| 92 |
query => $query, |
| 93 |
type => "intranet", |
| 94 |
flagsrequired => {serials => '*'}, |
| 95 |
}); |
| 96 |
|
| 97 |
# replace CR by <br> in librarian note |
| 98 |
# $subscription->{opacnote} =~ s/\n/\<br\/\>/g; |
| 99 |
|
| 100 |
$template->param( |
| 101 |
biblionumber => "".$query->param('biblionumber'), |
| 102 |
subscription_LOOP => $subscriptions, |
| 103 |
suggestion => "".C4::Context->preference("suggestion"), |
| 104 |
virtualshelves => "".C4::Context->preference("virtualshelves"), |
| 105 |
); |
| 106 |
} |
| 107 |
$template->param((uc(C4::Context->preference("marcflavour"))) => 1); |
| 108 |
output_html_with_http_headers $query, $cookie, $template->output; |
| 109 |
- |