summaryrefslogtreecommitdiff
path: root/httemplate/search/report_cust_pkg.html
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-04-27 14:19:59 -0700
committerIvan Kohler <ivan@freeside.biz>2014-04-27 14:19:59 -0700
commita7d8494c57376bfc493fbaa234b250cc86a79a94 (patch)
tree71c2443321738bccb4c6bbaa0e4f1495e6c099da /httemplate/search/report_cust_pkg.html
parent14b88b83f22a15b5abb5ba94328f213923a3bb95 (diff)
"on hold" package ordering and status, RT#28508
also even with flag set to do so, don't adjust bill dates forward on a package which is billing while suspended, RT#27882
Diffstat (limited to 'httemplate/search/report_cust_pkg.html')
-rwxr-xr-xhttemplate/search/report_cust_pkg.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/search/report_cust_pkg.html b/httemplate/search/report_cust_pkg.html
index e75a0985b..f124f0f87 100755
--- a/httemplate/search/report_cust_pkg.html
+++ b/httemplate/search/report_cust_pkg.html
@@ -260,7 +260,8 @@ my @date_fields = keys %label;
#false laziness w/cust_pkg.cgi
my %disable = (
'all' => {},
- 'not yet billed' => { 'setup'=>1, 'last_bill'=>1, 'bill'=>1, 'adjourn'=>1, 'susp'=>1, 'expire'=>1, 'cancel'=>1, },
+ 'on hold' => { 'setup'=>1, 'last_bill'=>1, 'bill'=>1, 'adjourn'=>1, 'expire'=>1, 'cancel'=>1, 'dundate'=> 1, },
+ 'not yet billed' => { 'setup'=>1, 'last_bill'=>1, 'bill'=>1, 'adjourn'=>1, 'susp'=>1, 'expire'=>1, 'cancel'=>1, 'dundate'=>1, },
'one-time charge' => { 'last_bill'=>1, 'bill'=>1, 'adjourn'=>1, 'susp'=>1, 'expire'=>1, 'cancel'=>1, 'contract_end'=>1, 'dundate'=>1, },
'active' => { 'susp'=>1, 'cancel'=>1 },
'suspended' => { 'cancel'=>1, 'dundate'=>1, },