RT# 83090 - updated customer search to allow multiple orderbys
authorChristopher Burger <burgerc@freeside.biz>
Wed, 3 Apr 2019 14:08:11 +0000 (10:08 -0400)
committerChristopher Burger <burgerc@freeside.biz>
Wed, 3 Apr 2019 14:08:11 +0000 (10:08 -0400)
FS/FS/cust_main/Search.pm

index 9cd870b..7216fe6 100644 (file)
@@ -618,7 +618,7 @@ sub search {
   my $dbh = dbh;
 
   my @where = ();
-  my $orderby;
+  my $orderby = "ORDER BY cust_main.custnum";
 
   # initialize these to prevent warnings
   $params = {
@@ -937,7 +937,7 @@ sub search {
       }
     }
 
-    $orderby ||= "ORDER BY cust_main.$field";
+    $orderby .= ", cust_main.$field";
 
   }
 
@@ -1115,7 +1115,7 @@ sub search {
   # setup queries, subs, etc. for the search
   ##
 
-  $orderby ||= 'ORDER BY custnum';
+  $orderby ||= 'ORDER BY cust_main.custnum';
 
   # here is the agent virtualization
   push @where,