2022-10-13 16:10:43 +02:00
< ? 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 />.
*/
include_once __DIR__ . '/../../core.php' ;
2024-03-05 16:01:45 +01:00
use Models\Module ;
2024-03-22 15:52:24 +01:00
use Util\Query ;
2022-10-13 16:10:43 +02:00
2024-01-15 15:30:45 +01:00
switch ( get ( 'op' )) {
case 'get_markers' :
$idanagrafica = get ( 'idanagrafica' );
$checks = get ( 'check' );
2022-10-13 16:10:43 +02:00
2024-01-15 15:30:45 +01:00
$where = [];
// Filtro per anagrafica
if ( ! empty ( $idanagrafica ) && $idanagrafica != 'null' ) {
2024-02-28 15:28:39 +01:00
$where [] = '`in_interventi`.`idanagrafica`=' . prepare ( $idanagrafica );
2024-01-15 15:30:45 +01:00
}
2022-10-13 16:10:43 +02:00
2024-01-15 15:30:45 +01:00
// Filtri per stato
$checks = explode ( ',' , $checks );
2024-02-28 15:28:39 +01:00
$where [] = " `in_statiintervento_lang`.`name` IN (' " . implode ( " ',' " , $checks ) . " ') " ;
2023-08-04 14:54:28 +02:00
2024-01-15 15:30:45 +01:00
$add_query = 'WHERE 1=1 AND ' . implode ( ' AND ' , $where );
2022-10-13 16:10:43 +02:00
2024-01-15 15:30:45 +01:00
// Filtri per data
$add_query .= ' |date_period(`orario_inizio`,`data_richiesta`)|' ;
2022-10-13 16:10:43 +02:00
2024-03-22 15:52:24 +01:00
$query = 'SELECT *, `in_interventi`.`id` AS idintervento, `an_anagrafiche`.`lat` AS lat_anagrafica, `an_anagrafiche`.`lng` AS lng_anagrafica, `an_anagrafiche`.`indirizzo` AS indirizzo_anagrafica, `an_anagrafiche`.`cap` AS cap_anagrafica, `an_anagrafiche`.`citta` AS citta_anagrafica, `an_anagrafiche`.`provincia` AS provincia_anagrafica, `an_sedi`.`lat` AS lat_sede, `an_sedi`.`lng` AS lng_sede, `an_sedi`.`indirizzo` AS indirizzo_sede, `an_sedi`.`cap` AS cap_sede, `an_sedi`.`citta` AS citta_sede, `an_sedi`.`provincia` AS provincia_sede, `in_statiintervento_lang`.`name` AS stato FROM `in_interventi` INNER JOIN `an_anagrafiche` ON `in_interventi`.`idanagrafica`=`an_anagrafiche`.`idanagrafica` LEFT JOIN `an_sedi` ON `in_interventi`.`idsede_destinazione`=`an_sedi`.`id` INNER JOIN `in_statiintervento` ON `in_interventi`.`idstatointervento`=`in_statiintervento`.`id` LEFT JOIN `in_statiintervento_lang` ON (`in_statiintervento_lang`.`id_record` = `in_interventi`.`id` AND `in_statiintervento_lang`.`id_lang`= ' . prepare ( Models\Locale :: getDefault () -> id ) . ') LEFT JOIN `in_interventi_tecnici` ON `in_interventi_tecnici`.`idintervento` = `in_interventi`.`id` ' . $add_query ;
2022-10-13 16:10:43 +02:00
2024-01-15 15:30:45 +01:00
$query = Query :: replacePlaceholder ( $query );
2024-03-20 11:13:28 +01:00
$query = Modules :: replaceAdditionals (( new Module ()) -> getByField ( 'name' , 'Interventi' ), $query );
2022-10-13 16:10:43 +02:00
2024-01-15 15:30:45 +01:00
$records = $dbo -> fetchArray ( $query );
2023-08-04 14:54:28 +02:00
2024-01-15 15:30:45 +01:00
$rs = [];
2022-10-13 16:10:43 +02:00
2024-01-15 15:30:45 +01:00
if ( sizeof ( $records ) > 0 ) {
for ( $i = 0 ; $i < sizeof ( $records ); ++ $i ) {
if ( ! empty ( $records [ $i ][ 'idsede_destinazione' ])) {
$lat = $records [ $i ][ 'lat_sede' ];
$lng = $records [ $i ][ 'lng_sede' ];
2022-10-13 16:10:43 +02:00
2024-01-15 15:30:45 +01:00
$indirizzo = $records [ $i ][ 'indirizzo_sede' ];
$cap = $records [ $i ][ 'cap_anagrafica_sede' ];
$citta = $records [ $i ][ 'citta_anagrafica_sede' ];
$provincia = $records [ $i ][ 'provincia_anagrafica_sede' ];
} else {
$lat = $records [ $i ][ 'lat_anagrafica' ];
$lng = $records [ $i ][ 'lng_anagrafica' ];
2022-10-13 16:10:43 +02:00
2024-01-15 15:30:45 +01:00
$indirizzo = $records [ $i ][ 'indirizzo_anagrafica' ];
$cap = $records [ $i ][ 'cap_anagrafica' ];
$citta = $records [ $i ][ 'citta_anagrafica' ];
$provincia = $records [ $i ][ 'provincia_anagrafica' ];
}
2023-08-04 14:54:28 +02:00
2024-01-15 15:30:45 +01:00
if ( $lat != '0.00000000' && $lng != '0.00000000' ) {
$descrizione = '' ;
2023-08-04 14:54:28 +02:00
2024-03-20 11:13:28 +01:00
$descrizione .= '<i class="fa fa-user"></i> <b>Ragione sociale</b>: <a href="' . $rootdir . '/editor.php?id_module=' . ( new Module ()) -> getByField ( 'name' , 'Anagrafiche' ) . '&id_record=' . $records [ $i ][ 'id' ] . '" target="_blank" > ' . $records [ $i ][ 'ragione_sociale' ] . ' <i class="fa fa-external-link"></i> </a>' . " \n <br> " ;
2024-01-15 15:30:45 +01:00
if ( ! empty ( $indirizzo )) {
$descrizione .= '<i class="fa fa-map-signs"></i> <b>Indirizzo</b>: ' . $indirizzo . " \n <br> " ;
}
if ( ! empty ( $cap )) {
$descrizione .= ' ' . $cap ;
}
if ( ! empty ( $citta )) {
$descrizione .= ', ' . $citta ;
}
if ( ! empty ( $provincia )) {
$descrizione .= ' ' . $provincia ;
}
2022-10-13 16:10:43 +02:00
2024-01-15 15:30:45 +01:00
$descrizione .= '<hr>' ;
2022-10-13 16:10:43 +02:00
2024-01-15 15:30:45 +01:00
$descrizione .= '<a class="btn btn-info btn-block btn-xs" onclick="calcolaPercorso(\'' . $indirizzo . ' ' . $cap . ' ' . $citta . ' ' . $provincia . ' \ ' ) " >
2022-10-13 16:10:43 +02:00
< i class = " fa fa-map-signs " ></ i > Calcola percorso
</ a > ' ;
2024-01-15 15:30:45 +01:00
// dettagli intervento
$rs_sessioni = $dbo -> fetchOne ( " SELECT MIN(orario_inizio) AS data, GROUP_CONCAT(DISTINCT ragione_sociale SEPARATOR ', ') AS tecnici FROM in_interventi_tecnici INNER JOIN an_anagrafiche ON in_interventi_tecnici.idtecnico=an_anagrafiche.idanagrafica WHERE idintervento= " . prepare ( $records [ $i ][ 'idintervento' ]) . ' GROUP BY idintervento' );
2023-08-04 14:54:28 +02:00
2024-01-15 15:30:45 +01:00
$descrizione .= '<hr>' ;
$descrizione .= '<b>Data</b>: ' . ( ! empty ( $rs_sessioni [ 'data' ]) ? Translator :: dateToLocale ( $rs_sessioni [ 'data' ]) : Translator :: dateToLocale ( $records [ $i ][ 'data_richiesta' ])) . '<br>' ;
$descrizione .= '<b>Stato</b>: ' . $records [ $i ][ 'stato' ] . '<br>' ;
$descrizione .= '<b>Richiesta</b>: ' . substr ( strip_tags ( $records [ $i ][ 'richiesta' ]), 0 , 200 ) . '<br>' ;
if ( ! empty ( $rs_sessioni [ 'tecnici' ])) {
$descrizione .= '<b>Tecnici</b>: ' . $rs_sessioni [ 'tecnici' ];
}
2022-10-13 16:10:43 +02:00
2024-01-15 15:30:45 +01:00
$descrizione .= '<hr>' ;
2022-10-13 16:10:43 +02:00
2024-03-20 11:13:28 +01:00
$descrizione .= '<a class="btn btn-info btn-block btn-xs" onclick="window.open(\'' . $rootdir . '/editor.php?id_module=' . ( new Module ()) -> getByField ( 'name' , 'Interventi' ) . '&id_record=' . $records [ $i ][ 'idintervento' ] . ' \ ' ); " >
2022-10-13 16:10:43 +02:00
< i class = " fa fa-external-link " ></ i > Apri attività
</ a > ' ;
2024-01-15 15:30:45 +01:00
$descrizione .= '<hr>' ;
2022-10-13 16:10:43 +02:00
2024-01-15 15:30:45 +01:00
$rs [] = [ 'descrizione' => $descrizione , 'lat' => $lat , 'lng' => $lng ];
2022-10-13 16:10:43 +02:00
}
}
2024-01-15 15:30:45 +01:00
}
2022-10-13 16:10:43 +02:00
2024-01-15 15:30:45 +01:00
echo json_encode ( $rs );
2022-10-13 16:10:43 +02:00
2024-01-15 15:30:45 +01:00
break ;
}