Bug 26265: (QA follow-up) Remove g option from regex, add few dirs
[koha-equinox.git] / serials / subscription-renew.pl
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 subscription-renew.pl
24
25 =head1 DESCRIPTION
26
27 this script renew an existing subscription.
28
29 =head1 Parameters
30
31 =over 4
32
33 =item op
34 op use to know the operation to do on this template.
35  * renew : to renew the subscription.
36
37 Note that if op = modsubscription there are a lot of other parameters.
38
39 =item subscriptionid
40 Id of the subscription this script has to renew
41
42 =back
43
44 =cut
45
46 use Modern::Perl;
47
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;
57
58 my $query = new CGI;
59 my $dbh   = C4::Context->dbh;
60
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 $sublength = $query->param('sublength');
66 my $subtype = $query->param('subtype');
67 my ($numberlength, $weeklength, $monthlength);
68
69 my $done = 0;    # for after form has been submitted
70 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
71     {
72         template_name   => "serials/subscription-renew.tt",
73         query           => $query,
74         type            => "intranet",
75         authnotrequired => 0,
76         flagsrequired   => { serials => 'renew_subscription' },
77         debug           => 1,
78     }
79 );
80 if ( $op eq "renew" ) {
81     # Do not use this script with op=renew and @subscriptionids > 1!
82     my $subscriptionid = $subscriptionids[0];
83     # Make sure the subscription exists
84     my $subscription = GetSubscription( $subscriptionid );
85     output_and_exit( $query, $cookie, $template, 'unknown_subscription') unless $subscription;
86     my $startdate = output_pref( { str => scalar $query->param('startdate'), dateonly => 1, dateformat => 'iso' } );
87     ($numberlength, $weeklength, $monthlength) = GetSubscriptionLength( $subtype, $sublength );
88     ReNewSubscription(
89         {
90             subscriptionid => $subscriptionid,
91             user           => $loggedinuser,
92             startdate      => $startdate,
93             numberlength   => $numberlength,
94             weeklength     => $weeklength,
95             monthlength    => $monthlength,
96             note           => scalar $query->param('note'),
97             branchcode     => $branchcode
98         }
99     );
100 } elsif ( $op eq 'multi_renew' ) {
101     for my $subscriptionid ( @subscriptionids ) {
102         my $subscription = GetSubscription( $subscriptionid );
103         next unless $subscription;
104         ReNewSubscription(
105             {
106                 subscriptionid => $subscriptionid,
107                 user           => $loggedinuser,
108                 startdate      => $subscription->{enddate},
109                 numberlength   => $subscription->{numberlength},
110                 weeklength     => $subscription->{weeklength},
111                 monthlength    => $subscription->{monthlength},
112             }
113         );
114     }
115 } else {
116     my $subscriptionid = $subscriptionids[0];
117     my $subscription = GetSubscription($subscriptionid);
118     output_and_exit( $query, $cookie, $template, 'unknown_subscription') unless $subscription;
119     if ($subscription->{'cannotedit'}){
120       carp "Attempt to renew subscription $subscriptionid by ".C4::Context->userenv->{'id'}." not allowed";
121       print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
122     }
123
124     my $newstartdate = output_pref( { str => $subscription->{enddate}, dateonly => 1 } )
125         or output_pref( { dt => dt_from_string, dateonly => 1 } );
126
127     $template->param(
128         startdate      => $newstartdate,
129         subscription   => $subscription,
130     );
131 }
132
133 my $libraries = Koha::Libraries->search( {}, { order_by => ['branchcode'] }, );
134
135 $template->param(
136     op => $op,
137     libraries      => $libraries,
138 );
139
140 output_html_with_http_headers $query, $cookie, $template->output;