Bug 14969: Remove C4::Dates from serials/*.pl files
[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 strict;
47 use warnings;
48
49 use CGI qw ( -utf8 );
50 use Carp;
51 use C4::Koha;
52 use C4::Auth;
53 use C4::Context;
54 use C4::Auth;
55 use C4::Output;
56 use C4::Serials;
57 use Koha::DateUtils;
58
59 my $query = new CGI;
60 my $dbh   = C4::Context->dbh;
61
62 my $mode           = $query->param('mode') || q{};
63 my $op             = $query->param('op') || 'display';
64 my $subscriptionid = $query->param('subscriptionid');
65 my $done = 0;    # for after form has been submitted
66 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
67     {
68         template_name   => "serials/subscription-renew.tt",
69         query           => $query,
70         type            => "intranet",
71         authnotrequired => 0,
72         flagsrequired   => { serials => 'renew_subscription' },
73         debug           => 1,
74     }
75 );
76 if ( $op eq "renew" ) {
77     my $startdate = output_pref( { str => $query->param('startdate'), dateonly => 1, dateformat => 'iso' } );
78     ReNewSubscription(
79         $subscriptionid, $loggedinuser,
80         $startdate, $query->param('numberlength'),
81         $query->param('weeklength'), $query->param('monthlength'),
82         $query->param('note')
83     );
84 }
85
86 my $subscription = GetSubscription($subscriptionid);
87 if ($subscription->{'cannotedit'}){
88   carp "Attempt to renew subscription $subscriptionid by ".C4::Context->userenv->{'id'}." not allowed";
89   print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
90 }
91
92 my $newstartdate = output_pref( { str => $subscription->{enddate}, dateonly => 1 } )
93     or output_pref( { dt => dt_from_string, dateonly => 1 } );
94
95 $template->param(
96     startdate      => $newstartdate,
97     numberlength   => $subscription->{numberlength},
98     weeklength     => $subscription->{weeklength},
99     monthlength    => $subscription->{monthlength},
100     subscriptionid => $subscriptionid,
101     bibliotitle    => $subscription->{bibliotitle},
102     $op            => 1,
103     popup          => ($mode eq 'popup'),
104 );
105
106 # Print the page
107 output_html_with_http_headers $query, $cookie, $template->output;