Ignore:
Timestamp:
May 26, 2019, 4:31:45 PM (5 years ago)
Author:
roby
Message:
 
File:
1 edited

Legend:

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

    r312 r315  
    12811281                while ( list($id_gruppo)=$resref->fetch(PDO::FETCH_NUM))
    12821282                    {
     1283                                        if($disgiunto || $flagsg){     
     1284                                                $sql="SELECT sum(voti-solo_gruppo) FROM ".$prefix."_ele_voti_gruppo where id_sez='$id_sez' and id_gruppo='$id_gruppo'";
     1285                                                $res3 = $dbi->prepare("$sql");
     1286                                                $res3->execute();
     1287                                                if($flagsg){
     1288                                                        $sql="SELECT sum(voti+nulli_lista) FROM ".$prefix."_ele_voti_lista where id_sez='$id_sez' and  id_lista in (select id_lista from ".$prefix."_ele_lista where id_gruppo='$id_gruppo')";
     1289                                                        $res4 = $dbi->prepare("$sql");
     1290                                                        $res4->execute();
     1291                                                }else{
     1292                                                        $sql="SELECT sum(voti) FROM ".$prefix."_ele_voti_lista where id_sez='$id_sez' and  id_lista in (select id_lista from ".$prefix."_ele_lista where id_gruppo='$id_gruppo')";                                             
     1293                                                        $res4 = $dbi->prepare("$sql");
     1294                                                        $res4->execute();                                                       
     1295                                                }
     1296                                        }else{
     1297                                                $sql="SELECT sum(voti) FROM ".$prefix."_ele_voti_gruppo where id_sez='$id_sez' and id_gruppo='$id_gruppo'";
     1298                                                $res3 = $dbi->prepare("$sql");
     1299                                                $res3->execute();
     1300                                                $sql="SELECT sum(voti) FROM ".$prefix."_ele_voti_lista where id_sez='$id_sez' and  id_lista in (select id_lista from ".$prefix."_ele_lista where id_gruppo='$id_gruppo')";                                             
     1301                                                $res4 = $dbi->prepare("$sql");
     1302                                                $res4->execute();
     1303                                        }
     1304                    list($vgruppo)=$res3->fetch(PDO::FETCH_NUM);
     1305                    list($vliste)=$res4->fetch(PDO::FETCH_NUM);
     1306                    if($vliste>$vgruppo and !$disgiunto )
     1307                        {
     1308                        $sql="SELECT descrizione FROM ".$prefix."_ele_gruppo where id_gruppo='$id_gruppo'";
     1309                                                $result = $dbi->prepare("$sql");
     1310                                                $result->execute();
     1311                                                list($dgruppo)=$result->fetch(PDO::FETCH_NUM);
     1312                        echo "<table class=\"table-menu\" style=\"width: 50%;\"><tr><td style=\"background-color: rgb(255, 0, 0); color: black; text-align: center\"><img src=\"modules/Elezioni/images/alert.gif\" align=\"middle\" alt=\"\"><br/><b> ATTENZIONE!<BR/>I voti delle liste collegate $vliste<br/> superano i voti assegnati al gruppo $dgruppo $vgruppo</b><br></td></tr></table>";
     1313                        $errgrulis[$id_gruppo]=1;
     1314                        }
     1315                    elseif($vliste<$vgruppo and $disgiunto )
     1316                        {
     1317                        $sql="SELECT descrizione FROM ".$prefix."_ele_gruppo where id_gruppo='$id_gruppo'";
     1318                                                $result = $dbi->prepare("$sql");
     1319                                                $result->execute();
     1320                        list($dgruppo)=$result->fetch(PDO::FETCH_NUM);
     1321                        echo "<table class=\"table-menu\" style=\"width: 50%;\"><tr><td style=\"background-color: rgb(255, 0, 0); color: black; text-align: center\"><img src=\"modules/Elezioni/images/alert.gif\" align=\"middle\" alt=\"\"><br/><b> ATTENZIONE!<BR/>I voti assegnati al gruppo $dgruppo<br/> superano i voti delle liste collegate </b><br></td></tr></table>";
     1322                        $errgrulis[$id_gruppo]=1;
     1323                        }
     1324                    }
     1325/*                   {
    12831326                    $sql="SELECT sum(voti-solo_gruppo) FROM ".$prefix."_ele_voti_gruppo where id_sez='$id_sez' and id_gruppo='$id_gruppo'";
    12841327$res3 = $dbi->prepare("$sql");
     
    13151358                        echo "<tr><td style=\"background-color: rgb(255, 0, 0); color: black; text-align: center\"><img src=\"modules/Elezioni/images/alert.gif\" align=\"middle\" alt=\"\"><br/><b> ATTENZIONE!<BR/>I voti assegnati al gruppo $dgruppo <br/> superano i voti delle liste collegate</b><br></td></tr>";
    13161359                        }
    1317                     }
     1360                    }*/
    13181361}
    13191362
Note: See TracChangeset for help on using the changeset viewer.