import of the authorized values fails on the step 3 of the web-installation (ru-RU)
[koha.git] / serials / subscription-renew.pl
1 #!/usr/bin/perl
2 # WARNING: 4-character tab stops here
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21
22 =head1 NAME
23
24 subscription-renew.pl
25
26 =head1 DESCRIPTION
27
28 this script renew an existing subscription.
29
30 =head1 Parameters
31
32 =over 4
33
34 =item op
35 op use to know the operation to do on this template.
36  * renew : to renew the subscription.
37
38 Note that if op = modsubscription there are a lot of other parameters.
39
40 =item subscriptionid
41 Id of the subscription this script has to renew
42
43 =back
44
45 =cut
46
47 use strict;
48
49 use CGI;
50 use C4::Koha;
51 use C4::Auth;
52 use C4::Dates qw/format_date/;
53 use C4::Context;
54 use C4::Auth;
55 use C4::Output;
56 use C4::Serials;
57
58 my $query = new CGI;
59 my $dbh   = C4::Context->dbh;
60
61 my $mode           = $query->param('mode');
62 my $op             = $query->param('op');
63 my $subscriptionid = $query->param('subscriptionid');
64 my $done = 0;    # for after form has been submitted
65 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
66     {
67         template_name   => "serials/subscription-renew.tmpl",
68         query           => $query,
69         type            => "intranet",
70         authnotrequired => 0,
71         flagsrequired   => { serials => 1 },
72         debug           => 1,
73     }
74 );
75
76 if ( $op eq "renew" ) {
77     ReNewSubscription(
78         $subscriptionid,             $loggedinuser,
79         $query->param('startdate'),  $query->param('numberlength'),
80         $query->param('weeklength'), $query->param('monthlength'),
81         $query->param('note')
82     );  
83 }
84
85 my $subscription = GetSubscription($subscriptionid);
86 if ($subscription->{'cannotedit'}){
87   warn "Attempt to renew subscription $subscriptionid by ".C4::Context->userenv->{'id'}." not allowed";
88   print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
89 }  
90
91 $template->param(
92     startdate => format_date(
93              GetExpirationDate($subscriptionid)
94           || POSIX::strftime( "%Y-%m-%d", localtime )
95     ),
96     numberlength   => $subscription->{numberlength},
97     weeklength     => $subscription->{weeklength},
98     monthlength    => $subscription->{monthlength},
99     subscriptionid => $subscriptionid,
100     bibliotitle    => $subscription->{bibliotitle},
101     $op            => 1,
102     popup          => ($query->param('mode')eq "popup"),  
103 );
104
105 # Print the page
106 output_html_with_http_headers $query, $cookie, $template->output;
107
108 # Local Variables:
109 # tab-width: 4
110 # End: