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.
28 righe
1021 B
28 righe
1021 B
<? |
|
if (isset($gara)) { |
|
$status = "status-border-danger"; |
|
if ($gara->round["pubblica"] > 0 && !empty($gara->round["pubblicazione"])) { |
|
$status = "status-border-success"; |
|
if (!$gara->quickPanel) { |
|
$rec["titolo"] = "Modifica scadenze"; |
|
} |
|
} else { |
|
$npa = $gara->getNpaInstance(); |
|
if (!empty($npa) && !empty($npa->schede)) { |
|
foreach($npa->schede AS $schedaNPA) { |
|
if (!NuovaPiattaformaAppalti::checkCardComplete($schedaNPA)) { |
|
$qsANAC = [ |
|
"codice" => $schedaNPA["codice"], |
|
"scheda" => $schedaNPA["id_scheda"], |
|
"modulo_riferimento" => $npa->fascicolo["modulo_riferimento"] ?? null, |
|
"id_riferimento" => $npa->fascicolo["id_riferimento"] ?? null |
|
]; |
|
$href = "/backend/npa/edit.php?". http_build_query($qsANAC); |
|
$alertManager->addWarningAlert($schedaNPA["id_scheda"] . " - Iter ANAC non completo",$href); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
|
|
?>
|