Changeset 111


Ignore:
Timestamp:
May 31, 2011, 11:21:38 AM (13 years ago)
Author:
roby
Message:

admin: inserito controllo su affluenze, la rilevazione successiva non puo' avere meno votanti di una precedente
admin: importa liste, corretto un caso particolare
client: tolte font pdf non usate
client: ridotta font per le percentuali di sezione

Location:
trunk
Files:
119 deleted
4 edited

Legend:

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

    r84 r111  
    807807                        list($id_gruppo)=mysql_fetch_row($res3);
    808808                }
    809                 if ($voti_u+$voti_d and $voti_u+$voti_d!=$voti_t){
    810                         echo "</tr><tr style=\"background-color: rgb(255, 0, 0); text-align: center\">";
     809                if(!isset($precede[$id_gruppo])) $precede[$id_gruppo]=0; if(!isset($error)) $error=0;
     810                if($precede[$id_gruppo]>($voti_t) and $voti_t) $error=1;
     811                $precede[$id_gruppo]=$voti_t;
     812                if (($voti_u+$voti_d and $voti_u+$voti_d!=$voti_t) or $error){
     813                        echo "</tr><tr style=\"background-color: rgb(255, 0, 0); text-align: center\">"; $error=0;
    811814                }else{
    812815                        echo "</tr><tr class=\"tr-dx\">";
  • trunk/admin/modules/Elezioni/importa.php

    r88 r111  
    3939                if ($key==8) $isnew=1;
    4040        }
    41         if (!$isnew) $valori.=",null,null";
     41        if (!$isnew and isset($valori)) $valori.=",null,null";
    4242        if(isset($valori)){
    4343
  • trunk/client/modules/Elezioni/crea_pagina.php

    r109 r111  
    255255                // conversion HTML => PDF
    256256                //$nomefile="elezioni_tabelle.pdf";
    257                 require_once('inc/hpdf/html2pdf.class.php');
     257                require_once('inc/hpdf403/html2pdf.class.php');
    258258                $html2pdf = new HTML2PDF('L','A4', 'it');
    259259                $html2pdf->WriteHTML($style, isset($_GET['vuehtml']));
  • trunk/client/modules/Elezioni/gruppo.php

    r105 r111  
    523523                                                if ($perc=='true' and $votitot[($z)])
    524524                                                {
    525                                                         $percento=$voti."<br /><span class=\"red\"><i>".number_format($percar[$z][$num_cand],2)." %</i></span>";
     525                                                        $percento=$voti."<br /><span class=\"red\" style=\"font-size:80%;\"><i>".number_format($percar[$z][$num_cand],2)." %</i></span>";
    526526                                                }
    527527                                                $ar[($z)][$num_cand]=$percento;
Note: See TracChangeset for help on using the changeset viewer.