2018-02-03 16:29:53 +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-03 16:29:53 +01:00
include_once __DIR__ . '/../../../core.php' ;
2024-03-05 16:01:45 +01:00
use Models\Module ;
2018-02-03 16:29:53 +01:00
/*
Anagrafiche
*/
2024-03-27 16:59:46 +01:00
$link_id = ( new Module ()) -> getByField ( 'name' , 'Anagrafiche' , Models\Locale :: getPredefined () -> id );
2018-02-04 10:12:14 +01:00
$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' ,
'Marche' => 'marche' ,
'Numero di iscrizione albo artigiani' => 'n_alboartigiani' ,
];
$query = 'SELECT *, idanagrafica AS id' ;
foreach ( $fields as $name => $value ) {
$query .= ', ' . $value . " AS ' " . str_replace ( " ' " , " \ ' " , $name ) . " ' " ;
}
2018-02-03 16:29:53 +01:00
2018-02-04 10:12:14 +01:00
$query .= ' FROM an_anagrafiche WHERE 1=0 ' ;
2018-02-03 16:29:53 +01:00
2018-02-04 10:12:14 +01:00
foreach ( $fields as $name => $value ) {
$query .= ' OR ' . $value . ' LIKE "%' . $term . '%"' ;
2018-02-03 16:29:53 +01:00
}
2018-02-04 10:12:14 +01:00
$query .= Modules :: getAdditionalsQuery ( 'Anagrafiche' );
2018-02-03 16:29:53 +01:00
2018-02-04 10:12:14 +01:00
$rs = $dbo -> fetchArray ( $query );
2018-02-03 16:29:53 +01:00
2018-02-04 10:12:14 +01:00
foreach ( $rs as $r ) {
$result = [];
2018-02-03 16:29:53 +01:00
2020-09-23 17:53:19 +02:00
$result [ 'link' ] = base_path () . '/editor.php?id_module=' . $link_id . '&id_record=' . $r [ 'id' ];
2018-02-04 10:12:14 +01:00
$result [ 'title' ] = $r [ 'ragione_sociale' ];
2019-07-24 19:20:55 +02:00
$result [ 'title' ] .= ! empty ( $r [ 'deleted_at' ]) ? ' <small class="text-danger"><em>(' . tr ( 'eliminata' ) . ')</em></small>' : '' ;
2018-02-04 10:12:14 +01:00
$result [ 'category' ] = 'Anagrafiche' ;
2018-02-03 16:29:53 +01:00
2018-02-04 10:12:14 +01:00
// 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 10:12:14 +01:00
$text = str_replace ( $term , " <span class='highlight'> " . $term . '</span>' , $r [ $name ]);
2018-02-03 16:29:53 +01:00
2018-02-04 10:12:14 +01:00
$result [ 'labels' ][] = $name . ': ' . $text . '<br/>' ;
2018-02-03 16:29:53 +01:00
}
}
2018-02-04 10:12:14 +01:00
$results [] = $result ;
2018-02-03 16:29:53 +01:00
}
2018-02-04 10:12:14 +01:00
// Referenti anagrafiche
$fields = [
2021-11-22 11:35:20 +01:00
'Nome' => 'an_referenti.nome' ,
'Mansione' => 'an_mansioni.nome' ,
'Telefono' => 'an_referenti.telefono' ,
'Email' => 'an_referenti.email' ,
2018-02-04 10:12:14 +01:00
];
2018-02-03 16:29:53 +01:00
2018-02-04 10:12:14 +01:00
$query = 'SELECT *, idanagrafica as id' ;
2018-02-03 16:29:53 +01:00
2018-02-04 10:12:14 +01:00
foreach ( $fields as $name => $value ) {
$query .= ', ' . $value . " AS ' " . str_replace ( " ' " , " \ ' " , $name ) . " ' " ;
2018-02-03 16:29:53 +01:00
}
2021-11-22 11:35:20 +01:00
$query .= ' FROM an_referenti LEFT JOIN an_mansioni ON an_referenti.idmansione=an_mansioni.id WHERE idanagrafica IN(' . implode ( ',' , $idanagrafiche ) . ') ' ;
2018-02-03 16:29:53 +01:00
2018-02-04 10:12:14 +01:00
foreach ( $fields as $name => $value ) {
$query .= ' OR ' . $value . ' LIKE "%' . $term . '%"' ;
}
2018-02-03 16:29:53 +01:00
2024-01-15 15:30:45 +01:00
// $query .= Modules::getAdditionalsQuery('Anagrafiche');
2018-02-03 16:29:53 +01:00
2018-02-04 10:12:14 +01:00
$rs = $dbo -> fetchArray ( $query );
2018-02-03 16:29:53 +01:00
2024-03-22 15:52:24 +01:00
$plugin = $dbo -> fetchArray ( 'SELECT `zz_plugins`.`id` FROM `zz_plugins` LEFT JOIN `zz_plugins_lang` ON (`zz_plugins`.`id` = `zz_plugins_lang`.`id_record` AND `zz_plugins_lang`.`id_lang` = ' . prepare ( Models\Locale :: getDefault () -> id ) . " ) WHERE `name`='Referenti' " );
2018-02-03 16:29:53 +01:00
2018-02-04 10:12:14 +01:00
foreach ( $rs as $r ) {
$result = [];
2018-02-03 16:29:53 +01:00
2020-09-23 17:53:19 +02:00
$result [ 'link' ] = base_path () . '/editor.php?id_module=' . $link_id . '&id_record=' . $r [ 'id' ] . '#tab_' . $plugin [ 0 ][ 'id' ];
2018-02-04 10:12:14 +01:00
$result [ 'title' ] = $r [ 'nome' ];
$result [ 'category' ] = 'Referenti' ;
2018-02-03 16:29:53 +01:00
2018-02-04 10:12:14 +01:00
// 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 10:12:14 +01:00
$text = str_replace ( $term , " <span class='highlight'> " . $term . '</span>' , $r [ $name ]);
$result [ 'labels' ][] = $name . ': ' . $text . '<br/>' ;
2018-02-03 16:29:53 +01:00
}
2018-02-04 10:12:14 +01:00
}
2018-02-03 16:29:53 +01:00
2018-02-04 10:12:14 +01:00
// Aggiunta nome anagrafica come ultimo campo
if ( sizeof ( $ragioni_sociali ) > 1 ) {
$result [ 'labels' ][] = 'Anagrafica: ' . $ragioni_sociali [ $r [ 'idanagrafica' ]] . '<br/>' ;
2018-02-03 16:29:53 +01:00
}
2018-02-04 10:12:14 +01:00
$results [] = $result ;
2018-02-03 16:29:53 +01:00
}