fetchArray($query); $id_anagrafica = $records[0]['idanagrafica']; $id_cliente = $records[0]['idanagrafica']; $id_sede = $records[0]['idsede']; // Leggo il nome del referente se selezionato da menu a tendina if (!empty($records[0]['idreferente'])) { $rs2 = $dbo->fetchArray('SELECT * FROM an_referenti WHERE id='.prepare($records[0]['idreferente'])); $referente = $rs2[0]['nome']; } else { $referente = $records[0]['referente'].' '.$records[0]['telefono_referente']; } // Sostituzioni specifiche // Imposta numerointervento-data-numerocommessa su intestazione $report = str_replace('$intervento_numero$', $records[0]['codice'], $report); $report = str_replace('$intervento_data$', Translator::dateToLocale($records[0]['data_richiesta']), $report); if ($records[0]['numero_preventivo']) { $report = str_replace('$commessa_numero$', $records[0]['codice'], $report); } else { $report = str_replace('$commessa_numero$', ' ', $report); }