Changeset 207 for trunk/admin
- Timestamp:
- May 9, 2014, 2:45:34 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/modules/Elezioni/ele_voti.php
r204 r207 516 516 $bgcolor2=$_SESSION['bgcolor2']; 517 517 //controlla se sono stati inseriti i votanti 518 $result = mysql_query("SELECT preferenze, id_fascia from ".$prefix."_ele_cons_comune where id_cons='$id_cons'",$dbi);519 list($numprefs,$fascia )=mysql_fetch_row($result);518 $result = mysql_query("SELECT preferenze, id_fascia, id_conf from ".$prefix."_ele_cons_comune where id_cons='$id_cons'",$dbi); 519 list($numprefs,$fascia,$id_conf)=mysql_fetch_row($result); 520 520 521 521 if(!$votog and ($genere==3 or $genere==5)) … … 531 531 $ele_lista=''; 532 532 if (($genere==4 or $genere==5) and !$votoc) { //liste a piu' candidati 533 if(($genere==5 and $fascia<=$limite ) and !$id_lista) { //esclude il voto di lista per le comunali nei comuni sotto fascia limite533 if(($genere==5 and $fascia<=$limite and $id_conf) and !$id_lista) { //esclude il voto di lista per le comunali nei comuni sotto fascia limite 534 534 $result = mysql_query("SELECT id_lista from ".$prefix."_ele_lista where id_cons=$id_cons limit 0,1",$dbi); 535 535 list($id_lista)=mysql_fetch_row($result); … … 552 552 $result = mysql_query("SELECT sum(t1.voti) from ".$prefix."_ele_voti_candidati as t1 left join ".$prefix."_ele_candidati as t2 on (t1.id_cand=t2.id_cand) where t1.id_sez=$id_sez and t2.id_lista=$id_rif",$dbi); 553 553 list($votisezcand)=mysql_fetch_row($result); 554 if( $fascia>$limiteor $genere==4)554 if(($fascia>$limite or !$id_conf) or $genere==4) 555 555 $result = mysql_query("SELECT sum(voti) from ".$prefix."_ele_voti_lista where id_sez='$id_sez' and id_lista='$id_rif'", $dbi); 556 556 else{ … … 601 601 $result = mysql_query("SELECT sum(t1.voti) from ".$prefix."_ele_voti_candidati as t1 left join ".$prefix."_ele_candidati as t2 on (t1.id_cand=t2.id_cand) where t1.id_sez=$id_sez and t2.id_lista=$id_lista",$dbi); 602 602 list($votisezcand)=mysql_fetch_row($result); 603 if($fascia>$limite )603 if($fascia>$limite or !$id_conf) 604 604 $result = mysql_query("SELECT sum(voti) from ".$prefix."_ele_voti_lista where id_sez='$id_sez' and id_lista='$id_lista'", $dbi); 605 605 else{ … … 703 703 // toglie ai candidati la visual... del solo_gruppo 704 704 if(!$votog) { 705 if (($genere==3 OR $genere==5) and (!$id_lista) and ($fascia>$limite )) { //gruppo e liste705 if (($genere==3 OR $genere==5) and (!$id_lista) and ($fascia>$limite or !$id_conf)) { //gruppo e liste 706 706 echo "<tr bgcolor=\"$bgcolor2\"><td></td><td><b>"._VALIDI_LISTA."</b></td><td align=\"center\"><input type=\"hidden\" name=\"id_sez\" value=\"$id_sez\"><input name=\"valista\" value=\"$valista\" size=\"5\" style=\"text-align:right\"></td></tr>"; 707 707 echo "<tr bgcolor=\"$bgcolor2\"><td></td><td><b>"._SOLO_GRUPPO."</b></td><td align=\"center\"><input name=\"sg\" value=\"$sg\" size=\"5\" style=\"text-align:right\"></td></tr>"; … … 709 709 ."</td></tr><tr bgcolor=\"$bgcolor2\"><td></td><td><b>"._CONTESTATI_LISTE."</b></td><td align=\"center\"><input name=\"contestati\" value=\"$contestati\" size=\"5\" style=\"text-align:right\"></td></tr>"; 710 710 711 }elseif (($genere==3 OR $genere==5) and !$votoc and $fascia>$limite){ //}elseif ($tipo_cons!=10 and $tipo_cons!=11){711 }elseif (($genere==3 OR $genere==5) and !$votoc and ($fascia>$limite or !$id_conf)){ //}elseif ($tipo_cons!=10 and $tipo_cons!=11){ 712 712 echo "<tr bgcolor=\"$bgcolor1\"><td></td><td><b>"._SOLO_GRUPPO."</b></td><td align=\"center\">$sg</td></tr>"; 713 713 } 714 714 ######modifica del 16-04-2009 per visualizzare i voti al solo sindaco nei comuni con meno di 15000 abitanti 715 elseif(($genere==3 OR $genere==5) and ($id_lista) and ($fascia<=$limite )) {715 elseif(($genere==3 OR $genere==5) and ($id_lista) and ($fascia<=$limite or !$id_conf)) { 716 716 $resvg = mysql_query("SELECT id_gruppo FROM ".$prefix."_ele_lista where id_lista='$id_lista'", $dbi); 717 717 list($id_gruppo) = mysql_fetch_row($resvg); … … 751 751 function rec_voti() { 752 752 global $prefix, $dbi,$aid,$id_cons,$ops,$genere,$votog,$fileout,$id_comune,$limite,$update; 753 $sqlcomu="select id_fascia from ".$prefix."_ele_cons_comune where id_cons='$id_cons'";753 $sqlcomu="select id_fascia,id_conf from ".$prefix."_ele_cons_comune where id_cons='$id_cons'"; 754 754 $res = mysql_query($sqlcomu); 755 755 if($res) 756 list($fascia )=mysql_fetch_row($res);757 else $fascia=0;756 list($fascia,$id_conf)=mysql_fetch_row($res); 757 else {$fascia=0; $id_conf=0;} 758 758 if ($fileout) while (!$fp = fopen($fileout,"a")); 759 759 $username=$aid; … … 775 775 $condizione="id_lista"; 776 776 } 777 if ((($genere==3) OR ($genere==5)) and !$id_lista and !$votog and ($fascia>$limite )) $y = (count($arg)-4);777 if ((($genere==3) OR ($genere==5)) and !$id_lista and !$votog and ($fascia>$limite or !$id_conf)) $y = (count($arg)-4); 778 778 else $y=count($arg); 779 779 if($do==1) {
Note:
See TracChangeset
for help on using the changeset viewer.