Merging in katipo changes for serials
[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 # $Id$
22
23 =head1 NAME
24
25 subscription-renew.pl
26
27 =head1 DESCRIPTION
28
29 this script renew an existing subscription.
30
31 =head1 Parameters
32
33 =over 4
34
35 =item op
36 op use to know the operation to do on this template.
37  * renew : to renew the subscription.
38
39 Note that if op = modsubscription there are a lot of other parameters.
40
41 =item subscriptionid
42 Id of the subscription this script has to renew
43
44 =back
45
46 =cut
47
48
49 use strict;
50 require Exporter;
51 use CGI;
52 use C4::Koha;
53 use C4::Auth;
54 use C4::Date;
55 use HTML::Template;
56 use C4::Context;
57 use C4::Search;
58 use C4::Auth;
59 use C4::Output;
60 use C4::Interface::CGI::Output;
61 use C4::Serials;
62
63 my $query = new CGI;
64 my $dbh = C4::Context->dbh;
65
66 my $op = $query->param('op');
67 my $subscriptionid = $query->param('subscriptionid');
68 my $done = 0; # for after form has been submitted
69 my ($template, $loggedinuser, $cookie)
70         = get_template_and_user({template_name => "serials/subscription-renew.tmpl",
71                 query => $query,
72                 type => "intranet",
73                 authnotrequired => 0,
74                 flagsrequired => {catalogue => 1},
75                 debug => 1,
76                 });
77 if ($op eq "renew") {
78     ReNewSubscription($subscriptionid,$loggedinuser,$query->param('startdate'),$query->param('numberlength'),$query->param('weeklength'),$query->param('monthlength'),$query->param('note'));
79     $done = 1;
80 }
81
82 my $subscription= GetSubscription($subscriptionid);
83
84 $template->param(startdate => format_date(GetSubscriptionExpirationDate($subscriptionid)),
85                 numberlength => $subscription->{numberlength},
86                 weeklength => $subscription->{weeklength},
87                 monthlength => $subscription->{monthlength},
88                 subscriptionid => $subscriptionid,
89                 bibliotitle => $subscription->{bibliotitle},
90                 $op => 1,
91                 done => $done,
92                 intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
93                 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
94                 IntranetNav => C4::Context->preference("IntranetNav"),
95             );
96
97 # Print the page
98 output_html_with_http_headers $query, $cookie, $template->output;
99
100 # Local Variables:
101 # tab-width: 4
102 # End: