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
|
|
|
|
2024-06-03 16:57:32 +02:00
|
|
|
$r = $dbo->fetchOne('
|
|
|
|
SELECT
|
|
|
|
`co_contratti`.*,
|
|
|
|
`co_contratti`.`nome` AS nome_contratto,
|
|
|
|
`an_anagrafiche`.`pec`,
|
|
|
|
IF((`an_referenti`.`email` IS NOT NULL AND `an_referenti`.`email` != ""), `an_referenti`.`email`, `an_anagrafiche`.`email`) AS email,
|
|
|
|
`an_anagrafiche`.`idanagrafica`,
|
2024-06-04 16:41:20 +02:00
|
|
|
IF(`an_referenti`.`nome`,`an_referenti`.`nome`, \'\') AS nome_referente,
|
2024-06-03 16:57:32 +02:00
|
|
|
`an_anagrafiche`.`ragione_sociale`
|
|
|
|
FROM
|
|
|
|
`co_contratti`
|
|
|
|
INNER JOIN `an_anagrafiche` ON `co_contratti`.`idanagrafica`=`an_anagrafiche`.`idanagrafica`
|
|
|
|
LEFT JOIN `an_referenti` ON `an_referenti`.`id`=`co_contratti`.`idreferente`
|
|
|
|
WHERE
|
|
|
|
`co_contratti`.`id`='.prepare($id_record));
|
2018-03-02 19:20:42 +01:00
|
|
|
|
|
|
|
// Variabili da sostituire
|
|
|
|
return [
|
2023-06-07 15:23:19 +02:00
|
|
|
'nome' => $r['nome_contratto'],
|
2021-01-28 21:13:48 +01:00
|
|
|
'email' => $options['is_pec'] ? $r['pec'] : $r['email'],
|
2020-02-13 02:30:29 +01:00
|
|
|
'ragione_sociale' => $r['ragione_sociale'],
|
2018-03-02 19:20:42 +01:00
|
|
|
'numero' => $r['numero'],
|
|
|
|
'descrizione' => $r['descrizione'],
|
|
|
|
'data' => Translator::dateToLocale($r['data_bozza']),
|
2018-08-11 15:49:46 +02:00
|
|
|
'id_anagrafica' => $r['idanagrafica'],
|
2023-06-07 15:23:19 +02:00
|
|
|
'nome_referente' => $r['nome_referente'],
|
2018-03-02 19:20:42 +01:00
|
|
|
];
|