diff options
author | Ivan Kohler <ivan@freeside.biz> | 2022-03-03 20:23:38 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2022-03-03 20:23:38 -0800 |
commit | db0f30f212e777f4c08cf69b8f37792b5560e7b1 (patch) | |
tree | 559963b48275263adc4733bb73117324499c5d32 | |
parent | fa7b2d94bff0db0059d989d64430cd1b59a93b55 (diff) |
fix 477 deployment report
-rw-r--r-- | FS/FS/Report/FCC_477.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/Report/FCC_477.pm b/FS/FS/Report/FCC_477.pm index 0f5d4cedc..3749bfebe 100644 --- a/FS/FS/Report/FCC_477.pm +++ b/FS/FS/Report/FCC_477.pm @@ -382,7 +382,8 @@ sub fbd_sql { ); push @where, "agentnum = $agentnum" if $agentnum; - my $order_by = 'censusblock, agentnum, technology, is_consumer, is_business'; + #my $order_by = 'censusblock, agentnum, technology, is_consumer, is_business'; + my $order_by = 'censusblock, technology'; "SELECT DISTINCT ".join(', ', @select) . " FROM $from |