Modified reports/Export_AllPermitsBySubdivision_CSV.php to change order by county name

This commit is contained in:
2026-07-21 06:42:01 -04:00
parent b2d214f4be
commit eac8845f5d
+1 -1
View File
@@ -473,7 +473,7 @@ class PermitsBySubdivision extends Base {
from view_permits r from view_permits r
join counties c on r.permit_county = c.county_serial join counties c on r.permit_county = c.county_serial
where {$where} where {$where}
order by r.permit_sub_div_name, r.permit_project_addr"; order by c.county_name_verbose";
$statement = $connection->prepare($SQL); $statement = $connection->prepare($SQL);
$bindParameters($statement); $bindParameters($statement);