Changeset 208 for trunk/admin
- Timestamp:
- May 11, 2014, 12:49:20 AM (11 years ago)
- Location:
- trunk/admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/modules/Elezioni/ele_associazioni.php
r199 r208 188 188 while(list($id,$descr_conf)=mysql_fetch_row($rescomu)){ 189 189 $sel=''; 190 if ($idcomune and $id == $id_conf) $sel="selected"; elseif ($id==1) $sel="selected";190 if ($idcomune and $id == $id_conf) $sel="selected"; 191 191 echo "<option value=\"$id\" $sel>$descr_conf"; 192 192 } -
trunk/admin/modules/Elezioni/ele_riepilogo.php
r174 r208 47 47 list($totm,$totf) = mysql_fetch_row($res); 48 48 $totel=$totm+$totf; 49 $res = mysql_query("SELECT data,orario FROM `soraldo_ele_rilaff`where id_cons_gen=$id_cons_gen order by data desc, orario desc limit 0,1", $dbi);49 $res = mysql_query("SELECT data,orario FROM ".$prefix."_ele_rilaff where id_cons_gen=$id_cons_gen order by data desc, orario desc limit 0,1", $dbi); 50 50 list($giorno,$ora)=mysql_fetch_row($res); 51 51 $res = mysql_query("SELECT sum(voti_donne),sum(voti_uomini),sum(voti_complessivi) FROM ".$prefix."_ele_voti_parziale where id_cons='$id_cons' and data='$giorno' and orario='$ora'", $dbi); … … 66 66 if ($genere==5 and !$votog) { 67 67 $totnullil=$nullilista+$contestatilista; 68 $id_conf=0; 69 $res = mysql_query("SELECT t1.id_conf,t1.id_fascia, t2.limite from ".$prefix."_ele_cons_comune as t1 left join ".$prefix."_ele_conf as t2 on t1.id_conf=t2.id_conf where t1.id_cons='$id_cons'", $dbi); 70 if($res) list($id_conf,$fascia,$limite) = mysql_fetch_row($res); 71 if ($id_conf and $fascia<=$limite) { 68 72 echo "<fieldset><legend>"._VOTI_LISTA."</legend>"; 73 echo "<table border=\"1\" width=\"100%\"><tr><th><b>"._VALIDI."</b></th><th>"._NULLI."</th><th>"._BIANCHI."</th><th>"._CONTESTATI."</th><th>"._VOTINULLI."</th><th>"._TOTNON."</th></TR>"; 74 ECHO "<TR><TH>".number_format($validi,0,',','.')."</TH><TH>".number_format($nulli,0,',','.')."</TH><TH>".number_format($bianchi,0,',','.')."</TH><TH>".number_format($contestati,0,',','.')."</TH><TH>".number_format($votinulli,0,',','.')."</TH><TH>".number_format($totnulli,0,',','.')."</TH></TR></table><br/>"; 75 ECHO "</fieldset><br/><br/><br/>"; 76 }else{ 77 echo "<fieldset><legend>"._VOTI_LISTA."</legend>"; 69 78 echo "<table border=\"1\" width=\"100%\"><tr><th>"._VALIDI."</th><th>"._VOTINULLI."</th><th>"._CONTESTATI."</th>"; 70 79 // if ($genere==5 and !$votog) 71 80 echo "<th>"._SOLO_GRUPPO."</th>"; 72 81 echo "<th>"._TOTNON."</th></TR>"; 73 ECHO "<TR><TH>".number_format($validilista,0,',','.')."</TH><TH>".number_format($nullilista,0,',','.')."</TH><TH>".number_format($contestatilista,0,',','.')."</TH>"; 82 83 ECHO "<TR><TH>".number_format($validilista,0,',','.')."</TH><TH>".number_format($nullilista,0,',','.')."</TH><TH>".number_format($contestatilista,0,',','.')."</TH>"; 74 84 if($genere==5 and !$votog) 75 85 echo "<TH>".number_format($sg,0,',','.')."</TH>"; 76 86 echo "<TH>".number_format($totnullil,0,',','.')."</TH></TR></table><br/>"; 77 87 ECHO "</fieldset>"; 88 } 78 89 } 79 90 echo "</center>"; -
trunk/admin/modules/Elezioni/ele_voti.php
r207 r208 806 806 807 807 if(!$votog) { 808 if ((($genere==3) OR ($genere==5)) and !$id_lista and ($fascia>$limite )) {808 if ((($genere==3) OR ($genere==5)) and !$id_lista and ($fascia>$limite or !$id_conf)) { 809 809 $valista=$arg[$i++]; 810 810 $result = mysql_query("update ".$prefix."_ele_sezioni set solo_gruppo='".$arg[$i]."' where id_sez='$id_sez'",$dbi); -
trunk/admin/versione.php
r206 r208 1 1 <?php 2 $versione="2.0 rev 20 6";2 $versione="2.0 rev 208"; 3 3 ?>
Note:
See TracChangeset
for help on using the changeset viewer.