diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2012-05-10 20:30:18 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2012-05-10 20:30:18 -0700 |
| commit | 46571761a938080713ef03e1b61a5138f05c606e (patch) | |
| tree | 0478dbe0785bb20b09cf8006fa1f297391549763 /httemplate/misc/process/cancel_pkg.html | |
| parent | d6c36f251779288c9147275c5a6d1d1ddf795b8f (diff) | |
fix uncancellation w/services that have been re-provisioned, RT#17518
Diffstat (limited to 'httemplate/misc/process/cancel_pkg.html')
| -rwxr-xr-x | httemplate/misc/process/cancel_pkg.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/httemplate/misc/process/cancel_pkg.html b/httemplate/misc/process/cancel_pkg.html index bc3a8cd3f..b2d7bfaa4 100755 --- a/httemplate/misc/process/cancel_pkg.html +++ b/httemplate/misc/process/cancel_pkg.html @@ -80,11 +80,14 @@ my $last_bill = my $bill = $cgi->param('bill') ? parse_datetime($cgi->param('bill')) : ''; +my $svc_fatal = ( $cgi->param('svc_not_fatal') ne 'Y' ); + my $error = $cust_pkg->$method( 'reason' => $reasonnum, 'date' => $date, 'resume_date' => $resume_date, 'last_bill' => $last_bill, 'bill' => $bill, + 'svc_fatal' => $svc_fatal, ); if ($error) { |
