better behavior when zip code is missing
authorjeff <jeff>
Thu, 4 Dec 2008 01:46:20 +0000 (01:46 +0000)
committerjeff <jeff>
Thu, 4 Dec 2008 01:46:20 +0000 (01:46 +0000)
httemplate/edit/cust_main/choose_tax_location.html

index 23fdbf2..045490b 100644 (file)
@@ -50,7 +50,10 @@ my $hashref = { data_vendor => $data_vendor,
 my @keys = qw ( zip );
 my @cust_tax_location = ();
 until ( @cust_tax_location ) {
-  @cust_tax_location = qsearch( 'cust_tax_location', $hashref );
+  @cust_tax_location = qsearch({ table    => 'cust_tax_location',
+                                 hashref  =>  $hashref,
+                                 order_by =>  'LIMIT 50',
+                              });
   last unless scalar(@keys);
   delete $hashref->{ shift @keys };
 }