|
|
<? |
|
|
if (!empty($programma)) { |
|
|
$interventi = $programma->getInterventi(); |
|
|
if (!empty($interventi)) { |
|
|
$anno = $programma->info["anno"]; |
|
|
$annualita = $programma->getAnnualita(); |
|
|
ob_start(); |
|
|
?> |
|
|
<table style="width:100%; font-size:8px; text-align:center" cellpadding="1"> |
|
|
<thead> |
|
|
<tr> |
|
|
<th rowspan="3"><strong>Codice Univoco Intervento CUI (1)</strong></th> |
|
|
<th rowspan="3"><strong>Codice fiscale Amministrazione</strong></th> |
|
|
<th rowspan="3"><strong>Prima annualità del primo programma nel quale l'intervento è stato inserito</strong></th> |
|
|
<th rowspan="3"><strong>Annualità nella quale si prevede di dare avvio alla procedura di affidamento</strong></th> |
|
|
<th rowspan="3"><strong>Codice CUP (2)</strong></th> |
|
|
<th rowspan="3"><strong>Acquisto ricompreso nell'importo complessivo di un lavoro o di altra acquisizione presente in programmazione di lavori, forniture e servizi (Tabella B.2bis)</strong></th> |
|
|
<th rowspan="3"><strong>CUI lavoro o altra acquisizione nel cui importo complessivo l'acquisto è ricompreso (3)</strong></th> |
|
|
<th rowspan="3"><strong>Lotto funzionale (4)</strong></th> |
|
|
<th rowspan="3"><strong>Ambito geografico di esecuzione dell'acquisto Codice NUTS</strong></th> |
|
|
<th rowspan="3"><strong>Settore</strong></th> |
|
|
<th rowspan="3"><strong>CPV (5)</strong></th> |
|
|
<th rowspan="3"><strong>Descrizione dell'acquisto</strong></th> |
|
|
|
|
|
<th rowspan="3"><strong>Livello di priorità (6) (Tabella B.1)</strong></th> |
|
|
<th rowspan="3"><strong>Responsabile del Procedimento (7)</strong></th> |
|
|
<th rowspan="3"><strong>Durata del contratto</strong></th> |
|
|
<th rowspan="3"><strong>L'acquisto è relativo a nuovo affidamento di contratto in essere (8)</strong></th> |
|
|
<th colspan="<?= ($anno < 2023) ? 6 : 8 ?>"><strong>Stima dei costi dell'Acquisto</strong></th> |
|
|
<th rowspan="2" colspan="2"><strong>CENTRALE DI COMMITTENZA O SOGGETTO AGGREGATORE AL QUALE SI FARA' RICORSO PER L'ESPLETAMENTO DELLA PROCEDURA DI AFFIDAMENTO (11)</strong></th> |
|
|
<th rowspan="3"><strong>Acquisto aggiunto o variato a seguito di modifica programma (12) (Tabella B.2)</strong></th> |
|
|
</tr> |
|
|
<tr> |
|
|
<th rowspan="2"><strong>Primo Anno</strong></th> |
|
|
<th rowspan="2"><strong>Secondo Anno</strong></th> |
|
|
<? if ($anno >= 2023) { ?> |
|
|
<th rowspan="2"><strong>Terzo Anno</strong></th> |
|
|
<? } ?> |
|
|
<th rowspan="2"><strong>Costi su annualità successive</strong></th> |
|
|
<th rowspan="2"><strong>Totale (9)</strong></th> |
|
|
<th colspan="2"><strong>Apporto di capitale privato</strong></th> |
|
|
</tr> |
|
|
<tr> |
|
|
<th><strong>Importo</strong></th> |
|
|
<th><strong>Tipologia</strong></th> |
|
|
<th><strong>Codice AUSA</strong></th> |
|
|
<th><strong>Denominazione</strong></th> |
|
|
</tr> |
|
|
</thead> |
|
|
<tbody> |
|
|
<? |
|
|
$totaleGenerale = 0; |
|
|
$totalePrivato = 0; |
|
|
$totaleAnnuale = []; |
|
|
foreach($interventi AS $intervento) { |
|
|
?> |
|
|
<tr> |
|
|
<td><?= $intervento["cui"] ?></td> |
|
|
<td><?= substr($intervento["cui"],1,11) ?></td> |
|
|
<td><?= substr($intervento["cui"],12,4) ?></td> |
|
|
<td><?= quickInfoProgetto($intervento["codice"],"avvio-procedura-affidamento") ?></td> |
|
|
<td><?= $intervento["cup"] ?></td> |
|
|
<td><?= quickInfoProgetto($intervento["codice"],"acquisto-ricompreso") ?></td> |
|
|
<td><?= quickInfoProgetto($intervento["codice"],"cui-ricompreso"); ?></td> |
|
|
<td><?= (quickInfoProgetto($intervento["codice"],"lotto-funzionale") == 1) ? "S" : "N"; ?></td> |
|
|
<td><?= quickInfoProgetto($intervento["codice"],"nuts") ?></td> |
|
|
<td><?= ($intervento["tipologia"] == "S") ? "Servizi" : "Forniture" ?></td> |
|
|
<td><?= implode("<br>",progetto::getCategorieMerceologicheProgetto($intervento["codice"]) ?? []) ?></td> |
|
|
<td><?= $intervento["oggetto"] ?></td> |
|
|
<td><?= quickInfoProgetto($intervento["codice"],"priorita") ?></td> |
|
|
<td> |
|
|
<? |
|
|
$rup = quickResponsabileProgetto($intervento["codice"]); |
|
|
if (!empty($rup)) { |
|
|
echo $rup["cognome"] . " " . $rup["nome"]; |
|
|
} |
|
|
?> |
|
|
</td> |
|
|
<td><?= quickInfoProgetto($intervento["codice"],"durata-contratto") ?></td> |
|
|
<td><?= quickInfoProgetto($intervento["codice"],"nuovo-affidamento-contratto") ?></td> |
|
|
<? |
|
|
$totaleIntervento = 0; |
|
|
foreach($annualita AS $anno) { |
|
|
$importoDotazione = quickDotazioneProgetto($intervento["codice"],$anno) ?? 0; |
|
|
if (!isset($totaleAnnuale[$anno])) { |
|
|
$totaleAnnuale[$anno] = 0; |
|
|
} |
|
|
$totaleAnnuale[$anno] += $importoDotazione; |
|
|
$totaleIntervento += $importoDotazione; |
|
|
?> |
|
|
<td style="text-align:right"> |
|
|
€ <?= number_format($importoDotazione,2,",","."); ?> |
|
|
</td> |
|
|
<? |
|
|
} |
|
|
?> |
|
|
<? |
|
|
$importoDotazione = quickDotazioneProgetto($intervento["codice"],$anno,null,true) ?? 0; |
|
|
if (!isset($totaleAnnuale[$anno+1])) { |
|
|
$totaleAnnuale[$anno+1] = 0; |
|
|
} |
|
|
$totaleAnnuale[$anno+1] += $importoDotazione; |
|
|
$totaleIntervento = quickDotazioneProgetto($intervento["codice"],1,null,true) ?? 0; |
|
|
$totaleGenerale += $totaleIntervento; |
|
|
?> |
|
|
<td style="text-align:right"> |
|
|
€ <?= number_format($importoDotazione,2,",","."); ?> |
|
|
</td> |
|
|
<td style="text-align:right"> |
|
|
€ <?= number_format($totaleIntervento,2,",","."); ?> |
|
|
</td> |
|
|
<? |
|
|
$importoDotazione = quickDotazioneProgetto($intervento["codice"],1,"S",true); |
|
|
$importoPrivato= $importoDotazione["totale"] ?? 0; |
|
|
$totalePrivato += $importoPrivato; |
|
|
$tipologiaPrivata = $importoDotazione["tipologie"] ?? ""; |
|
|
?> |
|
|
<td style="text-align:right"> |
|
|
€ <?= number_format($importoPrivato,2,",","."); ?> |
|
|
</td> |
|
|
<td> |
|
|
<? |
|
|
if (!empty($tipologiaPrivata)) { |
|
|
$tipologiaPrivata = array_unique($tipologiaPrivata); |
|
|
echo implode("<br>",$tipologiaPrivata); |
|
|
} |
|
|
?> |
|
|
</td> |
|
|
<td><?= quickInfoProgetto($intervento["codice"],"ausa-cuc") ?></td> |
|
|
<td><?= quickInfoProgetto($intervento["codice"],"denominazione-cuc") ?></td> |
|
|
<td><?= quickInfoProgetto($intervento["codice"],"intervento-variato") ?></td> |
|
|
</tr> |
|
|
<? |
|
|
} |
|
|
?> |
|
|
<tr> |
|
|
<td colspan="14"></td> |
|
|
<? |
|
|
foreach($totaleAnnuale AS $totale) { |
|
|
?> |
|
|
<td style="text-align:right"> |
|
|
€ <?= number_format($totale ?? 0,2,",","."); ?> |
|
|
</td> |
|
|
<? |
|
|
} |
|
|
?> |
|
|
<td style="text-align:right"> |
|
|
€ <?= number_format($totaleGenerale ?? 0,2,",","."); ?> |
|
|
</td> |
|
|
<td style="text-align:right"> |
|
|
€ <?= number_format($totalePrivato ?? 0,2,",","."); ?> |
|
|
</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><br> |
|
|
Note<br> |
|
|
(1) Codice CUI = sigla settore (F=forniture; S=servizi) + cf amministrazione + prima annualità del primo programma nel quale l'intervento è stato inserito + progressivo di 5 cifre<br> |
|
|
(2) Indica il CUP (cfr. articolo 6 comma 4)<br> |
|
|
(3) Compilare se nella colonna "Acquisto ricompreso nell'importo complessivo di un lavoro o di altra acquisizione presente in programmazione di lavori, forniture e servizi" si è risposto "SI" e se nella colonna "Codice CUP" non è stato riportato il CUP in quanto non presente.<br> |
|
|
(4) Indica se lotto funzionale secondo la definizione di cui all'art.3 comma 1 alla lettera s) dell'allegato I.1 del D.Lgs.36/2024<br> |
|
|
(5) Relativa a CPV principale. Deve essere rispettata la coerenza, per le prime due cifre, con il settore: F= CPV<45 o 48; S= CPV>48<br> |
|
|
(6) Indica il livello di priorità di cui all'articolo 6 commi 10 e 11<br> |
|
|
(7) Riportare nome e cognome del responsabile del progetto<br> |
|
|
(9) Importo complessivo ai sensi dell'articolo 8, comma 5, ivi incluse le spese eventualmente sostenute antecedentemente alla prima annualità<br> |
|
|
(10) Riportare l'importo del capitale privato come quota parte dell'importo complessivo<br> |
|
|
(11) Dati obbligatori per i soli acquisti ricompresi nella prima annualità (Cfr. articolo 8)<br> |
|
|
(12) Indicare se l'acquisto è stato aggiunto o è stato modificato a seguito di modifica in corso d'anno ai sensi dell'art.7 commi 8 e 9. Tale campo, come la relativa nota e tabella, compaiono solo in caso di modifica del programma<br> |
|
|
(13) La somma è calcolata al netto dell'importo degli acquisti ricompresi nell'importo complessivo di un lavoro o di altra acquisizione presente in programmazione di lavori, forniture e servizi<br> |
|
|
<br> |
|
|
<br><strong>Tabella B.1</strong><br> |
|
|
1. priorità massima<br> |
|
|
2. priorità media<br> |
|
|
3. priorità minima<br> |
|
|
<br><strong>Tabella B.1bis</strong><br> |
|
|
1. finanza di progetto<br> |
|
|
2. Concessione di forniture e servizi<br> |
|
|
3. sponsorizzazione<br> |
|
|
4. società partecipate o di scopo<br> |
|
|
5. locazione finananziaria<br> |
|
|
7. contratto di disponibilità<br> |
|
|
8. altro<br> |
|
|
<br><strong>Tabella B.2</strong><br> |
|
|
1. modifica ex art.7 comma 8 lettera b) |
|
|
<br>2. modifica ex art.7 comma 8 lettera c) |
|
|
<br>3. modifica ex art.7 comma 8 lettera d) |
|
|
<br>4. modifica ex art.7 comma 8 lettera e) |
|
|
<br>5. modifica ex art.7 comma 9<br> |
|
|
<br><strong>Tabella B.2bis</strong><br> |
|
|
1. no<br> |
|
|
2. si<br> |
|
|
3. si, CUI non ancora attribuito 4. si, interventi o acquisti diversi<br> |
|
|
<? |
|
|
$content = ob_get_clean(); |
|
|
} |
|
|
} |
|
|
?>
|