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.
 
 
 
 
 

57 righe
2.2 KiB

<?
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)) {
?>
<h1 style="text-align:center"><?= $this->info["oggetto"]; ?></h1>
<h2><?= __("Lotto") ?>: <?= $this->lotto["oggetto"] ?></h2>
<? if (!empty($this->lotto["cig"])) { ?><h2><?= __("CIG") ?>: <?= $this->lotto["cig"] ?></h2><? } ?>
<br>
<h1 style="text-align:center"><?= __("RICEVUTA DI PARTECIPAZIONE") ?></h1>
<br>
<strong><?= __("ID Partecipante") ?>: <?= $partecipante["id"] ?></strong><br>
<strong><?= __("Data e ora di trasmissione") ?>: <?= mysql2datetime($partecipante["timestamp_invio"]) ?></strong><br>
<ul style="border: 1px solid #000; padding-top: 10px; padding-bottom: 10px;">
<?
foreach($buste AS $id_busta => $busta) {
?>
<li>
<strong><span class="fa fa-folder"></span> <?= __($busta["info"]["titolo"]) ?></strong>
<ul>
<?
foreach($busta["richieste"] AS $input) {
$content = $this->getBusta($partecipante["codice"],$input["codice"]);
?>
<li>
<strong><?= $input["titolo"] ?></strong>
<? if (!empty($content["nomeFile"])) { ?>
<ul>
<li><span class="far fa-file"></span> <?= $content["nomeFile"] ?></li>
<li><?= __("Impronta hash") ?> SHA256: <strong><?= $content["sha256"] ?></strong></li>
</ul>
<? } else {
if ($input["controllo"] != "N") {
alertManager::printAlertBox(__("Documento obbligatorio"));
}
} ?>
</li>
<? } ?>
</ul>
</li>
<? } ?>
</ul>
<?
}
}
}
?>