2017-08-04 16:28:16 +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 />.
*/
2017-08-04 16:28:16 +02:00
include_once __DIR__ . '/../../core.php' ;
switch ( filter ( 'op' )) {
case 'update' :
$nome = filter ( 'nome' );
$nota = filter ( 'nota' );
$colore = filter ( 'colore' );
2021-04-01 12:02:24 +02:00
$id_original = filter ( 'id_original' ) ? : null ;
2017-08-04 16:28:16 +02:00
if ( isset ( $nome ) && isset ( $nota ) && isset ( $colore )) {
2021-03-01 11:16:10 +01:00
$database -> table ( 'mg_categorie' )
-> where ( 'id' , '=' , $id_record )
-> update ([
'nome' => $nome ,
'nota' => $nota ,
'colore' => $colore ,
]);
2018-07-19 17:29:21 +02:00
flash () -> info ( tr ( 'Salvataggio completato!' ));
2017-08-04 16:28:16 +02:00
} else {
2018-07-19 17:29:21 +02:00
flash () -> error ( tr ( 'Ci sono stati alcuni errori durante il salvataggio!' ));
2017-08-04 16:28:16 +02:00
}
2021-04-01 12:02:24 +02:00
// Redirect alla categoria se si sta modificando una sottocategoria
$database -> commitTransaction ();
redirect ( base_path () . '/editor.php?id_module=' . $id_module . '&id_record=' . ( $id_original ? : $id_record ));
exit ();
2017-08-04 16:28:16 +02:00
break ;
case 'add' :
$nome = filter ( 'nome' );
2018-07-07 13:56:22 +02:00
$nota = filter ( 'nota' );
2018-07-04 11:01:09 +02:00
$colore = filter ( 'colore' );
2017-08-04 16:28:16 +02:00
2021-03-01 11:16:10 +01:00
$id_original = filter ( 'id_original' ) ? : null ;
2017-08-04 16:28:16 +02:00
2021-03-01 11:16:10 +01:00
// Ricerca corrispondenze con stesso nome
$corrispondenze = $database -> table ( 'mg_categorie' )
-> where ( 'nome' , '=' , $nome );
if ( ! empty ( $id_original )) {
$corrispondenze = $corrispondenze -> where ( 'parent' , '=' , $id_original );
}
$corrispondenze = $corrispondenze -> get ();
// Eventuale creazione del nuovo record
if ( $corrispondenze -> count () == 0 ) {
$id_record = $database -> table ( 'mg_categorie' )
-> insertGetId ([
'nome' => $nome ,
'nota' => $nota ,
'colore' => $colore ,
'parent' => $id_original ,
]);
flash () -> info ( tr ( 'Aggiunta nuova tipologia di _TYPE_' , [
'_TYPE_' => 'categoria' ,
]));
2017-08-04 16:28:16 +02:00
} else {
2021-03-01 11:16:10 +01:00
$id_record = $corrispondenze -> first () -> id ;
flash () -> error ( tr ( 'Esiste già una categoria con lo stesso nome!' ));
}
if ( isAjaxRequest ()) {
echo json_encode ([ 'id' => $id_record , 'text' => $nome ]);
2021-04-01 20:19:27 +02:00
} else {
2021-04-01 12:02:24 +02:00
// 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 ));
exit ();
2017-08-04 16:28:16 +02:00
}
break ;
case 'delete' :
$id = filter ( 'id' );
if ( empty ( $id )) {
$id = $id_record ;
}
2021-09-30 17:35:35 +02:00
if ( $dbo -> fetchNum ( 'SELECT * FROM `mg_articoli` WHERE (`id_categoria`=' . prepare ( $id ) . ' OR `id_sottocategoria`=' . prepare ( $id ) . ' OR `id_sottocategoria` IN (SELECT id FROM `mg_categorie` WHERE `parent`=' . prepare ( $id ) . ')) AND `deleted_at` IS NULL' ) == 0 ) {
2017-08-04 16:28:16 +02:00
$dbo -> query ( 'DELETE FROM `mg_categorie` WHERE `id`=' . prepare ( $id ));
2018-07-07 13:56:22 +02:00
2018-07-19 17:29:21 +02:00
flash () -> info ( tr ( 'Tipologia di _TYPE_ eliminata con successo!' , [
2017-09-10 14:35:41 +02:00
'_TYPE_' => 'categoria' ,
2018-07-07 13:56:22 +02:00
]));
2017-08-04 16:28:16 +02:00
} else {
2020-03-18 22:24:18 +01:00
flash () -> error ( tr ( 'Esistono alcuni articoli collegati a questa categoria. Impossibile eliminarla.' ));
2017-08-04 16:28:16 +02:00
}
break ;
}