2018-02-04 09:41:46 +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-04 09:41:46 +01:00
|
|
|
|
|
|
|
include_once __DIR__.'/../../../core.php';
|
|
|
|
|
2018-09-19 10:44:32 +02:00
|
|
|
$link_id = Modules::get('Interventi')['id'];
|
2018-02-04 09:41:46 +01:00
|
|
|
|
|
|
|
$fields = [
|
|
|
|
'Codice intervento' => 'codice',
|
|
|
|
'Data intervento' => '(SELECT MIN(orario_inizio) FROM in_interventi_tecnici WHERE idintervento=in_interventi.id)',
|
|
|
|
'Data richiesta intervento' => 'data_richiesta',
|
|
|
|
'Sede intervento' => 'info_sede',
|
|
|
|
'Richiesta' => 'richiesta',
|
|
|
|
'Descrizione' => 'descrizione',
|
|
|
|
'Informazioni aggiuntive' => 'informazioniaggiuntive',
|
|
|
|
];
|
|
|
|
|
|
|
|
$query = 'SELECT *, (SELECT MIN(orario_inizio) FROM in_interventi_tecnici WHERE idintervento=in_interventi.id) AS data';
|
|
|
|
|
|
|
|
foreach ($fields as $name => $value) {
|
|
|
|
$query .= ', '.$value." AS '".str_replace("'", "\'", $name)."'";
|
|
|
|
}
|
|
|
|
|
2019-05-20 11:23:49 +02:00
|
|
|
$query .= ' FROM in_interventi ';
|
2018-02-04 09:41:46 +01:00
|
|
|
|
2019-05-20 11:23:49 +02:00
|
|
|
$where = [];
|
2018-02-04 09:41:46 +01:00
|
|
|
foreach ($fields as $name => $value) {
|
2019-05-20 11:23:49 +02:00
|
|
|
$where[] = $value.' LIKE "%'.$term.'%"';
|
2018-02-04 09:41:46 +01:00
|
|
|
}
|
|
|
|
|
2019-05-20 11:23:49 +02:00
|
|
|
$query .= ' WHERE ('.implode(' OR ', $where).') ';
|
|
|
|
|
2022-02-10 13:12:33 +01:00
|
|
|
$query .= ' '.Modules::getAdditionalsQuery('Interventi', null, false);
|
2018-02-04 09:41:46 +01:00
|
|
|
|
|
|
|
$rs = $dbo->fetchArray($query);
|
|
|
|
|
|
|
|
foreach ($rs as $r) {
|
|
|
|
$result = [];
|
|
|
|
|
2020-12-31 16:13:28 +01:00
|
|
|
$result['link'] = base_url().'/editor.php?id_module='.$link_id.'&id_record='.$r['id'];
|
2018-02-04 09:41:46 +01:00
|
|
|
$result['title'] = 'Intervento '.$r['codice'].' del '.Translator::dateToLocale($r['data']);
|
|
|
|
$result['category'] = 'Interventi';
|
|
|
|
|
|
|
|
// Campi da evidenziare
|
|
|
|
$result['labels'] = [];
|
|
|
|
foreach ($fields as $name => $value) {
|
2020-10-29 16:48:37 +01:00
|
|
|
if (string_contains($r[$name], $term)) {
|
2018-02-04 09:41:46 +01:00
|
|
|
$text = str_replace($term, "<span class='highlight'>".$term.'</span>', $r[$name]);
|
|
|
|
|
|
|
|
$result['labels'][] = $name.': '.$text.'<br/>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Aggiunta nome anagrafica come ultimo campo
|
|
|
|
if (sizeof($ragioni_sociali) > 1) {
|
|
|
|
$result['labels'][] = 'Anagrafica: '.$ragioni_sociali[$r['idanagrafica']].'<br/>';
|
|
|
|
}
|
|
|
|
|
|
|
|
$results[] = $result;
|
|
|
|
}
|