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' ;
switch ( $resource ) {
case 'impianti' :
2018-05-26 09:27:36 +02:00
$query = 'SELECT id, CONCAT(matricola, " - ", nome) AS descrizione FROM my_impianti |where| ORDER BY id, idanagrafica' ;
foreach ( $elements as $element ) {
$filter [] = 'id=' . prepare ( $element );
}
if ( ! empty ( $search )) {
$search_fields [] = 'nome LIKE ' . prepare ( '%' . $search . '%' );
$search_fields [] = 'matricola LIKE ' . prepare ( '%' . $search . '%' );
}
break ;
2020-08-14 09:55:05 +02:00
/*
2020-08-17 10:57:51 +02:00
* Opzioni utilizzate :
2020-08-17 16:25:01 +02:00
* - idanagrafica
*/
2018-05-26 09:27:36 +02:00
case 'impianti-cliente' :
2018-05-26 02:29:12 +02:00
if ( isset ( $superselect [ 'idanagrafica' ])) {
$query = 'SELECT id, CONCAT(matricola, " - ", nome) AS descrizione FROM my_impianti |where| ORDER BY idsede' ;
2018-04-23 17:28:39 +02:00
foreach ( $elements as $element ) {
$filter [] = 'id=' . prepare ( $element );
}
2018-05-26 02:29:12 +02:00
$where [] = 'idanagrafica=' . prepare ( $superselect [ 'idanagrafica' ]);
2022-01-17 16:46:26 +01:00
$where [] = 'idsede=' . prepare ( $superselect [ 'idsede_destinazione' ] ? : 0 );
2018-05-26 02:29:12 +02:00
2018-04-23 17:28:39 +02:00
if ( ! empty ( $search )) {
$search_fields [] = 'nome LIKE ' . prepare ( '%' . $search . '%' );
$search_fields [] = 'matricola LIKE ' . prepare ( '%' . $search . '%' );
}
}
2018-05-26 09:27:36 +02:00
break ;
2020-08-14 09:55:05 +02:00
/*
2020-08-17 10:57:51 +02:00
* Opzioni utilizzate :
2020-08-17 16:25:01 +02:00
* - idintervento
*/
2018-05-26 09:27:36 +02:00
case 'impianti-intervento' :
2018-06-26 14:30:26 +02:00
if ( isset ( $superselect [ 'idintervento' ])) {
2018-05-26 02:29:12 +02:00
$query = 'SELECT id, CONCAT(matricola, " - ", nome) AS descrizione FROM my_impianti INNER JOIN my_impianti_interventi ON my_impianti.id=my_impianti_interventi.idimpianto |where| ORDER BY idsede' ;
2018-02-04 09:41:46 +01:00
foreach ( $elements as $element ) {
$filter [] = 'id=' . prepare ( $element );
}
2018-06-26 14:30:26 +02:00
2018-05-26 02:29:12 +02:00
$where [] = 'my_impianti_interventi.idintervento=' . prepare ( $superselect [ 'idintervento' ]);
2018-06-26 14:30:26 +02:00
2018-02-04 09:41:46 +01:00
if ( ! empty ( $search )) {
$search_fields [] = 'nome LIKE ' . prepare ( '%' . $search . '%' );
$search_fields [] = 'matricola LIKE ' . prepare ( '%' . $search . '%' );
}
}
break ;
2021-08-05 18:17:26 +02:00
/*
* Opzioni utilizzate :
* - matricola
*/
case 'componenti' :
if ( isset ( $superselect [ 'matricola' ])) {
$query = ' SELECT my_componenti . id , CONCAT ( " # " , my_componenti . id , " : " , mg_articoli . codice , " - " , mg_articoli . descrizione ) AS descrizione
FROM my_componenti
INNER JOIN mg_articoli ON mg_articoli . id = my_componenti . id_articolo
| where | ORDER BY my_componenti . id ' ;
foreach ( $elements as $element ) {
$filter [] = 'my_componenti.id = ' . prepare ( $element );
}
$where = [
'my_componenti.data_sostituzione IS NULL' ,
'my_componenti.data_rimozione IS NULL' ,
];
$impianti = $superselect [ 'matricola' ];
2021-08-06 11:06:47 +02:00
if ( ! empty ( $impianti )) {
2021-08-05 18:17:26 +02:00
$where [] = 'my_componenti.id_impianto IN (' . $impianti . ')' ;
}
if ( ! empty ( $search )) {
$search [] = 'my_componenti.note LIKE ' . prepare ( '%' . $search . '%' );
}
}
break ;
2018-02-04 09:41:46 +01:00
}