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.
55 righe
1.7 KiB
55 righe
1.7 KiB
<? |
|
|
|
if (!empty($programma)) { |
|
$interventi = $programma->getNonRiproposti(); |
|
ob_start(); |
|
?> |
|
<table style="width:100%; font-size:8px; text-align:center" cellpadding="1"> |
|
<thead> |
|
<tr> |
|
<td><strong>Codice Univoco Intervento CUI (1)</strong></td> |
|
<td><strong>Codice CUP (2)</strong></td> |
|
<td><strong>Descrizione dell'intervento</strong></td> |
|
<td><strong>Importo dell'intervento</strong></td> |
|
<td><strong>Livello di priorità</strong></td> |
|
<td><strong>Motivo per il quale l'intervento non è riproposto (1)</strong></td> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
<? |
|
if (!empty($interventi)) { |
|
foreach($interventi AS $intervento) { |
|
?> |
|
<tr> |
|
<td><?= $intervento["cui"] ?></td> |
|
<td><?= $intervento["cup"] ?></td> |
|
<td><?= $intervento["oggetto"] ?></td> |
|
<td><?= $intervento["importo"] ?></td> |
|
<td><?= quickInfoProgetto($intervento["codice"],"priorita") ?></td> |
|
<td><?= quickInfoProgetto($intervento["codice"],"motivazione-non-riproposto") ?></td> |
|
</tr> |
|
<? |
|
} |
|
} else { |
|
?> |
|
<tr> |
|
<td colspan="6">Nessun intervento presente</td> |
|
</tr> |
|
<? |
|
} |
|
?> |
|
</tbody> |
|
</table> |
|
<div style="clear:both; margin:0"></div><br> |
|
<div style="float:right; text-align:center;"> |
|
Il referente del programma<br> |
|
<?= $programma->extraInfo["cognome"] . " " . $programma->extraInfo["nome"] ?> |
|
</div> |
|
</div> |
|
<br> |
|
<strong>Note</strong><br> |
|
(1) breve descrizione dei motivi |
|
<? |
|
$content = ob_get_clean(); |
|
} |
|
?>
|