Ignore:
Timestamp:
May 23, 2022, 12:44:20 PM (2 years ago)
Author:
roby
Message:

admin:
la consultazione iniziale per utente abilitato a gestire la singola sede non viene fissata correttamente. Risolto
la visualizzazione delle rilevazioni oraire mostra tutti gli orari ma deve mostrare solo il prossimo da inserire. Risolto

File:
1 edited

Legend:

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

    r366 r369  
    7272
    7373$riga=array();
    74 $rigat=array();
     74$rigat=array();
     75$uscita=0;
    7576while (list($ora,$giorno)= $res->fetch(PDO::FETCH_NUM)){
    7677        $y++;
     
    9596        $rigat[$y].= "</div>";
    9697        $errvot1=0;
     98        $numril=0;
     99
    97100        for ($i=1;$i<=$max;$i++){
    98101                $query="SELECT * FROM ".$prefix."_ele_voti_parziale as t1 left join ".$prefix."_ele_gruppo as t2
     
    112115                $resril = $dbi->prepare("$sql");
    113116                $resril->execute();
    114         list($numril)=$resril->fetch(PDO::FETCH_NUM);
     117        list($tmpril)=$resril->fetch(PDO::FETCH_NUM);
     118                if($tmpril>$numril) $numril=$tmpril;
    115119                if ($res2)
    116120                        list($gruppo)= $res2->fetch(PDO::FETCH_NUM);
     
    160164                ."<input type=\"hidden\" name=\"id_gruppo\" value=\"$id_gruppo\"/>";
    161165                $riga[$y].= "</span>";
    162                 if (chisei($id_cons_gen)>=64 and $y==$numril)   $riga[$y].= "<span class=\"td\" style=\"text-align: right;\" rowspan=\"1\" colspan=\"6\">"._DELETE." <input type=\"checkbox\" name=\"delete\" value=\"true\"/></span>";
     166                if (chisei($id_cons_gen)>=64 and ($y==$numril and $voti_t!='')) { $riga[$y].= "<span class=\"td\" style=\"text-align: right;\" rowspan=\"1\" colspan=\"6\">"._DELETE." <input type=\"checkbox\" name=\"delete\" value=\"true\"/></span>";}
    163167                else $riga[$y].= "<span class=\"td\" style=\"text-align: right;\" rowspan=\"1\" colspan=\"6\"><input type=\"hidden\" name=\"delete\" value=\"\"/></span>";
    164168                $riga[$y].= "<span class=\"td\" style=\"text-align: right;\" rowspan=\"1\" colspan=\"6\"><input type=\"submit\" name=\"update\" value=\""._OK."\"/></span>";
    165169                $riga[$y].= "</form>";
    166 
     170                if($numril>$uscita) $uscita=$numril;
    167171        }
    168172#               echo "</div>";
     
    179183                echo $rigat[$key];
    180184                echo $riga[$key];
     185                if($key>$uscita) { break;}
    181186        }
    182187        echo "</div></td></tr></table>";
Note: See TracChangeset for help on using the changeset viewer.