actes/admin/listgeolocs.php
Modif pour afficher le nb d’actes par communes
ligne 95 modif des conditions on affiche les communes via act_geoloc et act_sums
$condit = » where b.commune=a.commune and b.depart=a.depart « ;
ligne 97 idem
$condit = » where a.COMMUNE like ‘ ».$init. »%’ and b.commune=a.commune and b.depart=a.depart « ;
ligne 100 on ajoute la table act_sums et le nb total des actes pour une commune
$request = "select ID,a.COMMUNE,a.DEPART,LON,LAT,STATUT,sum(NB_TOT) as nbtot"
." from ".EA_DB."_geoloc a,".EA_DB."_sums b "
.$condit
." group by b.commune order by ".$order;
ligne 135 ajout le titre de colonnes actes
echo '<th>Actes</th>';
ligne 149 affiche le nb d’actes pour une commune
echo ‘<td align=center>’.$ligne[‘nbtot’].'</td>’;