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
2018-06-23 15:41:32 +02:00
$r = $dbo -> fetchOne ( ' SELECT * ,
2021-05-12 12:01:10 +02:00
an_anagrafiche . ragione_sociale , co_preventivi . idanagrafica ,
2021-02-11 15:05:29 +01:00
IF ( ( an_referenti . email IS NOT NULL AND an_referenti . email != " " ), an_referenti . email , an_anagrafiche . email ) AS email
FROM co_preventivi INNER JOIN an_anagrafiche ON co_preventivi . idanagrafica = an_anagrafiche . idanagrafica LEFT OUTER JOIN an_referenti ON an_referenti . id = co_preventivi . idreferente WHERE co_preventivi . id = ' . prepare ( $id_record ));
2018-03-02 19:20:42 +01:00
2021-04-26 13:24:35 +02:00
$revisione = $dbo -> fetchNum ( 'SELECT * FROM co_preventivi WHERE master_revision = (SELECT master_revision FROM co_preventivi WHERE id = ' . prepare ( $id_record ) . ') AND id < ' . prepare ( $id_record ));
2020-03-09 14:24:59 +01:00
2018-03-02 19:20:42 +01:00
// Variabili da sostituire
return [
'email' => $r [ 'email' ],
'numero' => $r [ 'numero' ],
2020-01-22 10:49:44 +01:00
'ragione_sociale' => $r [ 'ragione_sociale' ],
2018-03-02 19:20:42 +01:00
'descrizione' => $r [ 'descrizione' ],
2021-01-04 18:54:23 +01:00
'data' => dateFormat ( $r [ 'data_bozza' ]),
2018-08-11 15:49:46 +02:00
'id_anagrafica' => $r [ 'idanagrafica' ],
2020-03-09 14:24:59 +01:00
'revisione' => $revisione ,
2018-03-02 19:20:42 +01:00
];