X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fsearch%2Fvend_bill.html;h=9bc74cfc536bade2137844bbfe73019f3234e76f;hp=ddcc0c93ef97d42b3c9e9cf80e07fbdc453bd53e;hb=ff27c3f36240aee48ed50153dd5d8fe3ac3f2443;hpb=f264598260908d2442fe1aed2ce3784ce51254e6 diff --git a/httemplate/search/vend_bill.html b/httemplate/search/vend_bill.html index ddcc0c93e..9bc74cfc5 100644 --- a/httemplate/search/vend_bill.html +++ b/httemplate/search/vend_bill.html @@ -7,6 +7,7 @@ 'count_query' => $count_query, 'count_addl' => [ '$%.2f total', ], 'header' => [ 'Date', + 'Payment date', 'Vendor', 'Class', 'Amount', @@ -14,6 +15,7 @@ ], 'fields' => [ sub { time2str('%D', shift->_date) }, + sub { time2str('%D', shift->payment_date) }, sub { shift->vend_main->vendname }, sub { shift->vend_main->vend_class->classname }, 'charged', @@ -32,9 +34,14 @@ die "access denied" my %search = (); # begin/end/beginning/ending -my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi, ''); +my($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi, '_date'); $search{'_date'} = [ $beginning, $ending ]; +($beginning, $ending) = FS::UI::Web::parse_beginning_ending($cgi, 'payment_date'); +$search{'payment_date'} = [ $beginning, $ending ]; + +$search{'classnum'} = $cgi->param('classnum'); + my $query = FS::vend_bill->search( \%search ); my $count_query = delete( $query->{'count_query'} );