Bug 24569: (QA follow-up) Fix closing <a> tag
[koha.git] / serials / subscription-renew.pl
blob6fc72984f8b4d625af729bcf209e608e34cff6cd
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 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 Modern::Perl;
48 use CGI qw ( -utf8 );
49 use Carp;
50 use C4::Koha;
51 use C4::Auth;
52 use C4::Context;
53 use C4::Auth;
54 use C4::Output;
55 use C4::Serials;
56 use Koha::DateUtils;
58 my $query = new CGI;
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 $branchcode = $query->param('branchcode');
65 my $done = 0; # for after form has been submitted
66 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
68 template_name => "serials/subscription-renew.tt",
69 query => $query,
70 type => "intranet",
71 authnotrequired => 0,
72 flagsrequired => { serials => 'renew_subscription' },
73 debug => 1,
76 if ( $op eq "renew" ) {
77 # Do not use this script with op=renew and @subscriptionids > 1!
78 my $subscriptionid = $subscriptionids[0];
79 # Make sure the subscription exists
80 my $subscription = GetSubscription( $subscriptionid );
81 output_and_exit( $query, $cookie, $template, 'unknown_subscription') unless $subscription;
82 my $startdate = output_pref( { str => scalar $query->param('startdate'), dateonly => 1, dateformat => 'iso' } );
83 ReNewSubscription(
85 subscriptionid => $subscriptionid,
86 user => $loggedinuser,
87 startdate => $startdate,
88 numberlength => scalar $query->param('numberlength'),
89 weeklength => scalar $query->param('weeklength'),
90 monthlength => scalar $query->param('monthlength'),
91 note => scalar $query->param('note'),
92 branchcode => $branchcode
95 } elsif ( $op eq 'multi_renew' ) {
96 for my $subscriptionid ( @subscriptionids ) {
97 my $subscription = GetSubscription( $subscriptionid );
98 next unless $subscription;
99 ReNewSubscription(
101 subscriptionid => $subscriptionid,
102 user => $loggedinuser,
103 startdate => $subscription->{enddate},
104 numberlength => $subscription->{numberlength},
105 weeklength => $subscription->{weeklength},
106 monthlength => $subscription->{monthlength},
110 } else {
111 my $subscriptionid = $subscriptionids[0];
112 my $subscription = GetSubscription($subscriptionid);
113 output_and_exit( $query, $cookie, $template, 'unknown_subscription') unless $subscription;
114 if ($subscription->{'cannotedit'}){
115 carp "Attempt to renew subscription $subscriptionid by ".C4::Context->userenv->{'id'}." not allowed";
116 print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
119 my $newstartdate = output_pref( { str => $subscription->{enddate}, dateonly => 1 } )
120 or output_pref( { dt => dt_from_string, dateonly => 1 } );
122 $template->param(
123 startdate => $newstartdate,
124 subscription => $subscription,
128 my $libraries = Koha::Libraries->search( {}, { order_by => ['branchcode'] }, );
130 $template->param(
131 op => $op,
132 libraries => $libraries,
135 output_html_with_http_headers $query, $cookie, $template->output;