2018-03-02 19:20:42 +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-03-02 19:20:42 +01:00
|
|
|
|
2021-01-28 21:13:48 +01:00
|
|
|
$r = $dbo->fetchOne('SELECT dt_ddt.*,
|
|
|
|
IF((an_referenti.email IS NOT NULL AND an_referenti.email != ""), an_referenti.email, an_anagrafiche.email) AS email,
|
2022-09-16 13:25:41 +02:00
|
|
|
an_anagrafiche.pec,
|
2022-09-16 17:03:17 +02:00
|
|
|
an_anagrafiche.ragione_sociale,
|
|
|
|
an_referenti.nome
|
2021-01-28 21:13:48 +01:00
|
|
|
FROM dt_ddt
|
|
|
|
INNER JOIN an_anagrafiche ON dt_ddt.idanagrafica = an_anagrafiche.idanagrafica
|
2022-11-15 15:52:40 +01:00
|
|
|
LEFT OUTER JOIN an_referenti ON an_referenti.id = dt_ddt.idreferente
|
2022-03-21 12:47:17 +01:00
|
|
|
WHERE dt_ddt.id='.prepare($id_record));
|
2018-03-02 19:20:42 +01:00
|
|
|
|
|
|
|
// Variabili da sostituire
|
|
|
|
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' => empty($r['numero_esterno']) ? $r['numero'] : $r['numero_esterno'],
|
2018-06-26 10:25:50 +02:00
|
|
|
'note' => $r['note'],
|
2018-03-02 19:20:42 +01:00
|
|
|
'data' => Translator::dateToLocale($r['data']),
|
2018-08-11 15:49:46 +02:00
|
|
|
'id_anagrafica' => $r['idanagrafica'],
|
2021-10-13 10:05:35 +02:00
|
|
|
'ragione_sociale' => $r['ragione_sociale'],
|
2022-09-16 17:03:17 +02:00
|
|
|
'nome_referente' => $r['nome'],
|
2018-03-02 19:20:42 +01:00
|
|
|
];
|