Changeset 430 for trunk/admin


Ignore:
Timestamp:
Nov 10, 2024, 12:28:53 PM (4 days ago)
Author:
roby
Message:
  • ADMIN

-- Aggiunti nel menu filtri di attivazione per la funzione di estrazione del file csv con le preferenze ai consiglieri

Location:
trunk/admin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/modules/Elezioni/ele.php

    r429 r430  
    128128        try { $sth = $dbi->prepare("$sql"); $sth->execute(); $row = $sth->fetch(PDO::FETCH_BOTH);$nrlista=$row[0];}
    129129        catch(PDOException $e) {$nrlista=0; }   
     130        $sql = "select sum(voti) from ".$prefix."_ele_voti_candidati where id_cons=$id_cons";
     131        try { $sth = $dbi->prepare("$sql"); $sth->execute(); $row = $sth->fetch(PDO::FETCH_BOTH);$nrcandidati=$row[0];}
     132        catch(PDOException $e) {$nrcandidati=0; }       
    130133        $sql = "SELECT sum(voti_complessivi) from ".$prefix."_ele_voti_parziale where id_cons=$id_cons";
    131134        try { $sth = $dbi->prepare("$sql"); $sth->execute(); $row = $sth->fetch(PDO::FETCH_BOTH); $nraff=$row[0];}
     
    287290                        echo "<a href=\"admin.php?op=controllo_votanti&amp;id_cons_gen=$id_cons_gen\">$bullet "._STATO." "._AFFLUENZE."</a><br>";
    288291                }else{
    289                         echo "<img src=\"modules/Elezioni/images/site.gif\" alt =\" \" align=\"center\" border=\"0\"> "._STATO." "._AFFLUENZE."<br>";
    290                 }
    291                 if ($nrvoti) {
     292                        echo "$bullet "._STATO." "._AFFLUENZE."<br>";
     293                }
     294                if ($nrvoti)
    292295                        echo "<a href=\"admin.php?op=controllo_voti&amp;id_cons_gen=$id_cons_gen\">$bullet "._STATO." "._VOTI."</a><br>";
     296                else
     297                        echo "$bullet "._STATO." "._VOTI."<br>";
     298                if($nrcandidati)
    293299                        echo "<a href=\"admin.php?op=estraidati&amp;id_cons_gen=$id_cons_gen\">$bullet "._ESTRAIDATI."</a><br>";
    294                 }else{
    295                         echo "<img src=\"modules/Elezioni/images/site.gif\" alt =\" \" align=\"middle\" border=\"0\"> "._STATO." "._VOTI."<br>";
    296                 }
     300                else
     301                        echo "$bullet "._ESTRAIDATI."<br>";                     
    297302                echo "<a href=\"admin.php?op=riepilogo&amp;id_cons_gen=$id_cons_gen\">$bullet "._RIEPILOGO."</a><br>";
    298303#               if($tipo_cons==18 or $tipo_cons==19)
  • trunk/admin/modules/Elezioni/language/lang-it.php

    r429 r430  
    226226define("_CIRCS","Circoscrizioni");
    227227}
    228 define("_ESTRAIDATI", "Dati per consigliere csv");
     228define("_ESTRAIDATI", "File csv consigliere");
    229229define("_AGGIORNA","Aggiornamento Rev");
    230230define("_VISAFFMF","Affluenze per genere");
  • trunk/admin/versione.php

    r429 r430  
    11<?php
    22
    3 $versione = "3.0 rev 429";
     3$versione = "3.0 rev 430";
    44$version_number = $versione;
    5 $datarel = "09 novembre 2024";
     5$datarel = "10 novembre 2024";
    66$version = "Eleonline $version_number (<i>Data Release: $datarel</i>)";
    77
Note: See TracChangeset for help on using the changeset viewer.