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-02-16 16:32:19 +01:00
use Modules\Pagamenti\Pagamento ;
2017-08-04 16:28:16 +02:00
switch ( filter ( 'op' )) {
case 'update' :
$descrizione = filter ( 'descrizione' );
2024-02-16 16:32:19 +01:00
$id_pagamento = ( new Pagamento ()) -> getByName ( $descrizione ) -> id_record ;
2017-08-04 16:28:16 +02:00
if ( isset ( $descrizione )) {
2018-07-19 15:33:32 +02:00
foreach ( post ( 'id' ) as $key => $id ) {
2017-08-04 16:28:16 +02:00
// Data fatturazione
$giorno = 0 ;
// Data fatturazione fine mese
2018-07-19 15:33:32 +02:00
if ( post ( 'scadenza' )[ $key ] == 2 ) {
2017-08-04 16:28:16 +02:00
$giorno = - 1 ;
}
// Data fatturazione giorno fisso
2018-07-19 15:33:32 +02:00
if ( post ( 'scadenza' )[ $key ] == 3 ) {
$giorno = post ( 'giorno' )[ $key ];
2017-08-04 16:28:16 +02:00
}
// Data fatturazione fine mese (giorno fisso)
2018-07-19 15:33:32 +02:00
elseif ( post ( 'scadenza' )[ $key ] == 4 ) {
$giorno = - post ( 'giorno' )[ $key ] - 1 ;
2017-08-04 16:28:16 +02:00
}
$array = [
2018-07-19 15:33:32 +02:00
'num_giorni' => post ( 'distanza' )[ $key ],
2017-08-04 16:28:16 +02:00
'giorno' => $giorno ,
2018-07-19 15:33:32 +02:00
'prc' => post ( 'percentuale' )[ $key ],
2022-06-03 16:23:14 +02:00
'idconto_vendite' => post ( 'idconto_vendite' ) ? : null ,
'idconto_acquisti' => post ( 'idconto_acquisti' ) ? : null ,
2018-10-04 17:37:28 +02:00
'codice_modalita_pagamento_fe' => post ( 'codice_modalita_pagamento_fe' ),
2017-08-04 16:28:16 +02:00
];
2024-02-16 16:32:19 +01:00
if ( $id_pagamento ) {
flash () -> error ( tr ( 'Esiste più un metodo di pagamento con questo nome!' ));
break ;
2017-08-04 16:28:16 +02:00
} else {
2024-02-16 16:32:19 +01:00
if ( ! empty ( $id )) {
$dbo -> update ( 'co_pagamenti_lang' , [ 'name' => $descrizione ], [ 'id' => $id , 'id_lang' => setting ( 'Lingua' )]);
$dbo -> update ( 'co_pagamenti' , $array , [ 'id' => $id_record ]);
} else {
$dbo -> INSERT ( 'co_pagamenti' , $array );
$dbo -> INSERT ( 'co_pagamenti_lang' , [ 'name' => $descrizione , 'id_record' => $id , 'id_lang' => setting ( 'Lingua' )]);
}
2017-08-04 16:28:16 +02:00
}
}
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
}
break ;
case 'add' :
$descrizione = filter ( 'descrizione' );
2018-10-25 16:57:39 +02:00
$codice_modalita_pagamento_fe = filter ( 'codice_modalita_pagamento_fe' );
2017-08-04 16:28:16 +02:00
if ( isset ( $descrizione )) {
2024-02-16 16:32:19 +01:00
$id_pagamento = ( new Pagamento ()) -> getByName ( $descrizione ) -> id_record ;
2017-08-04 16:28:16 +02:00
2024-02-22 17:03:48 +01:00
if ( $id_pagamento ) {
2024-02-16 16:32:19 +01:00
flash () -> error ( tr ( 'Esiste già un metodo di pagamento con questo nome!' ));
} else {
$dbo -> query ( 'INSERT INTO `co_pagamenti` (`codice_modalita_pagamento_fe`, `prc` ) VALUES (' . prepare ( $codice_modalita_pagamento_fe ) . ', 100 )' );
$id_record = $dbo -> lastInsertedID ();
$dbo -> query ( 'INSERT INTO `co_pagamenti_lang` (`name`, `id_record`, `id_lang`) VALUES (' . prepare ( $descrizione ) . ', ' . prepare ( $id_record ) . ', ' . prepare ( setting ( 'Lingua' )) . ')' );
flash () -> info ( tr ( 'Aggiunta nuova tipologia di _TYPE_' , [
'_TYPE_' => 'pagamento' ,
]));
}
2017-08-04 16:28:16 +02:00
}
break ;
case 'delete' :
2018-03-28 17:04:10 +02:00
if ( ! empty ( $id_record )) {
$dbo -> query ( 'DELETE FROM `co_pagamenti` WHERE `id`=' . prepare ( $id_record ));
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_' => 'pagamento' ,
2018-07-07 13:56:22 +02:00
]));
2017-08-04 16:28:16 +02:00
}
break ;
case 'delete_rata' :
$id = filter ( 'id' );
if ( isset ( $id )) {
$dbo -> query ( 'DELETE FROM `co_pagamenti` WHERE `id`=' . prepare ( $id ));
2018-07-19 17:29:21 +02:00
flash () -> info ( tr ( 'Elemento eliminato con successo!' ));
2017-08-04 16:28:16 +02:00
if ( $id_record == $id ) {
2024-02-08 13:10:46 +01:00
$res = $dbo -> fetchArray ( 'SELECT * FROM `co_pagamenti` LEFT JOIN `co_pagamenti_lang` WHERE `co_pagamenti`.`id`!=' . prepare ( $id ) . ' AND `name`=' . prepare ( $record [ 'descrizione' ]));
2017-08-04 16:28:16 +02:00
if ( count ( $res ) != 0 ) {
2020-09-23 17:53:19 +02:00
redirect ( base_path () . '/editor.php?id_module=' . $id_module . '&id_record=' . $res [ 0 ][ 'id' ]);
2017-08-04 16:28:16 +02:00
} else {
// $_POST['backto'] = 'record-list';
2020-09-23 17:53:19 +02:00
redirect ( base_path () . '/controller.php?id_module=' . $id_module );
2017-08-04 16:28:16 +02:00
}
}
}
break ;
}