diff options
author | ivan <ivan> | 2008-07-09 03:40:52 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-07-09 03:40:52 +0000 |
commit | e84fbb05b0303b91b85dd57112d4c0dcec2cc4d5 (patch) | |
tree | 9caac40ce6ebb0934c1293c259bb473167a12579 /httemplate | |
parent | 095072cc3774598d942dd36d113b049cb46b7d2e (diff) |
helpful to see when exemptions were inserted?
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/search/cust_tax_exempt.cgi | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/httemplate/search/cust_tax_exempt.cgi b/httemplate/search/cust_tax_exempt.cgi index ba202dfa2..b1abadae2 100644 --- a/httemplate/search/cust_tax_exempt.cgi +++ b/httemplate/search/cust_tax_exempt.cgi @@ -7,12 +7,16 @@ 'header' => [ '#', 'Month', + 'Inserted', 'Amount', FS::UI::Web::cust_header(), ], 'fields' => [ 'exemptnum', sub { $_[0]->month. '/'. $_[0]->year; }, + sub { my $h = $_->h_search('insert'); + $h ? time2str('%L/%d/%Y', $h->history_date ) : '' + }, sub { $money_char. $_[0]->amount; }, \&FS::UI::Web::cust_fields, @@ -21,22 +25,25 @@ '', '', '', + '', ( map { $_ ne 'Cust. Status' ? $clink : '' } FS::UI::Web::cust_header() ), ], - 'align' => 'rrr'.FS::UI::Web::cust_aligns(), + 'align' => 'rrrr'.FS::UI::Web::cust_aligns(), 'color' => [ '', '', '', + '', FS::UI::Web::cust_colors(), ], 'style' => [ '', '', '', + '', FS::UI::Web::cust_styles(), ], ) |