43 lines
1.4 KiB
PHP
43 lines
1.4 KiB
PHP
<?php
|
|
|
|
include_once __DIR__.'/../../../core.php';
|
|
|
|
// INTERVENTI ESEGUITI SU QUESTO IMPIANTO
|
|
echo '
|
|
<div class="box">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">'._('Interventi eseguiti su questo impianto').'</h3>
|
|
</div>
|
|
<div class="box-body">';
|
|
|
|
$results = $dbo->fetchArray('SELECT in_interventi.codice, descrizione, (SELECT MIN(orario_inizio) FROM in_interventi_tecnici WHERE idintervento=my_impianti_interventi.idintervento) AS data FROM my_impianti_interventi INNER JOIN in_interventi ON my_impianti_interventi.idintervento=in_interventi.id WHERE idimpianto='.prepare($id_record).' ORDER BY data DESC');
|
|
|
|
if (!empty($results)) {
|
|
echo '
|
|
<table class="table table-striped table-hover">
|
|
<tr>
|
|
<th width="25%">'._('Intervento').'</th>
|
|
<th>'._('Descrizione').'</th>
|
|
</tr>';
|
|
|
|
foreach ($results as $result) {
|
|
echo '
|
|
<tr>
|
|
<td>
|
|
'.Modules::link('Interventi', $result['codice'], str_replace(['_NUM_', '_DATE_'], [$result['idintervento'], Translator::dateToLocale($result['data'])], _('Intervento _NUM_ del _DATE_'))).'
|
|
</td>
|
|
<td>'.nl2br($result['descrizione']).'</td>
|
|
</tr>';
|
|
}
|
|
|
|
echo '
|
|
</table>';
|
|
} else {
|
|
echo '
|
|
<p>'._('Nessun intervento su questo impianto').'...</p>';
|
|
}
|
|
|
|
echo '
|
|
</div>
|
|
</div>';
|