if (isset($this)) {
$partecipante = $this->miaPartecipazione();
if ($partecipante["conferma"]=="S" || 1) {
$tipiBuste = concorso::tipologieBusta();
$buste = [];
foreach($tipiBuste AS $id_busta => $busta) {
$tmp = $this->getRichieste($id_busta);
if (!empty($tmp)) {
$buste[$id_busta] = ["info"=>$busta,"richieste"=>$tmp];
}
}
if (!empty($buste)) {
?>
= $this->info["oggetto"]; ?>
= __("Lotto") ?>: = $this->lotto["oggetto"] ?>
if (!empty($this->lotto["cig"])) { ?>= __("CIG") ?>: = $this->lotto["cig"] ?>
} ?>
= __("RICEVUTA DI PARTECIPAZIONE") ?>
= __("ID Partecipante") ?>: = $partecipante["id"] ?>
= __("Data e ora di trasmissione") ?>: = mysql2datetime($partecipante["timestamp_invio"]) ?>
foreach($buste AS $id_busta => $busta) {
?>
-
= __($busta["info"]["titolo"]) ?>
foreach($busta["richieste"] AS $input) {
$content = $this->getBusta($partecipante["codice"],$input["codice"]);
?>
-
= $input["titolo"] ?>
if (!empty($content["nomeFile"])) { ?>
- = $content["nomeFile"] ?>
- = __("Impronta hash") ?> SHA256: = $content["sha256"] ?>
} else {
if ($input["controllo"] != "N") {
alertManager::printAlertBox(__("Documento obbligatorio"));
}
} ?>
} ?>
} ?>
}
}
}
?>