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' ;
$fields = [
'Numero' => 'numero' ,
'Numero secondario' => 'numero_esterno' ,
'Data' => 'data' ,
'Note' => 'note' ,
'Note aggiuntive' => 'note_aggiuntive' ,
'Buono d\'ordine' => 'buono_ordine' ,
2018-07-09 12:52:53 +02:00
'Righe' => 'righe.descrizione' ,
2018-02-04 09:41:46 +01:00
];
$query = 'SELECT *, co_documenti.id, co_tipidocumento.descrizione AS tipologia' ;
foreach ( $fields as $name => $value ) {
$query .= ', ' . $value . " AS ' " . str_replace ( " ' " , " \ ' " , $name ) . " ' " ;
}
2018-07-09 12:52:53 +02:00
$query .= ' FROM co_documenti INNER JOIN co_tipidocumento ON co_documenti.idtipodocumento=co_tipidocumento.id LEFT JOIN (SELECT GROUP_CONCAT(descrizione SEPARATOR " -- ") AS "descrizione", iddocumento FROM co_righe_documenti GROUP BY iddocumento) righe ON righe.iddocumento=co_documenti.id WHERE idanagrafica IN(' . implode ( ',' , $idanagrafiche ) . ') ' ;
2018-02-04 09:41:46 +01:00
foreach ( $fields as $name => $value ) {
$query .= ' OR ' . $value . ' LIKE "%' . $term . '%"' ;
}
//$query .= Modules::getAdditionalsQuery('Interventi');
$rs = $dbo -> fetchArray ( $query );
foreach ( $rs as $r ) {
$result = [];
$module = ( $r [ 'dir' ] == 'uscita' ) ? 'Fatture di acquisto' : 'Fatture di vendita' ;
2021-02-20 13:31:05 +01:00
$link_id = module ( $module )[ 'id' ];
2018-02-04 09:41:46 +01:00
$numero = empty ( $r [ 'numero_esterno' ]) ? $r [ 'numero' ] : $r [ 'numero_esterno' ];
2021-10-23 16:37:21 +02:00
$result [ 'link' ] = base_path () . '/editor.php?id_module=' . $link_id . '&id_record=' . $r [ 'id' ];
2021-01-04 18:54:23 +01:00
$result [ 'title' ] = $r [ 'tipologia' ] . ' num. ' . $numero . ' del ' . dateFormat ( $r [ 'data' ]);
2018-02-04 09:41:46 +01:00
$result [ 'category' ] = $r [ 'tipologia' ];
// 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
if ( $name == 'Righe' ) {
$result [ 'labels' ][] = tr ( 'Termine presente nelle righe del documento' ) . '<br/>' ;
} else {
$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 ;
}