From f50c2964b2b0ae169317bcc4cb336871dd065dac Mon Sep 17 00:00:00 2001 From: Pek5892 Date: Thu, 25 May 2023 12:57:40 +0200 Subject: [PATCH] Fix selezione anagrafica per agente --- modules/anagrafiche/ajax/select.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/anagrafiche/ajax/select.php b/modules/anagrafiche/ajax/select.php index d67435356..6e1c0fc0e 100755 --- a/modules/anagrafiche/ajax/select.php +++ b/modules/anagrafiche/ajax/select.php @@ -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.'%');