openstamanager/modules/interventi/plugins/my_impianti.interventi.php

78 lines
2.9 KiB
PHP
Raw Normal View History

<?php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.n.c.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
include_once __DIR__.'/../../../core.php';
2018-06-26 09:41:43 +02:00
// INTERVENTI ESEGUITI SU QUESTO IMPIANTO
echo '
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">'.tr('Interventi eseguiti su questo impianto').'</h3>
</div>
<div class="box-body">';
$results = $dbo->fetchArray('SELECT in_interventi.id, 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');
$totale_interventi = 0;
if (!empty($results)) {
echo '
<table class="table table-striped table-hover">
<tr>
<th width="350">'.tr('Intervento').'</th>
<th>'.tr('Descrizione').'</th>
<th width="150" class="text-right">'.tr('Costo totale').'</th>
</tr>';
foreach ($results as $result) {
2019-07-12 17:35:14 +02:00
$intervento = \Modules\Interventi\Intervento::find($result['id']);
$totale_interventi += $intervento->totale;
echo '
<tr>
<td>
'.Modules::link('Interventi', $result['id'], tr('Intervento num. _NUM_ del _DATE_', [
'_NUM_' => $result['codice'],
'_DATE_' => Translator::dateToLocale($result['data']),
])).'
</td>
<td>'.nl2br($result['descrizione']).'</td>
<td class="text-right">'.moneyFormat($intervento->totale).'</td>
</tr>';
}
2018-06-26 09:41:43 +02:00
echo ' <tr>';
echo ' <td colspan="2" class="text-right">';
echo ' <b>Totale:</b>';
echo ' </td>';
echo ' <td class="text-right">';
echo '<b>'.moneyFormat($totale_interventi).'</b>';
echo ' </td>';
echo ' </tr>';
2018-06-26 09:41:43 +02:00
echo '
</table>';
} else {
echo '
<div class=\'alert alert-info\' ><i class=\'fa fa-info-circle\'></i> '.tr('Nessun intervento su questo impianto').'.</div>';
}
echo '
</div>
</div>';