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 ( post ( 'op' )) {
case 'update' :
$descrizione = post ( 'descrizione' );
2024-03-13 11:38:29 +01:00
if ( $dbo -> fetchNum ( 'SELECT * FROM `dt_aspettobeni` LEFT JOIN `dt_aspettobeni_lang` ON (`dt_aspettobeni`.`id`=`dt_aspettobeni_lang`.`id_record` AND `dt_aspettobeni_lang`.`lang`=' . prepare ( \App :: getLang ()) . ') WHERE `name`=' . prepare ( $descrizione ) . ' AND `dt_aspettobeni`.`id`!=' . prepare ( $id_record )) == 0 ) {
$dbo -> query ( 'UPDATE `dt_aspettobeni_lang` SET `name`=' . prepare ( $descrizione ) . ' WHERE `id_record`=' . prepare ( $id_record )) . ' AND `lang`=' . prepare ( \App :: getLang ());
2018-07-19 17:29:21 +02:00
flash () -> info ( tr ( 'Salvataggio completato.' ));
2017-08-04 16:28:16 +02:00
} else {
2024-02-27 09:59:44 +01:00
flash () -> error ( tr ( " E' già presente un aspetto beni con questa descrizione. " ));
2017-08-04 16:28:16 +02:00
}
break ;
case 'add' :
$descrizione = post ( 'descrizione' );
2024-02-27 09:59:44 +01:00
if ( $dbo -> fetchNum ( 'SELECT * FROM `dt_aspettobeni_lang` WHERE `name`=' . prepare ( $descrizione )) == 0 ) {
$dbo -> query ( 'INSERT INTO `dt_aspettobeni` (`created_at`) VALUES (NOW())' );
2017-08-04 16:28:16 +02:00
$id_record = $dbo -> lastInsertedID ();
2018-11-30 16:10:15 +01:00
2024-03-13 11:38:29 +01:00
$dbo -> query ( 'INSERT INTO `dt_aspettobeni_lang` (`name`, `id_record`, `id_lang`) VALUES (' . prepare ( $descrizione ) . ', ' . prepare ( $id_record ) . ', ' . prepare ( \App :: getLang ()) . ')' );
2024-02-27 09:59:44 +01:00
2018-11-30 16:10:15 +01:00
if ( isAjaxRequest ()) {
echo json_encode ([ 'id' => $id_record , 'text' => $descrizione ]);
}
2017-08-04 16:28:16 +02:00
2024-02-27 09:59:44 +01:00
flash () -> info ( tr ( 'Aggiunto nuovo Aspetto beni.' ));
2017-08-04 16:28:16 +02:00
} else {
2024-02-27 09:59:44 +01:00
flash () -> error ( tr ( " E' già presente un aspetto beni con questa descrizione. " ));
2017-08-04 16:28:16 +02:00
}
break ;
case 'delete' :
2024-02-27 09:59:44 +01:00
$documenti = $dbo -> fetchNum ( 'SELECT `id` FROM `dt_ddt` WHERE `idaspettobeni`=' . prepare ( $id_record ) . ' UNION SELECT `id` FROM `co_documenti` WHERE `idaspettobeni`=' . prepare ( $id_record ));
2018-06-26 14:30:26 +02:00
2018-03-28 00:18:50 +02:00
if ( isset ( $id_record ) && empty ( $documenti )) {
2017-08-04 16:28:16 +02:00
$dbo -> query ( 'DELETE FROM `dt_aspettobeni` WHERE `id`=' . prepare ( $id_record ));
2024-02-27 09:59:44 +01:00
flash () -> info ( tr ( 'Aspetto beni eliminato con successo.' ));
2018-06-26 14:30:26 +02:00
} else {
2018-07-19 17:29:21 +02:00
flash () -> error ( tr ( 'Sono presenti dei documenti collegati a questo aspetto beni.' ));
2017-08-04 16:28:16 +02:00
}
break ;
}