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.
19 righe
553 B
19 righe
553 B
<? |
|
if (!empty($record)) { |
|
if ($anac->info["smart_cig"] == "N") { $lotto = $record; } |
|
$missing = $anac->check190Lotto($lotto); |
|
$count = 0; |
|
foreach($missing AS $id) { |
|
if (strpos($id,"190") === false) { |
|
$alertManager->addWarningAlert(__(anac::labels190()[$id]) . " - " . __("mancante"),$hrefComando); |
|
$count++; |
|
} |
|
} |
|
if (empty($count)) { |
|
$status = "status-border-success"; |
|
} else { |
|
$status = "status-border-warning"; |
|
if ($count == 2) { $status = "status-border-danger"; } |
|
} |
|
} |
|
?>
|