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.
 
 
 
 
 

11 righe
594 B

<?
if (!empty($contratto) && !empty($_SESSION["ente"]->erpConnector) && method_exists($_SESSION["ente"]->erpConnector,"getStatusStipula")) {
$statusInfo = $_SESSION["ente"]->erpConnector->getStatusStipula($contratto->info["codice"]);
$status = "status-border-{$statusInfo["color"]}";
if ($statusInfo["color"] == "danger") {
$alertManager->addDangerAlert(__("Invio ERP fallito"),$hrefComando);
} else if ($statusInfo["color"] == "warning") {
$alertManager->addWarningAlert(__("Invio ERP non eseguito"),$hrefComando);
}
}
?>