fix: filtro per tipo attività in statistiche

This commit is contained in:
valentina 2024-10-08 12:50:47 +02:00
parent 092f88fcc7
commit 3e556576e5
1 changed files with 3 additions and 7 deletions

View File

@ -500,7 +500,7 @@ ORDER BY
`ragione_sociale` ASC"); `ragione_sociale` ASC");
$dataset = ''; $dataset = '';
if ($_SESSION['superselect']['idtipiintervento']) { if (is_array($_SESSION['superselect']['idtipiintervento'])) {
$where = '`in_interventi_tecnici`.`id` IN('.implode(',', (array) json_decode((string) $_SESSION['superselect']['idtipiintervento'])).')'; $where = '`in_interventi_tecnici`.`id` IN('.implode(',', (array) json_decode((string) $_SESSION['superselect']['idtipiintervento'])).')';
} else { } else {
$where = '1=1'; $where = '1=1';
@ -542,12 +542,8 @@ echo '
</div> </div>
<div class="card-body"> <div class="card-body">
<div class="row"> <div class="row">
<div class="col-md-4">'; <div class="col-md-4">
if ($_SESSION['superselect']['idanagrafica']) { {["type": "select", "multiple": "1", "label": "'.tr('Tipi attività').'", "name": "idtipiintervento[]", "ajax-source": "tipiintervento", "value": "'.implode(',', (array) json_decode((string) $_SESSION['superselect']['idtipiintervento'])).'", "placeholder": "Tutti" ]}
echo '
{["type": "select", "multiple": "1", "label": "'.tr('Tipi attività').'", "name": "idtipiintervento[]", "ajax-source": "tipiintervento", "value": "'.implode(',', (array) json_decode((string) $_SESSION['superselect']['idtipiintervento'])).'", "placeholder": "Tutti" ]}';
}
echo '
</div> </div>
</div> </div>