X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fsearch%2Fcust_pkg.cgi;h=1cb61bccb8c045f817a5942a6cccc9bc539f6c3b;hb=5c0cfcb8dec7c4f3a7aecea4c550ffb4bfb774c3;hp=297edee90b6622c8960e9d7086cb1640f7e3df3a;hpb=006b2392be94f9670eddf3d01ba89c00f9c16c05;p=freeside.git diff --git a/httemplate/search/cust_pkg.cgi b/httemplate/search/cust_pkg.cgi index 297edee90..1cb61bccb 100755 --- a/httemplate/search/cust_pkg.cgi +++ b/httemplate/search/cust_pkg.cgi @@ -9,6 +9,8 @@ emt('Package'), emt('Class'), emt('Status'), + emt('Sales Person'), + emt('Ordered by'), emt('Setup'), emt('Base Recur'), emt('Freq.'), @@ -20,6 +22,7 @@ emt('Susp. delay'), emt('Expire'), emt('Contract end'), + emt('Changed'), emt('Cancel'), emt('Reason'), FS::UI::Web::cust_header( @@ -33,6 +36,8 @@ sub { $_[0]->pkg; }, 'classname', sub { ucfirst(shift->status); }, + 'salesperson', + 'otaker', sub { sprintf( $money_char.'%.2f', shift->part_pkg->option('setup_fee'), ); @@ -45,7 +50,7 @@ sub { FS::part_pkg::freq_pretty(shift); }, ( map { time_or_blank($_) } - qw( setup last_bill bill adjourn susp dundate expire contract_end cancel ) ), + qw( setup last_bill bill adjourn susp dundate expire contract_end change_date cancel ) ), sub { my $self = shift; my $return = ''; @@ -94,13 +99,16 @@ '', '', '', + '', + '', + '', FS::UI::Web::cust_colors(), '', ], - 'style' => [ '', '', '', '', 'b', '', '', '', '', '', '', '', '', '', '', '', '', '', + 'style' => [ '', '', '', '', 'b', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', FS::UI::Web::cust_styles() ], 'size' => [ '', '', '', '', '-1' ], - 'align' => 'rrlccrrlrrrrrrrrrl'. FS::UI::Web::cust_aligns(). 'r', + 'align' => 'rrlccccrrlrrrrrrrrrrl'. FS::UI::Web::cust_aligns(). 'r', 'links' => [ $link, $link, @@ -119,6 +127,9 @@ '', '', '', + '', # link to changed-from package? + '', + '', '', ( map { $_ ne 'Cust. Status' ? $clink : '' } FS::UI::Web::cust_header( @@ -182,7 +193,7 @@ my %disable = ( '' => {}, ); -foreach my $field (qw( setup last_bill bill adjourn susp expire contract_end cancel active )) { +foreach my $field (qw( setup last_bill bill adjourn susp expire contract_end change_date cancel active )) { my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi, $field);