138 lines
4.0 KiB
PHP
Executable File
138 lines
4.0 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
|
* Copyright (C) DevCode s.r.l.
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
include_once __DIR__.'/../../../core.php';
|
|
|
|
/*
|
|
Anagrafiche
|
|
*/
|
|
|
|
$link_id = module('Anagrafiche')['id'];
|
|
|
|
$fields = [
|
|
'Codice' => 'codice',
|
|
'Ragione sociale' => 'ragione_sociale',
|
|
'Partita iva' => 'piva',
|
|
'Codice fiscale' => 'codice_fiscale',
|
|
'Indirizzo' => 'indirizzo',
|
|
'Indirizzo2' => 'indirizzo2',
|
|
'Città' => 'citta',
|
|
'C.A.P.' => 'cap',
|
|
'Provincia' => 'provincia',
|
|
'Telefono' => 'telefono',
|
|
'Fax' => 'fax',
|
|
'Cellulare' => 'cellulare',
|
|
'Email' => 'email',
|
|
'Sito web' => 'sitoweb',
|
|
'Note' => 'note',
|
|
'Codice REA' => 'codicerea',
|
|
'Settore' => 'settore',
|
|
'Marche' => 'marche',
|
|
'CCIAA' => 'cciaa',
|
|
'Numero di iscrizione albo artigiani' => 'n_alboartigiani',
|
|
];
|
|
|
|
$query = 'SELECT *, idanagrafica AS id';
|
|
|
|
foreach ($fields as $name => $value) {
|
|
$query .= ', '.$value." AS '".str_replace("'", "\'", $name)."'";
|
|
}
|
|
|
|
$query .= ' FROM an_anagrafiche WHERE 1=0 ';
|
|
|
|
foreach ($fields as $name => $value) {
|
|
$query .= ' OR '.$value.' LIKE "%'.$term.'%"';
|
|
}
|
|
|
|
$query .= Modules::getAdditionalsQuery('Anagrafiche');
|
|
|
|
$rs = $dbo->fetchArray($query);
|
|
|
|
foreach ($rs as $r) {
|
|
$result = [];
|
|
|
|
$result['link'] = base_url().'/editor.php?id_module='.$link_id.'&id_record='.$r['id'];
|
|
$result['title'] = $r['ragione_sociale'];
|
|
$result['title'] .= !empty($r['deleted_at']) ? ' <small class="text-danger"><em>('.tr('eliminata').')</em></small>' : '';
|
|
$result['category'] = 'Anagrafiche';
|
|
|
|
// Campi da evidenziare
|
|
$result['labels'] = [];
|
|
foreach ($fields as $name => $value) {
|
|
if (string_contains($r[$name], $term)) {
|
|
$text = str_replace($term, "<span class='highlight'>".$term.'</span>', $r[$name]);
|
|
|
|
$result['labels'][] = $name.': '.$text.'<br/>';
|
|
}
|
|
}
|
|
|
|
$results[] = $result;
|
|
}
|
|
|
|
// Referenti anagrafiche
|
|
$fields = [
|
|
'Nome' => 'an_referenti.nome',
|
|
'Mansione' => 'an_mansioni.nome',
|
|
'Telefono' => 'an_referenti.telefono',
|
|
'Email' => 'an_referenti.email',
|
|
];
|
|
|
|
$query = 'SELECT *, idanagrafica as id';
|
|
|
|
foreach ($fields as $name => $value) {
|
|
$query .= ', '.$value." AS '".str_replace("'", "\'", $name)."'";
|
|
}
|
|
|
|
$query .= ' FROM an_referenti LEFT JOIN an_mansioni ON an_referenti.idmansione=an_mansioni.id WHERE idanagrafica IN('.implode(',', $idanagrafiche).') ';
|
|
|
|
foreach ($fields as $name => $value) {
|
|
$query .= ' OR '.$value.' LIKE "%'.$term.'%"';
|
|
}
|
|
|
|
//$query .= Modules::getAdditionalsQuery('Anagrafiche');
|
|
|
|
$rs = $dbo->fetchArray($query);
|
|
|
|
$plugin = $dbo->fetchArray("SELECT id FROM zz_plugins WHERE name='Referenti'");
|
|
|
|
foreach ($rs as $r) {
|
|
$result = [];
|
|
|
|
$result['link'] = base_url().'/editor.php?id_module='.$link_id.'&id_record='.$r['id'].'#tab_'.$plugin[0]['id'];
|
|
$result['title'] = $r['nome'];
|
|
$result['category'] = 'Referenti';
|
|
|
|
// Campi da evidenziare
|
|
$result['labels'] = [];
|
|
foreach ($fields as $name => $value) {
|
|
if (string_contains($r[$name], $term)) {
|
|
$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;
|
|
}
|