[13/30] Patron Card Creator management interface and code
[koha.git] / serials / subscription-renew.pl
blob8846826f7de87fbea50a8fa063d77848944ea128
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 with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA 02111-1307 USA
21 =head1 NAME
23 subscription-renew.pl
25 =head1 DESCRIPTION
27 this script renew an existing subscription.
29 =head1 Parameters
31 =over 4
33 =item op
34 op use to know the operation to do on this template.
35 * renew : to renew the subscription.
37 Note that if op = modsubscription there are a lot of other parameters.
39 =item subscriptionid
40 Id of the subscription this script has to renew
42 =back
44 =cut
46 use strict;
47 use warnings;
49 use CGI;
50 use C4::Koha;
51 use C4::Auth;
52 use C4::Dates qw/format_date/;
53 use C4::Context;
54 use C4::Auth;
55 use C4::Output;
56 use C4::Serials;
58 my $query = new CGI;
59 my $dbh = C4::Context->dbh;
61 my $mode = $query->param('mode');
62 my $op = $query->param('op') || q{};
63 my $subscriptionid = $query->param('subscriptionid');
64 my $done = 0; # for after form has been submitted
65 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
67 template_name => "serials/subscription-renew.tmpl",
68 query => $query,
69 type => "intranet",
70 authnotrequired => 0,
71 flagsrequired => { serials => 1 },
72 debug => 1,
75 if ( $op eq "renew" ) {
76 ReNewSubscription(
77 $subscriptionid, $loggedinuser,
78 C4::Dates->new($query->param('startdate'))->output('iso'), $query->param('numberlength'),
79 $query->param('weeklength'), $query->param('monthlength'),
80 $query->param('note')
84 my $subscription = GetSubscription($subscriptionid);
85 if ($subscription->{'cannotedit'}){
86 warn "Attempt to renew subscription $subscriptionid by ".C4::Context->userenv->{'id'}." not allowed";
87 print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
90 $template->param(
91 startdate => format_date(
92 $subscription->{enddate}
93 || POSIX::strftime( "%Y-%m-%d", localtime )
95 numberlength => $subscription->{numberlength},
96 weeklength => $subscription->{weeklength},
97 monthlength => $subscription->{monthlength},
98 subscriptionid => $subscriptionid,
99 bibliotitle => $subscription->{bibliotitle},
100 $op => 1,
101 popup => ($query->param('mode')eq "popup"),
104 # Print the page
105 output_html_with_http_headers $query, $cookie, $template->output;