2018-06-27 12:28:28 +02:00
< ? php
include_once __DIR__ . '/../../../core.php' ;
$mesi = [
tr ( 'Gennaio' ),
tr ( 'Febbraio' ),
tr ( 'Marzo' ),
tr ( 'Aprile' ),
tr ( 'Maggio' ),
tr ( 'Giugno' ),
tr ( 'Luglio' ),
tr ( 'Agosto' ),
tr ( 'Settembre' ),
tr ( 'Ottobre' ),
tr ( 'Novembre' ),
tr ( 'Dicembre' ),
];
// Righe inserite
2018-07-23 15:55:19 +02:00
$qp = " SELECT *, DATE_FORMAT( data_richiesta, '%m-%Y') AS mese, (SELECT descrizione FROM in_tipiintervento WHERE idtipointervento = in_interventi.idtipointervento ) AS tipointervento, idanagrafica AS idcliente, (SELECT ragione_sociale FROM an_anagrafiche WHERE idanagrafica = in_interventi.idanagrafica) AS ragione_sociale FROM in_interventi WHERE id NOT IN (SELECT idintervento FROM in_interventi_tecnici) AND idstatointervento IN (SELECT idstatointervento FROM in_statiintervento WHERE completato = 0) ORDER BY DATE_FORMAT( data_richiesta, '%Y-%m') ASC, ragione_sociale ASC " ;
2018-06-27 12:28:28 +02:00
$rsp = $dbo -> fetchArray ( $qp );
$n = $dbo -> fetchNum ( $qp );
if ( ! empty ( $n )) {
// Elenco interventi da pianificare
foreach ( $rsp as $i => $r ) {
// Se cambia il mese ricreo l'intestazione della tabella
if ( ! isset ( $rsp [ $i - 1 ]) || $r [ 'mese' ] != $rsp [ $i - 1 ][ 'mese' ]) {
if ( $i == 0 ) {
$attr = '' ;
$class = 'fa-minus-circle' ;
} else {
$attr = 'style="display:none;"' ;
$class = 'fa-plus-circle' ;
}
echo "
< h4 >
< a class = 'clickable' onclick = \ " if( $ ('#t1_ " . $i . " ').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'); } $ ('#t1_ " . $i . " ').slideToggle(); \" >
< i class = 'fa ".$class."' ></ i > " . $mesi [intval(date('m', strtotime( $r['data_richiesta'] ))) - 1].' '.date('Y', strtotime( $r['data_richiesta'] )).'
</ a >
</ h4 > ' ;
echo '
< div id = " t1_'. $i .' " '.$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 = " 200 " > '.tr(' Tipo intervento ').' </ th >
< th > '.tr(' Descrizione ').' </ th >
< th width = " 100 " > '.tr(' Sede ').' </ th >
</ tr >
</ thead >
< tbody > ' ;
}
echo '
< tr id = " int_'. $r['id'] .' " >
< td >< a target = " _blank " > '.Modules::link(Modules::get(' Interventi ')[' id '], $r[' id '], $r[' codice ']).' </ a ></ td >
< td > '.$r[' ragione_sociale '].' </ td >
< td > '.Translator::dateToLocale($r[' data_richiesta ']).' </ td >
< td > '.$r[' tipointervento '].' </ td >
< td > '.nl2br($r[' richiesta ']).' </ td >
' ;
echo '
< td > ' ;
// Sede
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 '
</ td > ' ;
2018-07-07 13:56:22 +02:00
echo '
2018-06-27 12:28:28 +02:00
</ tr > ' ;
if ( ! isset ( $rsp [ $i + 1 ]) || $r [ 'mese' ] != $rsp [ $i + 1 ][ 'mese' ]) {
echo '
</ tbody >
</ table >
</ div > ' ;
}
}
} else {
echo '
< p > '.tr(' Non ci sono interventi da pianificare ').' .</ p > ' ;
}