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>.
27 this script renew an existing subscription.
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.
40 Id of the subscription this script has to renew
59 my $dbh = C4
::Context
->dbh;
61 my $mode = $query->param('mode') || q{};
62 my $op = $query->param('op') || 'display';
63 my @subscriptionids = $query->multi_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.tt",
71 flagsrequired
=> { serials
=> 'renew_subscription' },
75 if ( $op eq "renew" ) {
76 # Do not use this script with op=renew and @subscriptionids > 1!
77 my $subscriptionid = $subscriptionids[0];
78 # Make sure the subscription exists
79 my $subscription = GetSubscription
( $subscriptionid );
80 output_and_exit
( $query, $cookie, $template, 'unknown_subscription') unless $subscription;
81 my $startdate = output_pref
( { str
=> scalar $query->param('startdate'), dateonly
=> 1, dateformat
=> 'iso' } );
83 $subscriptionid, $loggedinuser,
84 $startdate, scalar $query->param('numberlength'),
85 scalar $query->param('weeklength'), scalar $query->param('monthlength'),
86 scalar $query->param('note')
88 } elsif ( $op eq 'multi_renew' ) {
89 for my $subscriptionid ( @subscriptionids ) {
90 my $subscription = GetSubscription
( $subscriptionid );
91 next unless $subscription;
93 $subscriptionid, $loggedinuser,
94 $subscription->{enddate
}, $subscription->{numberlength
},
95 $subscription->{weeklength
}, $subscription->{monthlength
},
99 my $subscriptionid = $subscriptionids[0];
100 my $subscription = GetSubscription
($subscriptionid);
101 output_and_exit
( $query, $cookie, $template, 'unknown_subscription') unless $subscription;
102 if ($subscription->{'cannotedit'}){
103 carp
"Attempt to renew subscription $subscriptionid by ".C4
::Context
->userenv->{'id'}." not allowed";
104 print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
107 my $newstartdate = output_pref
( { str
=> $subscription->{enddate
}, dateonly
=> 1 } )
108 or output_pref
( { dt
=> dt_from_string
, dateonly
=> 1 } );
111 startdate
=> $newstartdate,
112 subscription
=> $subscription,
120 output_html_with_http_headers
$query, $cookie, $template->output;