2018-02-21 17:47:43 +01:00
|
|
|
<?php
|
2020-09-07 15:04:06 +02:00
|
|
|
/*
|
|
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
2021-01-20 15:08:51 +01:00
|
|
|
* Copyright (C) DevCode s.r.l.
|
2020-09-07 15:04:06 +02:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2018-02-21 17:47:43 +01:00
|
|
|
|
2018-06-23 15:41:32 +02:00
|
|
|
$r = $dbo->fetchOne('SELECT *,
|
2022-09-29 16:06:27 +02:00
|
|
|
an_anagrafiche.idanagrafica AS id_anagrafica,
|
2021-01-28 21:13:48 +01:00
|
|
|
an_anagrafiche.email,
|
|
|
|
an_anagrafiche.pec,
|
2022-09-16 17:03:17 +02:00
|
|
|
an_referenti.nome,
|
2022-03-10 10:29:10 +01:00
|
|
|
in_interventi.codice AS codice,
|
2018-03-02 19:20:42 +01:00
|
|
|
(SELECT MAX(orario_fine) FROM in_interventi_tecnici WHERE idintervento=in_interventi.id) AS data_fine,
|
2022-03-24 12:30:22 +01:00
|
|
|
(SELECT descrizione FROM in_statiintervento WHERE idstatointervento=in_interventi.idstatointervento) AS stato,
|
2022-05-09 17:22:33 +02:00
|
|
|
impianti.descrizione AS impianti,
|
|
|
|
in_interventi.descrizione AS descrizione
|
2021-01-28 21:13:48 +01:00
|
|
|
FROM in_interventi
|
|
|
|
INNER JOIN an_anagrafiche ON in_interventi.idanagrafica = an_anagrafiche.idanagrafica
|
2022-09-16 17:03:17 +02:00
|
|
|
LEFT OUTER JOIN an_referenti ON an_referenti.id=in_interventi.idreferente
|
2022-03-24 12:30:22 +01:00
|
|
|
LEFT JOIN (SELECT GROUP_CONCAT(CONCAT(matricola, IF(nome != "", CONCAT(" - ", nome), "")) SEPARATOR "<br>") AS descrizione, my_impianti_interventi.idintervento FROM my_impianti INNER JOIN my_impianti_interventi ON my_impianti.id = my_impianti_interventi.idimpianto GROUP BY my_impianti_interventi.idintervento) AS impianti ON impianti.idintervento = in_interventi.id
|
2022-03-21 12:47:17 +01:00
|
|
|
WHERE in_interventi.id='.prepare($id_record));
|
2018-02-21 17:47:43 +01:00
|
|
|
|
2018-03-02 19:20:42 +01:00
|
|
|
// Variabili da sostituire
|
2018-02-21 17:47:43 +01:00
|
|
|
return [
|
2021-01-28 21:13:48 +01:00
|
|
|
'email' => $options['is_pec'] ? $r['pec'] : $r['email'],
|
2018-03-02 19:20:42 +01:00
|
|
|
'numero' => $r['codice'],
|
2022-03-10 10:29:10 +01:00
|
|
|
'ragione_sociale' => $r['ragione_sociale'],
|
2018-03-02 19:20:42 +01:00
|
|
|
'richiesta' => $r['richiesta'],
|
|
|
|
'descrizione' => $r['descrizione'],
|
|
|
|
'data' => Translator::dateToLocale($r['data_richiesta']),
|
|
|
|
'data richiesta' => Translator::dateToLocale($r['data_richiesta']),
|
|
|
|
'data fine intervento' => empty($r['data_fine']) ? Translator::dateToLocale($r['data_richiesta']) : Translator::dateToLocale($r['data_fine']),
|
2022-09-29 16:06:27 +02:00
|
|
|
'id_anagrafica' => $r['id_anagrafica'],
|
2018-09-20 11:39:03 +02:00
|
|
|
'stato' => $r['stato'],
|
2022-03-24 12:30:22 +01:00
|
|
|
'impianti' => $r['impianti'],
|
2022-09-16 17:03:17 +02:00
|
|
|
'nome_referente' => $r['nome'],
|
2018-02-21 17:47:43 +01:00
|
|
|
];
|