improve speed in customer search, #13364
[freeside.git] / httemplate / search / cust_pay_pending.html
index f0a3a01..8b73508 100755 (executable)
@@ -10,6 +10,7 @@
                 'addl_fields'   => [ sub { time2str('%r', shift->_date ) },
                                      $status_sub,
                                    ],
+                'redirect_empty' => $redirect_empty,
           )
 %>
 <%init>
@@ -18,7 +19,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 +45,13 @@ my $status_sub = sub {
   $return. qq! <FONT SIZE="-1">($link)</FONT>!;
 };
 
+my $redirect_empty = sub {
+  my $cgi = shift;
+  if ( $cgi->param('custnum') =~ /^(\d+)$/ ) {
+    $p. "view/cust_main.cgi?$1";
+  } else {
+    '';
+  }
+};
+
 </%init>