gestione gare pubbliche
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

24 righe
603 B

<?
$show = false;
if (isset($record)) {
foreach($lotti AS $lotto) {
if ($gara->setLotto($lotto["codice"])) {
$partecipanti = $gara->getPartecipanti();
if (!empty($partecipanti)) {
if ($id_comando == "punteggiTecnici") {
if (!empty($gara->getCriteriTecniciValutabili())) {
$show = true;
break;
}
} else {
if (!empty($gara->getCriteriEconomiciValutabili())) {
$show = true;
break;
}
}
}
}
}
$gara->lotto = null;
}
?>