Ignore:
Timestamp:
Mar 30, 2010, 5:25:30 PM (14 years ago)
Author:
roby
Message:

creata funzione per gestione calcolo percentuali in visualizzazione completa di arrotondamento (applicata solo ai totali in visualizzazione griglia per verifica)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/client/modules/Elezioni/gruppo.php

    r64 r65  
    508508                                        $resvt = mysql_query("SELECT voti from ".$prefix."_ele_voti_$tab15 where id_cons='$id_cons'",$dbi);
    509509                                        list($votlt)=mysql_fetch_row($resvt);
     510                                        $temp3=arrayperc($temp,$sevaltot);
    510511                                        while (list($key,$voti)= each($temp)) {
    511512                                                $percento="<b>$voti</b>";
    512513                                                if ($perc=='true' and $voticompl)
    513514                                                {
    514                                                         $percento="<b>$voti<br /><span class=\"red\"><i>".number_format($voti*100/$sevaltot,2)." %</i></span></b>";
     515 #                      $valperc2=round($valperc,2);
     516                                                        $percento="<b>$voti<br /><span class=\"red\"><i>".$temp3[$key]." %</i></span></b>";
    515517                                                }
    516518                                                $ar[2+$offsetsez-$minsez][$key]=$percento;
     
    520522                                $key=$offset+1;
    521523                                $tmp=array($sevaltot,$senultot,$sebiatot,$secontot,$sevnutot);
    522                                 while(list($k,$voti)= each($tmp)) {
    523                                         $percento="<b>$voti</b>";
    524                                                 if ($perc=='true' and $voticompl)
    525                                                 {
    526                                                         $percento="<b>$voti<br /><span class=\"red\"><i>".number_format($voti*100/$voticompl,2)." %</i></span></b>";
    527                                                 }
    528                                                 $ar[2+$offsetsez-$minsez][++$key]=$percento;
     524                                $temp3=arrayperc($tmp,$voticompl);
     525                                #foreach($temp3 as $key=>$val) echo "$key: $val<br>";
     526                                while(list($k,$voti)= each($tmp)) {
     527                                       
     528                    if ($perc=='true' and $voticompl)
     529                    {
     530                        $valperc=number_format($voti*100/$voticompl,3);
     531                        $valperc=number_format($valperc,2);
     532                         $percento="<b>$voti<br /><span class=\"red\"><i>".$temp3[$k]." %</i></span></b>";
     533                     } else $percento="<b>$voti</b>";
     534                     $ar[2+$offsetsez-$minsez][++$key]=$percento;
    529535
    530536                                }
Note: See TracChangeset for help on using the changeset viewer.