summaryrefslogtreecommitdiff
path: root/httemplate/search/cust_pkg.cgi
diff options
context:
space:
mode:
authorivan <ivan>2011-06-21 22:14:20 +0000
committerivan <ivan>2011-06-21 22:14:20 +0000
commit783eefa4a70dd88dd13ffd73c4e23361288628f0 (patch)
treead36fdefba3ab64774727d2c0671b93e04c32c5d /httemplate/search/cust_pkg.cgi
parentfb8915cce4be9520c00cc53c659e34abfb6172e1 (diff)
rework suspension delays, RT#6956
Diffstat (limited to 'httemplate/search/cust_pkg.cgi')
-rwxr-xr-xhttemplate/search/cust_pkg.cgi13
1 files changed, 8 insertions, 5 deletions
diff --git a/httemplate/search/cust_pkg.cgi b/httemplate/search/cust_pkg.cgi
index 3606a3d24..7a6f49a23 100755
--- a/httemplate/search/cust_pkg.cgi
+++ b/httemplate/search/cust_pkg.cgi
@@ -17,6 +17,7 @@
emt('Next bill'),
emt('Adjourn'),
emt('Susp.'),
+ emt('Susp. delay'),
emt('Expire'),
emt('Contract end'),
emt('Cancel'),
@@ -44,7 +45,7 @@
sub { FS::part_pkg::freq_pretty(shift); },
( map { time_or_blank($_) }
- qw( setup last_bill bill adjourn susp expire contract_end cancel ) ),
+ qw( setup last_bill bill adjourn susp dundate expire contract_end cancel ) ),
sub { my $self = shift;
my $return = '';
@@ -104,13 +105,14 @@
'',
'',
'',
+ '',
FS::UI::Web::cust_colors(),
'',
],
- 'style' => [ '', '', '', '', 'b', '', '', '', '', '', '', '', '', '', '', '', '',
+ 'style' => [ '', '', '', '', 'b', '', '', '', '', '', '', '', '', '', '', '', '', '',
FS::UI::Web::cust_styles() ],
'size' => [ '', '', '', '', '-1' ],
- 'align' => 'rrlccrrlrrrrrrrrl'. FS::UI::Web::cust_aligns(). 'r',
+ 'align' => 'rrlccrrlrrrrrrrrrl'. FS::UI::Web::cust_aligns(). 'r',
'links' => [
$link,
$link,
@@ -129,6 +131,7 @@
'',
'',
'',
+ '',
( map { $_ ne 'Cust. Status' ? $clink : '' }
FS::UI::Web::cust_header(
$cgi->param('cust_fields')
@@ -176,9 +179,9 @@ $search_hash{report_option} = join(',', @report_option) if @report_option;
#false laziness w/report_cust_pkg.html
my %disable = (
'all' => {},
- 'one-time charge' => { 'last_bill'=>1, 'bill'=>1, 'adjourn'=>1, 'susp'=>1, 'expire'=>1, 'cancel'=>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 },
+ 'suspended' => { 'cancel' =>1, 'dundate'=>1, },
'cancelled' => {},
'' => {},
);