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' :
$descrizione = filter ( 'descrizione' );
2024-02-27 11:10:40 +01:00
$predefined = post ( 'predefined' );
2017-08-04 16:28:16 +02:00
if ( isset ( $descrizione )) {
2024-03-22 15:52:24 +01:00
if ( $dbo -> fetchNum ( 'SELECT * FROM `dt_causalet` LEFT JOIN `dt_causalet_lang` ON (`dt_causalet`.`id` = `dt_causalet_lang`.`id_record` AND `dt_causalet_lang`.`id_lang` =' . prepare ( Models\Locale :: getDefault () -> id ) . ') WHERE `deleted_at` IS NULL AND `name`=' . prepare ( $descrizione ) . ' AND `dt_causalet`.`id`!=' . prepare ( $id_record )) == 0 ) {
2018-09-26 10:49:38 +02:00
if ( ! empty ( $predefined )) {
2018-11-15 17:39:40 +01:00
$dbo -> query ( 'UPDATE dt_causalet SET predefined = 0' );
2018-09-26 10:49:38 +02:00
}
$dbo -> update ( 'dt_causalet' , [
2020-07-14 13:30:25 +02:00
'is_importabile' => filter ( 'is_importabile' ),
2021-01-14 16:03:13 +01:00
'reversed' => filter ( 'reversed' ),
2018-09-26 10:49:38 +02:00
'predefined' => $predefined ,
2023-06-26 15:12:43 +02:00
'is_rientrabile' => filter ( 'is_rientrabile' ),
2018-09-26 10:49:38 +02:00
], [ 'id' => $id_record ]);
2024-02-27 11:10:40 +01:00
$dbo -> update ( 'dt_causalet_lang' , [
'name' => $descrizione ,
2024-03-22 15:52:24 +01:00
], [ 'id_record' => $id_record , 'id_lang' => Models\Locale :: getDefault () -> id ]);
2024-02-27 11:10:40 +01:00
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 11:10:40 +01:00
flash () -> error ( tr ( " E' già presente una causale di trasporto con la stessa descrizione " ));
2017-08-04 16:28:16 +02:00
}
} else {
2020-03-03 10:33:32 +01:00
flash () -> error ( tr ( 'Ci sono stati alcuni errori durante il salvataggio' ));
2017-08-04 16:28:16 +02:00
}
break ;
case 'add' :
$descrizione = filter ( 'descrizione' );
if ( isset ( $descrizione )) {
2024-03-22 15:52:24 +01:00
if ( $dbo -> fetchNum ( 'SELECT * FROM `dt_causalet` LEFT JOIN `dt_causalet_lang` ON (`dt_causalet`.`id` = `dt_causalet_lang`.`id_record` AND `dt_causalet_lang`.`id_lang` =' . prepare ( Models\Locale :: getDefault () -> id ) . ') WHERE `deleted_at` IS NULL AND `name`=' . prepare ( $descrizione )) == 0 ) {
2018-11-15 15:16:31 +01:00
$dbo -> insert ( 'dt_causalet' , [
2020-07-14 13:30:25 +02:00
'is_importabile' => 1 ,
2018-09-26 10:49:38 +02:00
]);
2017-08-04 16:28:16 +02:00
$id_record = $dbo -> lastInsertedID ();
2024-02-27 11:10:40 +01:00
$dbo -> insert ( 'dt_causalet_lang' , [
'name' => $descrizione ,
'id_record' => $id_record ,
2024-03-22 15:52:24 +01:00
'id_lang' => Models\Locale :: getDefault () -> id ,
2024-02-27 11:10:40 +01:00
]);
2018-11-30 16:10:15 +01:00
if ( isAjaxRequest ()) {
2018-11-15 19:06:42 +01:00
echo json_encode ([ 'id' => $id_record , 'text' => $descrizione ]);
}
2017-08-04 16:28:16 +02:00
2024-02-27 11:10:40 +01:00
flash () -> info ( tr ( 'Aggiunta nuova causale di trasporto.' ));
2017-08-04 16:28:16 +02:00
} else {
2024-02-27 11:10:40 +01:00
flash () -> error ( tr ( " E' già presente una causale di trasporto con la stessa descrizione " ));
2017-08-04 16:28:16 +02:00
}
} else {
2018-07-25 12:34:54 +02:00
flash () -> error ( tr ( 'Ci sono stati alcuni errori durante il salvataggio' ));
2017-08-04 16:28:16 +02:00
}
break ;
case 'delete' :
2024-02-27 11:10:40 +01:00
$documenti = $dbo -> fetchNum ( 'SELECT `id` FROM `dt_ddt` WHERE `idcausalet`=' . prepare ( $id_record ) . ' UNION SELECT `id` FROM `co_documenti` WHERE `idcausalet`=' . prepare ( $id_record ));
2018-03-27 23:59:20 +02:00
if ( isset ( $id_record ) && empty ( $documenti )) {
2017-08-04 16:28:16 +02:00
$dbo -> query ( 'DELETE FROM `dt_causalet` WHERE `id`=' . prepare ( $id_record ));
2018-06-26 14:30:26 +02:00
} else {
2021-09-13 09:47:40 +02:00
$dbo -> update ( 'dt_causalet' , [
'deleted_at' => date ( 'Y-m-d H:i:s' ),
], [ 'id' => $id_record ]);
2017-08-04 16:28:16 +02:00
}
2024-02-27 11:10:40 +01:00
flash () -> info ( tr ( 'Causale di trasporto eliminata.' ));
2024-03-22 15:52:24 +01:00
2017-08-04 16:28:16 +02:00
break ;
}