mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-11 16:06:20 +01:00
10e1301eb7
Rimozione della dipendenza UI Autocomplete in favore di una libreria indipendente, aggiornamento funzioni JS per la gestione degli allegati.
75 lines
2.3 KiB
PHP
Executable File
75 lines
2.3 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';
|
|
|
|
$link_id = Modules::get('Preventivi')['id'];
|
|
|
|
$fields = [
|
|
'Codice preventivo' => 'numero',
|
|
'Nome' => 'nome',
|
|
'Descrizione' => 'descrizione',
|
|
];
|
|
|
|
$query = 'SELECT *';
|
|
|
|
foreach ($fields as $name => $value) {
|
|
$query .= ', '.$value." AS '".str_replace("'", "\'", $name)."'";
|
|
}
|
|
|
|
$query .= ' FROM co_preventivi WHERE idanagrafica IN('.implode(',', $idanagrafiche).') ';
|
|
|
|
foreach ($fields as $name => $value) {
|
|
$query .= ' OR '.$value.' LIKE "%'.$term.'%"';
|
|
}
|
|
|
|
$query .= Modules::getAdditionalsQuery('Preventivi');
|
|
|
|
$rs = $dbo->fetchArray($query);
|
|
|
|
foreach ($rs as $r) {
|
|
$result = [];
|
|
|
|
$result['link'] = base_path().'/editor.php?id_module='.$link_id.'&id_record='.$r['id'];
|
|
$result['title'] = 'Preventivo '.$r['numero'];
|
|
|
|
if ($r['data_accettazione'] == '0000-00-00') {
|
|
$result['title'] .= ' del '.Translator::dateToLocale($r['data_accettazione']);
|
|
}
|
|
|
|
$result['category'] = 'Preventivi';
|
|
|
|
// 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;
|
|
}
|