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.
22 righe
767 B
22 righe
767 B
<? |
|
if (isset($gara)) { |
|
if (empty($gara->getRisposteElaborazione()) && !empty($gara->getDomandeElaborazione())) { |
|
$status = "status-border-danger"; |
|
$msg = __("Elaborazione non effettuata"); |
|
$alertManager->addDangerAlert($msg,$hrefComando); |
|
} else { |
|
if ($gara->validaElaborazione() === true) { |
|
$status = "status-border-success"; |
|
if ($gara->info["stato"] < 10) { |
|
$status = "status-border-warning"; |
|
$msg = __("Elaborazione non confermata"); |
|
$alertManager->addDangerAlert($msg,$hrefComando); |
|
} |
|
} else { |
|
$status = "status-border-danger"; |
|
$msg = __("Elaborazione incompleta"); |
|
$alertManager->addDangerAlert($msg,$hrefComando); |
|
} |
|
} |
|
} |
|
?>
|
|
|