diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-06-21 01:11:43 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-07-07 19:00:52 -0500 |
commit | 5d4b4e0db37c87e8c298eb1f97585b309f42608c (patch) | |
tree | 15c9c03cab601b0251fcfa4c173625591842db4a /httemplate/misc/process/cancel_pkg.html | |
parent | 5e76080d6ca453fa4471d21e10da023f8bb03184 (diff) |
RT#17599: display cancelled services from history
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 6972a49bf..eb3b2efe6 100755 --- a/httemplate/misc/process/cancel_pkg.html +++ b/httemplate/misc/process/cancel_pkg.html @@ -85,6 +85,8 @@ my $bill = my $svc_fatal = ( $cgi->param('svc_not_fatal') ne 'Y' ); +my $only_svcnum = ($method eq 'uncancel') ? [ $cgi->param('only_svcnum') ] : undef; + $error ||= $cust_pkg->$method( 'reason' => $reasonnum, 'date' => $date, 'resume_date' => $resume_date, @@ -92,6 +94,7 @@ $error ||= $cust_pkg->$method( 'reason' => $reasonnum, 'bill' => $bill, 'svc_fatal' => $svc_fatal, 'options' => $options, + 'only_svcnum' => $only_svcnum, ); if ($error) { |