Bug 33568: Do not embed library names
[koha.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 qw( carp );
50 use C4::Koha;
51 use C4::Auth qw( get_template_and_user );
52 use C4::Context;
53 use C4::Auth qw( get_template_and_user );
54 use C4::Output qw( output_and_exit output_html_with_http_headers );
55 use C4::Serials qw( GetSubscription GetSubscriptionLength NewSubscription ReNewSubscription );
56 use Koha::DateUtils qw( dt_from_string output_pref );
57
58 my $query = CGI->new;
59 my $dbh   = C4::Context->dbh;
60
61 my $op             = $query->param('op') || 'display';
62 my @subscriptionids = $query->multi_param('subscriptionid');
63 my $branchcode     = $query->param('branchcode');
64 my $sublength = $query->param('sublength');
65 my $subtype = $query->param('subtype');
66 my ($numberlength, $weeklength, $monthlength);
67
68 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
69     {
70         template_name   => "serials/subscription-renew.tt",
71         query           => $query,
72         type            => "intranet",
73         flagsrequired   => { serials => 'renew_subscription' },
74     }
75 );
76 if ( $op eq "cud-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
83     if ($subscription->{cannotedit}){
84       carp "Attempt to renew subscription $subscriptionid by ".C4::Context->userenv->{'id'}." not allowed";
85       print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
86     }
87
88     my $startdate = output_pref( { str => scalar $query->param('startdate'), dateonly => 1, dateformat => 'iso' } );
89     ($numberlength, $weeklength, $monthlength) = GetSubscriptionLength( $subtype, $sublength );
90     ReNewSubscription(
91         {
92             subscriptionid => $subscriptionid,
93             user           => $loggedinuser,
94             startdate      => $startdate,
95             numberlength   => $numberlength,
96             weeklength     => $weeklength,
97             monthlength    => $monthlength,
98             note           => scalar $query->param('note'),
99             branchcode     => $branchcode
100         }
101     );
102 } elsif ( $op eq 'cud-multi_renew' ) {
103     for my $subscriptionid ( @subscriptionids ) {
104         my $subscription = GetSubscription( $subscriptionid );
105         next unless $subscription;
106         next if $subscription->{cannotedit};
107         ReNewSubscription(
108             {
109                 subscriptionid => $subscriptionid,
110                 user           => $loggedinuser,
111                 startdate      => $subscription->{enddate},
112                 numberlength   => $subscription->{numberlength},
113                 weeklength     => $subscription->{weeklength},
114                 monthlength    => $subscription->{monthlength},
115             }
116         );
117     }
118 }
119 elsif ( $op eq 'multi_renew' ) {
120     my @subscriptions;
121     for my $subscriptionid ( @subscriptionids ) {
122         my $subscription = GetSubscription( $subscriptionid );
123         next unless $subscription;
124         next if $subscription->{cannotedit};
125         push @subscriptions, $subscription;
126     }
127
128     $template->param(
129         subscriptions => \@subscriptions,
130     );
131 }
132 else {
133     my $subscriptionid = $subscriptionids[0];
134     my $subscription = GetSubscription($subscriptionid);
135     output_and_exit( $query, $cookie, $template, 'unknown_subscription') unless $subscription;
136     if ($subscription->{'cannotedit'}){
137       carp "Attempt to renew subscription $subscriptionid by ".C4::Context->userenv->{'id'}." not allowed";
138       print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
139     }
140
141     my $newstartdate = output_pref( { str => $subscription->{enddate}, dateonly => 1 } )
142         or output_pref( { dt => dt_from_string, dateonly => 1 } );
143
144     $template->param(
145         startdate      => $newstartdate,
146         subscription   => $subscription,
147     );
148 }
149
150 $template->param(
151     op => $op,
152 );
153
154 output_html_with_http_headers $query, $cookie, $template->output;