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' ;
2024-03-05 16:01:45 +01:00
use Models\Module ;
2018-02-04 09:41:46 +01:00
2024-03-05 16:01:45 +01:00
$link_id = ( new Module ()) -> GetByName ( 'Articoli' ) -> id_record ;
2023-07-18 14:40:19 +02:00
$prezzi_ivati = setting ( 'Utilizza prezzi di vendita comprensivi di IVA' );
$show_prezzi = Auth :: user ()[ 'gruppo' ] != 'Tecnici' || ( Auth :: user ()[ 'gruppo' ] == 'Tecnici' && setting ( 'Mostra i prezzi al tecnico' ));
2018-02-04 09:41:46 +01:00
$fields = [
'Codice' => 'codice' ,
2020-05-06 19:25:31 +02:00
'Barcode' => 'barcode' ,
2018-02-04 09:41:46 +01:00
'Descrizione' => 'descrizione' ,
2024-03-13 11:38:29 +01:00
'Categoria' => '(SELECT `name` FROM `mg_categorie` LEFT JOIN `mg_categorie_lang` ON (`mg_categorie`.`id` = `mg_categorie_lang`.`id_record` AND `mg_categorie_lang`.`id_lang` = ' . prepare ( \App :: getLang ()) . ') WHERE `mg_categorie`.`id` = `mg_articoli`.`id_categoria`)' ,
'Subcategoria' => '(SELECT `name` FROM `mg_categorie` LEFT JOIN `mg_categorie_lang` ON (`mg_categorie`.`id` = `mg_categorie_lang`.`id_record` AND `mg_categorie_lang`.`id_lang` = ' . prepare ( \App :: getLang ()) . ') WHERE `mg_categorie`.`id` = `mg_articoli`.`id_sottocategoria`)' ,
2018-02-04 09:41:46 +01:00
'Note' => 'note' ,
];
$query = 'SELECT *' ;
foreach ( $fields as $name => $value ) {
$query .= ', ' . $value . " AS ' " . str_replace ( " ' " , " \ ' " , $name ) . " ' " ;
}
2024-02-29 15:10:55 +01:00
$query .= ' FROM `mg_articoli` WHERE 1=0 ' ;
2018-02-04 09:41:46 +01:00
foreach ( $fields as $name => $value ) {
$query .= ' OR ' . $value . ' LIKE "%' . $term . '%"' ;
}
$query .= Modules :: getAdditionalsQuery ( 'Articoli' );
$rs = $dbo -> fetchArray ( $query );
foreach ( $rs as $r ) {
$result = [];
2020-09-23 17:53:19 +02:00
$result [ 'link' ] = base_path () . '/editor.php?id_module=' . $link_id . '&id_record=' . $r [ 'id' ];
2023-07-18 14:40:19 +02:00
$result [ 'title' ] = $r [ 'codice' ] . ' - ' . $r [ 'descrizione' ] . ' < br >
< small > ' .
2023-08-04 14:54:28 +02:00
( $show_prezzi ? '<strong>' . tr ( 'Prezzo di vendita' ) . ':</strong> ' . moneyFormat ( $prezzi_ivati ? $r [ 'prezzo_vendita_ivato' ] : $r [ 'prezzo_vendita' ]) . '<br>' : '' ) . '
2023-07-18 14:40:19 +02:00
< strong > '.tr(' Q . tà ').' :</ strong > '.Translator::numberToLocale($r[' qta '], ' qta ').' '.$r[' um '].'
</ small > ' ;
2018-02-04 09:41:46 +01:00
$result [ 'category' ] = 'Articoli' ;
// 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 ;
}