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' ;
2024-04-19 16:44:08 +02:00
use Modules\DDT\Causale ;
2017-08-04 16:28:16 +02:00
switch ( filter ( 'op' )) {
case 'update' :
$descrizione = filter ( 'descrizione' );
if ( isset ( $descrizione )) {
2024-08-01 15:58:11 +02:00
$causale_new = Causale :: where ( 'id' , '=' , ( new Causale ()) -> getByField ( 'title' , $descrizione )) -> where ( 'id' , '!=' , $id_record ) -> first ();
2024-04-19 16:44:08 +02:00
if ( empty ( $causale_new )) {
$causale -> setTranslation ( 'title' , $descrizione );
if ( Models\Locale :: getDefault () -> id == Models\Locale :: getPredefined () -> id ) {
$causale -> name = $descrizione ;
2024-04-23 09:56:36 +02:00
}
2024-04-19 16:44:08 +02:00
$causale -> predefined = post ( 'predefined' );
$causale -> is_importabile = filter ( 'is_importabile' );
$causale -> reversed = filter ( 'reversed' );
$causale -> is_rientrabile = filter ( 'is_rientrabile' );
$causale -> save ();
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-06-14 11:32:26 +02:00
if ( empty ( Causale :: where ( 'id' , '=' , ( new Causale ()) -> getByField ( 'title' , $descrizione )) -> where ( 'id' , '!=' , $id_record ) -> first ())) {
2024-04-19 16:44:08 +02:00
$causale = Causale :: build ();
if ( Models\Locale :: getDefault () -> id == Models\Locale :: getPredefined () -> id ) {
$causale -> name = $descrizione ;
}
$causale -> save ();
2024-04-23 09:56:36 +02:00
2017-08-04 16:28:16 +02:00
$id_record = $dbo -> lastInsertedID ();
2024-04-19 16:44:08 +02:00
$causale -> setTranslation ( 'title' , $descrizione );
$causale -> save ();
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
2024-04-12 16:59:19 +02:00
if (( ! empty ( $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 ;
}