diff options
author | Mark Wells <mark@freeside.biz> | 2016-07-07 20:22:45 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-07-07 20:22:45 -0700 |
commit | db1221a82f407c9ebc782ff03e9cf61115eef8cb (patch) | |
tree | 20fc398c481e9ceb02b330c14d6fcdfd8fefebfc /httemplate/misc/process | |
parent | 6401184cc06d3a324a230490097289d0d6e7fa91 (diff) | |
parent | f609fce353fab43501bf8e3823c613562f29e18d (diff) |
Merge branch 'FREESIDE_3_BRANCH' of git.freeside.biz:/home/git/freeside into 3.x
Diffstat (limited to 'httemplate/misc/process')
-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) { |