2018-10-18 19:36:19 +02: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-10-18 19:36:19 +02:00
include_once __DIR__ . '/../../core.php' ;
2023-10-27 15:09:49 +02:00
use Modules\Checklists\Check ;
2024-03-05 16:01:45 +01:00
use Models\Module ;
2023-10-27 15:09:49 +02:00
2024-03-20 11:13:28 +01:00
$modulo_impianti = ( new Module ()) -> getByField ( 'name' , 'Impianti' );
2023-10-27 15:09:49 +02:00
2018-10-18 19:36:19 +02:00
switch ( filter ( 'op' )) {
case 'update' :
$nome = filter ( 'nome' );
$nota = filter ( 'nota' );
$colore = filter ( 'colore' );
2023-11-08 10:58:11 +01:00
$id_original = filter ( 'id_original' ) ? : null ;
2018-10-18 19:36:19 +02:00
if ( isset ( $nome ) && isset ( $nota ) && isset ( $colore )) {
2023-11-08 10:58:11 +01:00
$database -> table ( 'my_impianti_categorie' )
-> where ( 'id' , '=' , $id_record )
-> update ([
'nome' => $nome ,
'nota' => $nota ,
'colore' => $colore ,
]);
2018-10-18 19:36:19 +02:00
flash () -> info ( tr ( 'Salvataggio completato!' ));
} else {
flash () -> error ( tr ( 'Ci sono stati alcuni errori durante il salvataggio!' ));
}
2023-11-08 10:58:11 +01:00
// Redirect alla categoria se si sta modificando una sottocategoria
if ( $id_original != null ) {
$database -> commitTransaction ();
redirect ( base_path () . '/editor.php?id_module=' . $id_module . '&id_record=' . ( $id_original ? : $id_record ));
2024-01-15 15:30:45 +01:00
exit ;
2023-11-08 10:58:11 +01:00
}
2018-10-18 19:36:19 +02:00
break ;
case 'add' :
2023-11-08 10:58:11 +01:00
$nome = filter ( 'nome' );
$nota = filter ( 'nota' );
$colore = filter ( 'colore' );
2018-10-18 19:36:19 +02:00
2023-11-08 10:58:11 +01:00
$id_original = filter ( 'id_original' ) ? : null ;
2018-10-18 19:36:19 +02:00
2023-11-08 10:58:11 +01:00
// Ricerca corrispondenze con stesso nome
$corrispondenze = $database -> table ( 'my_impianti_categorie' )
-> where ( 'nome' , '=' , $nome );
if ( ! empty ( $id_original )) {
$corrispondenze = $corrispondenze -> where ( 'parent' , '=' , $id_original );
} else {
$corrispondenze = $corrispondenze -> whereNull ( 'parent' );
}
$corrispondenze = $corrispondenze -> get ();
// Eventuale creazione del nuovo record
if ( $corrispondenze -> count () == 0 ) {
$id_record = $database -> table ( 'my_impianti_categorie' )
-> insertGetId ([
'nome' => $nome ,
'nota' => $nota ,
'colore' => $colore ,
'parent' => $id_original ,
]);
flash () -> info ( tr ( 'Aggiunta nuova tipologia di _TYPE_' , [
'_TYPE_' => 'categoria' ,
2018-10-18 19:36:19 +02:00
]));
} else {
2023-11-08 10:58:11 +01:00
$id_record = $corrispondenze -> first () -> id ;
flash () -> error ( tr ( 'Esiste già una categoria con lo stesso nome!' ));
}
2023-10-30 14:18:26 +01:00
2023-11-08 10:58:11 +01:00
if ( isAjaxRequest ()) {
echo json_encode ([ 'id' => $id_record , 'text' => $nome ]);
} else {
// Redirect alla categoria se si sta aggiungendo una sottocategoria
$database -> commitTransaction ();
redirect ( base_path () . '/editor.php?id_module=' . $id_module . '&id_record=' . ( $id_original ? : $id_record ));
2024-01-15 15:30:45 +01:00
exit ;
2023-10-30 14:18:26 +01:00
}
2023-11-08 10:58:11 +01:00
2018-10-18 19:36:19 +02:00
break ;
case 'delete' :
$id = filter ( 'id' );
if ( empty ( $id )) {
$id = $id_record ;
}
2023-11-08 11:06:14 +01:00
if ( $dbo -> fetchNum ( 'SELECT * FROM `my_impianti` WHERE (`id_categoria`=' . prepare ( $id ) . ' OR `id_sottocategoria`=' . prepare ( $id ) . ' OR `id_sottocategoria` IN (SELECT id FROM `my_impianti_categorie` WHERE `parent`=' . prepare ( $id ) . ')) AND `deleted_at` IS NULL' ) == 0 ) {
2018-10-18 19:36:19 +02:00
$dbo -> query ( 'DELETE FROM `my_impianti_categorie` WHERE `id`=' . prepare ( $id ));
2023-11-08 10:58:11 +01:00
flash () -> info ( tr ( '_TYPE_ eliminata con successo!' , [
2018-10-18 19:36:19 +02:00
'_TYPE_' => 'categoria' ,
]));
} else {
2023-11-08 10:58:11 +01:00
flash () -> error ( tr ( 'Esistono alcuni impianti collegati a questa categoria. Impossibile eliminarla.' ));
2018-10-18 19:36:19 +02:00
}
2023-10-27 15:09:49 +02:00
break ;
case 'sync_checklist' :
$checks_categoria = $dbo -> fetchArray ( 'SELECT * FROM zz_checks WHERE id_module = ' . prepare ( $id_module ) . ' AND id_record = ' . prepare ( $id_record ));
$impianti = $dbo -> select ( 'my_impianti' , '*' , [], [ 'id_categoria' => $id_record ]);
foreach ( $impianti as $impianto ) {
2023-10-27 15:23:06 +02:00
Check :: deleteLinked ([
'id_module' => $modulo_impianti [ 'id' ],
'id_record' => $impianto [ 'id' ],
]);
2023-10-27 15:09:49 +02:00
foreach ( $checks_categoria as $check_categoria ) {
2023-10-30 13:12:24 +01:00
$id_parent_new = null ;
if ( $check_categoria [ 'id_parent' ]) {
$parent = $dbo -> selectOne ( 'zz_checks' , '*' , [ 'id' => $check_categoria [ 'id_parent' ]]);
$id_parent_new = $dbo -> selectOne ( 'zz_checks' , '*' , [ 'content' => $parent [ 'content' ], 'id_module' => $modulo_impianti [ 'id' ], 'id_record' => $impianto [ 'id' ]])[ 'id' ];
}
$check = Check :: build ( $user , $structure , $impianto [ 'id' ], $check_categoria [ 'content' ], $id_parent_new , $check_categoria [ 'is_titolo' ], $check_categoria [ 'order' ]);
2023-10-27 15:09:49 +02:00
$check -> id_module = $modulo_impianti [ 'id' ];
$check -> id_plugin = null ;
$check -> note = $check_categoria [ 'note' ];
$check -> save ();
}
}
flash () -> info ( tr ( 'Impianti sincronizzati correttamente!' ));
2018-10-18 19:36:19 +02:00
break ;
}