119 lines
4.9 KiB
PHP
Executable File
119 lines
4.9 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
|
* Copyright (C) DevCode s.r.l.
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
use Modules\Interventi\Intervento;
|
|
|
|
include_once __DIR__.'/../../../core.php';
|
|
|
|
// Interventi da pianificare NON completati
|
|
$interventi_da_pianificare = Intervento::doesntHave('sessioni')
|
|
->orderByRaw('IF(data_scadenza IS NULL, data_richiesta, data_scadenza)')
|
|
->whereHas('stato', function ($query) {
|
|
return $query->where('is_completato', '=', 0);
|
|
})
|
|
->get();
|
|
$raggruppamenti = $interventi_da_pianificare->groupBy(function ($item, $key) {
|
|
$data = $item->data_scadenza ?: $item->data_richiesta;
|
|
|
|
return ucfirst($data->formatLocalized('%B %Y'));
|
|
});
|
|
|
|
$counter = 0;
|
|
foreach ($raggruppamenti as $mese => $raggruppamento) {
|
|
++$counter;
|
|
|
|
// Se cambia il mese ricreo l'intestazione della tabella
|
|
if ($counter == 1) {
|
|
$attr = '';
|
|
$class = 'fa-minus-circle';
|
|
} else {
|
|
$attr = 'style="display:none;"';
|
|
$class = 'fa-plus-circle';
|
|
}
|
|
|
|
echo "
|
|
<h4>
|
|
<a class='clickable' onclick=\"if( $('#interventi_pianificare_".$counter."').css('display') == 'none' ){ $(this).children('i').removeClass('fa-plus-circle'); $(this).children('i').addClass('fa-minus-circle'); }else{ $(this).children('i').addClass('fa-plus-circle'); $(this).children('i').removeClass('fa-minus-circle'); } $('#interventi_pianificare_".$counter."').slideToggle();\">
|
|
<i class='fa ".$class."'></i> ".$mese.'
|
|
</a>
|
|
</h4>';
|
|
|
|
echo '
|
|
<div id="interventi_pianificare_'.$counter.'" '.$attr.'>
|
|
<table class="table table-hover table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th width="70">'.tr('Codice').'</th>
|
|
<th width="120">'.tr('Cliente').'</th>
|
|
<th width="70"><small>'.tr('Data richiesta').'</small></th>
|
|
<th width="15%" class="text-center">'.tr('Tecnici assegnati').'</th>
|
|
<th width="200">'.tr('Tipo intervento').'</th>
|
|
<th width="200">'.tr('Stato intervento').'</th>
|
|
<th>'.tr('Descrizione').'</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>';
|
|
|
|
// Elenco interventi da pianificare
|
|
foreach ($raggruppamento as $r) {
|
|
$rs_tecnici = $dbo->fetchArray("SELECT GROUP_CONCAT(ragione_sociale SEPARATOR ',') AS tecnici FROM an_anagrafiche INNER JOIN in_interventi_tecnici_assegnati ON in_interventi_tecnici_assegnati.id_tecnico=an_anagrafiche.idanagrafica WHERE id_intervento=".prepare($r['id']).' GROUP BY id_intervento');
|
|
|
|
echo '
|
|
<tr id="int_'.$r['id'].'">
|
|
<td><a target="_blank" >'.Modules::link(module('Interventi')['id'], $r['id'], $r['codice']).'</a></td>
|
|
<td><a target="_blank" >'.Modules::link(module('Anagrafiche')['id'], $r['idanagrafica'], $dbo->fetchOne('SELECT ragione_sociale FROM an_anagrafiche WHERE idanagrafica='.prepare($r['idanagrafica']))['ragione_sociale']).'<br><small>Presso: ';
|
|
// Sede promemoria
|
|
if ($r['idsede'] == '-1') {
|
|
echo '- '.('Nessuna').' -';
|
|
} elseif (empty($r['idsede'])) {
|
|
echo tr('Sede legale');
|
|
} else {
|
|
$rsp2 = $dbo->fetchArray("SELECT id, CONCAT( CONCAT_WS( ' (', CONCAT_WS(', ', nomesede, citta), indirizzo ), ')') AS descrizione FROM an_sedi WHERE id=".prepare($r['idsede']));
|
|
|
|
echo $rsp2[0]['descrizione'];
|
|
}
|
|
echo '
|
|
</small>
|
|
</td>
|
|
<td>'.dateFormat($r['data_richiesta']).' '.((empty($r['data_scadenza'])) ? '' : '<br><small>Entro il '.dateFormat($r['data_scadenza']).'</small>').'</td>
|
|
<td>
|
|
'.$rs_tecnici[0]['tecnici'].'
|
|
</td>
|
|
|
|
<td>'.$dbo->fetchOne("SELECT CONCAT_WS(' - ', codice,descrizione) AS descrizione FROM in_tipiintervento WHERE idtipointervento=".prepare($r['idtipointervento']))['descrizione'].'</td>
|
|
<td>'.$dbo->fetchOne("SELECT CONCAT_WS(' - ', codice,descrizione) AS descrizione FROM in_statiintervento WHERE idstatointervento=".prepare($r['idstatointervento']))['descrizione'].'</td>
|
|
<td>'.nl2br($r['richiesta']).'</td>
|
|
';
|
|
|
|
echo '
|
|
</tr>';
|
|
}
|
|
|
|
echo '
|
|
</tbody>
|
|
</table>
|
|
</div>';
|
|
}
|
|
|
|
if ($raggruppamenti->isEmpty()) {
|
|
echo '
|
|
<p>'.tr('Non ci sono interventi da pianificare').'.</p>';
|
|
}
|