Fix selezione anagrafica per agente

This commit is contained in:
Pek5892 2023-05-25 12:57:40 +02:00
parent a2f26fef36
commit f50c2964b2
1 changed files with 5 additions and 3 deletions

View File

@ -71,11 +71,13 @@ switch ($resource) {
$where[] = "an_tipianagrafiche.descrizione='Cliente'";
if (empty($filter)) {
$where[] = 'an_anagrafiche.deleted_at IS NULL';
if (!empty($filter_agente)) {
$where[] = 'idagente = '.Auth::user()['idanagrafica'];
}
}
if (empty(!$filter_agente)) {
$where[] = 'idagente = '.Auth::user()['idanagrafica'];
}
if (!empty($search)) {
$search_fields[] = 'ragione_sociale LIKE '.prepare('%'.$search.'%');