Changeset 407 for trunk/admin/modules/Elezioni/ele_associazioni.php
- Timestamp:
- Mar 5, 2024, 10:09:23 PM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/modules/Elezioni/ele_associazioni.php
r357 r407 56 56 if (isset($_GET['sg'])) $sg=intval($_GET['sg']); else $sg=0; 57 57 if (isset($_GET['disgiunto'])) $disgiunto=intval($_GET['disgiunto']); else $disgiunto=0; 58 if (isset($_GET['proiezione'])) $proiezione=intval($_GET['proiezione']); else $proiezione=0; 58 59 59 60 $offset=15; … … 66 67 // 67 68 function all() { 68 global $user, $admin, $bgcolor1, $bgcolor2, $prefix,$descr_cons, $dbi,$id_cons,$desc,$indirizzo,$centralino,$fax,$id_cons_gen,$id_collegio,$idcomune,$chiusa,$id_conf,$tipo_cons,$language,$help,$preferenze,$idfascia,$vismf,$sg,$disgiunto,$id_cons_comu,$genere ;69 global $user, $admin, $bgcolor1, $bgcolor2, $prefix,$descr_cons, $dbi,$id_cons,$desc,$indirizzo,$centralino,$fax,$id_cons_gen,$id_collegio,$idcomune,$chiusa,$id_conf,$tipo_cons,$language,$help,$preferenze,$idfascia,$vismf,$sg,$disgiunto,$id_cons_comu,$genere,$proiezione; 69 70 $aid=$_SESSION['aid']; 70 71 $prefix=$_SESSION['prefix']; … … 139 140 echo "<td bgcolor=\"$bgcolor1\"><b>"._CONF."</b></td>"; 140 141 echo "<td bgcolor=\"$bgcolor1\" align=\"center\"><b>"._FASCIA."</b></td>"; 142 echo "<td bgcolor=\"$bgcolor1\"><b>"._PROIEZIONE."</b></td>"; 141 143 } 142 144 echo "<td bgcolor=\"$bgcolor1\" align=\"center\"><b>"._VISAFFMF."</b></td>"; … … 189 191 if($tipo_cons==3){ 190 192 if($idcomune) { 191 $sql="SELECT id_fascia from ".$prefix."_ele_cons_comune where id_cons_gen='$id_cons_gen' and id_comune='$idcomune'";193 $sql="SELECT id_fascia,proiezione from ".$prefix."_ele_cons_comune where id_cons_gen='$id_cons_gen' and id_comune='$idcomune'"; 192 194 $rescomu = $dbi->prepare("$sql"); 193 195 $rescomu->execute(); 194 196 if($rescomu->rowCount()) 195 list($fasciacom )=$rescomu->fetch(PDO::FETCH_NUM);197 list($fasciacom,$proiezione)=$rescomu->fetch(PDO::FETCH_NUM); 196 198 else $fasciacom=0; 197 199 } else $fasciacom=0; … … 222 224 } 223 225 echo "</select></td>"; 224 226 echo "<td id=\"proiezione\"><select name=\"proiezione\">"; 227 if ($proiezione) {$sel0='';$sel1='selected';} else {$sel1='';$sel0='selected';} 228 echo "<option value=\"0\" $sel0>No"; 229 echo "<option value=\"1\" $sel1>Si"; 230 echo "</select></td>"; 225 231 226 232 } … … 276 282 echo "<td width=\"20%\" bgcolor=\"$bgcolor1\"><b>"._CONF."</b></td>"; 277 283 echo "<td width=\"20%\" bgcolor=\"$bgcolor1\" align=\"center\"><b>"._FASCIA."</b></td>"; 284 echo "<td width=\"20%\" bgcolor=\"$bgcolor1\" align=\"center\"><b>"._PROIEZIONE."</b></td>"; 278 285 } 279 286 echo "<td width=\"10%\" bgcolor=\"$bgcolor1\" align=\"center\"><b>"._VISAFFMF."</b></td>"; … … 284 291 echo "<td width=\"10\" bgcolor=\"$bgcolor1\"><b> "._FUNZIONI."</b></td></tr>"; 285 292 286 $sql="SELECT '',t1.id_comune,'',t1.id_cons, t2.descrizione, t1.chiusa, t1.id_conf, preferenze,t1.id_fascia,t1.vismf,t1.solo_gruppo,t1.disgiunto FROM ".$prefix."_ele_cons_comune as t1, ".$prefix."_ele_comuni as t2 where t1.id_cons_gen='$id_cons_gen' and t1.id_comune=t2.id_comune order by t2.descrizione";293 $sql="SELECT '',t1.id_comune,'',t1.id_cons, t2.descrizione, t1.chiusa, t1.id_conf, preferenze,t1.id_fascia,t1.vismf,t1.solo_gruppo,t1.disgiunto,t1.proiezione FROM ".$prefix."_ele_cons_comune as t1, ".$prefix."_ele_comuni as t2 where t1.id_cons_gen='$id_cons_gen' and t1.id_comune=t2.id_comune order by t2.descrizione"; 287 294 $resmod = $dbi->prepare("$sql"); 288 295 $resmod->execute(); 289 while (list($id_collegio,$id_comune2,$descr_coll,$id_cons_comu,$descr_comu, $chiusa,$id_conf,$preferenze2,$fasciacom,$vismf2,$sg2,$disgiunto2 ) = $resmod->fetch(PDO::FETCH_NUM)){ //elenco dei modelli inseriti296 while (list($id_collegio,$id_comune2,$descr_coll,$id_cons_comu,$descr_comu, $chiusa,$id_conf,$preferenze2,$fasciacom,$vismf2,$sg2,$disgiunto2,$proiezione) = $resmod->fetch(PDO::FETCH_NUM)){ //elenco dei modelli inseriti 290 297 $sql="SELECT descrizione FROM ".$prefix."_ele_conf where id_conf='$id_conf'"; 291 298 $resconf = $dbi->prepare("$sql"); … … 315 322 $inffascia=$abitanti; 316 323 } 324 if($proiezione) $sceltapro='Si'; else $sceltapro='No'; 325 echo "<td>".$sceltapro."</td>"; 317 326 318 327 } … … 343 352 344 353 function associazioni($ok, $do,$descr_comu,$id_cons_comu,$id_collegio,$id_comune,$chiusa,$id_conf,$preferenze) { 345 global $admin, $bgcolor1, $bgcolor2, $prefix, $dbi, $descr_cons,$genere,$id_cons_gen,$idcomunenew,$pwd4,$idfascia,$vismf,$sg,$disgiunto ;354 global $admin, $bgcolor1, $bgcolor2, $prefix, $dbi, $descr_cons,$genere,$id_cons_gen,$idcomunenew,$pwd4,$idfascia,$vismf,$sg,$disgiunto,$proiezione; 346 355 $delcons=0; 347 356 if ($do !="" and $id_cons_gen>0 and $idcomunenew>0) { … … 352 361 list($delcons)=$rescomu->fetch(PDO::FETCH_NUM); 353 362 if (!$max){ //se no la inserisce 354 $sql="insert into ".$prefix."_ele_cons_comune (chiusa,id_comune,id_cons_gen,id_conf,preferenze,id_fascia,vismf,solo_gruppo,disgiunto ) values ('0','$idcomunenew','$id_cons_gen','$id_conf','$preferenze','$idfascia','$vismf','$sg','$disgiunto')";363 $sql="insert into ".$prefix."_ele_cons_comune (chiusa,id_comune,id_cons_gen,id_conf,preferenze,id_fascia,vismf,solo_gruppo,disgiunto,proiezione) values ('0','$idcomunenew','$id_cons_gen','$id_conf','$preferenze','$idfascia','$vismf','$sg','$disgiunto','$proiezione')"; 355 364 $result = $dbi->prepare("$sql"); 356 365 $result->execute(); … … 375 384 $result = $dbi->prepare("$sql"); 376 385 $result->execute(); 377 $sql="update ".$prefix."_ele_cons_comune set id_conf='$id_conf', chiusa= '$chiusa', preferenze='$preferenze',id_fascia='$idfascia',vismf='$vismf',solo_gruppo='$sg',disgiunto='$disgiunto' where id_comune='$id_comune' and id_cons_gen='$id_cons_gen'";386 $sql="update ".$prefix."_ele_cons_comune set id_conf='$id_conf', chiusa= '$chiusa', preferenze='$preferenze',id_fascia='$idfascia',vismf='$vismf',solo_gruppo='$sg',disgiunto='$disgiunto',proiezione='$proiezione' where id_comune='$id_comune' and id_cons_gen='$id_cons_gen'"; 378 387 $result = $dbi->prepare("$sql"); 379 388 $result->execute();
Note:
See TracChangeset
for help on using the changeset viewer.