This commit was generated by cvs2svn to compensate for changes in r6255,
[freeside.git] / httemplate / misc / process / cancel_pkg.html
1 <% header("Package $past{$method}") %>
2   <SCRIPT TYPE="text/javascript">
3     window.top.location.reload();
4   </SCRIPT>
5   </BODY>
6 </HTML>
7 <%once>
8
9 my %past = ( 'cancel'  => 'cancelled',
10              'expire'  => 'expired',
11              'suspend' => 'suspended',
12              'adjourn' => 'adjourned',
13            );
14
15 #i'm sure this is false laziness with somewhere, at least w/misc/cancel_pkg.html
16 my %right = ( 'cancel'  => 'Cancel customer package immediately',
17               'expire'  => 'Cancel customer package later',
18               'suspend' => 'Suspend customer package',
19               'adjourn' => 'Suspend customer package later',
20             );
21
22 </%once>
23 <%init>
24
25 #untaint method
26 my $method = $cgi->param('method');
27 $method =~ /^(cancel|expire|suspend|adjourn)$/ or die "Illegal method";
28 $method = $1;
29
30 die "access denied"
31   unless $FS::CurrentUser::CurrentUser->access_right($right{$method});
32
33 #untaint pkgnum
34 my $pkgnum = $cgi->param('pkgnum');
35 $pkgnum =~ /^(\d+)$/ or die "Illegal pkgnum";
36 $pkgnum = $1;
37
38 #untaint reasonnum
39 my $reasonnum = $cgi->param('reasonnum');
40 $reasonnum =~ /^(-?\d+)$/ or die "Illegal reasonnum";
41 $reasonnum = $1;
42
43 my $date = time;
44 if ($method eq 'expire' || $method eq 'adjourn'){
45   #untaint date
46   $date = $cgi->param('date');
47   str2time($cgi->param('date')) =~ /^(\d+)$/ or die "Illegal date";
48   $date = $1;
49 }
50
51 my $cust_pkg = qsearchs( 'cust_pkg', {'pkgnum'=>$pkgnum} );
52
53 #my $otaker = $FS::CurrentUser::CurrentUser->name;
54 #$otaker = $FS::CurrentUser::CurrentUser->username
55 #  if ($otaker eq "User, Legacy");
56
57 if ($reasonnum == -1) {
58   $reasonnum = {
59     'typenum' => scalar( $cgi->param('newreasonnumT') ),
60     'reason'  => scalar( $cgi->param('newreasonnum' ) ),
61   };
62 }
63
64 my $error;
65 if ($method eq 'expire' || $method eq 'adjourn'){
66   my %hash = $cust_pkg->hash;
67   $hash{$method} = $date;
68   my $new = new FS::cust_pkg \%hash;
69   $error = $new->replace($cust_pkg, 'reason' => $reasonnum);
70 } else {
71   $error = $cust_pkg->$method( 'reason' => $reasonnum );
72 }
73
74 if ($error) {
75   $cgi->param('error', $error);
76   print $cgi->redirect(popurl(2). "cancel_pkg.html?". $cgi->query_string );
77 }
78
79 </%init>