X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fsearch%2Fcust_pay_pending.html;h=2afce0ce9a8a182e3f0c91fedd5e0937697e2a4f;hb=8b4b2a97a84d17087c3fac19b8f768ca146cf897;hp=f0a3a01506e2a71cea9b6bd5f388f28c7b7713cb;hpb=7621140d9f8945c54523c05bcac8e79693a16a52;p=freeside.git diff --git a/httemplate/search/cust_pay_pending.html b/httemplate/search/cust_pay_pending.html index f0a3a0150..2afce0ce9 100755 --- a/httemplate/search/cust_pay_pending.html +++ b/httemplate/search/cust_pay_pending.html @@ -5,11 +5,11 @@ 'name_verb' => 'pending', 'disable_link' => 1, 'disable_by' => 1, #add otaker to cust_pay_pending? - 'html_init' => include('/elements/init_overlib.html'), 'addl_header' => [ 'Time', 'Payment Status', ], 'addl_fields' => [ sub { time2str('%r', shift->_date ) }, $status_sub, ], + 'redirect_empty' => $redirect_empty, ) %> <%init> @@ -18,7 +18,7 @@ my %statusaction = ( 'new' => 'delete', 'pending' => 'complete', #'authorized' => '', - #'captured' => '', + 'captured' => 'capture', #'declined' => '', #wouldn't need to take action on a done state#'done' ); @@ -44,4 +44,13 @@ my $status_sub = sub { $return. qq! ($link)!; }; +my $redirect_empty = sub { + my $cgi = shift; + if ( $cgi->param('custnum') =~ /^(\d+)$/ ) { + $p. "view/cust_main.cgi?$1"; + } else { + ''; + } +}; +