diff options
-rwxr-xr-x | httemplate/browse/cust_main_county.cgi | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/httemplate/browse/cust_main_county.cgi b/httemplate/browse/cust_main_county.cgi index 99c1712be..6d89edcfa 100755 --- a/httemplate/browse/cust_main_county.cgi +++ b/httemplate/browse/cust_main_county.cgi @@ -141,17 +141,17 @@ sub collapse_link { my $row = $param{'row'}; my $col = $param{'col'}; - return '' - if $col eq 'state' and $row->city - || qsearch({ - 'table' => 'cust_main_county', - 'hashref' => { - 'country' => $row->country, - 'state' => $row->state, - 'city' => { op=>'!=', value=>'' }, - }, - 'order_by' => 'LIMIT 1', - }); +# return '' +# if $col eq 'state' and $row->city +# || qsearch({ +# 'table' => 'cust_main_county', +# 'hashref' => { +# 'country' => $row->country, +# 'state' => $row->state, +# 'city' => { op=>'!=', value=>'' }, +# }, +# 'order_by' => 'LIMIT 1', +# }); my %below = ( 'county' => 'city', 'state' => 'county', |