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' ;
2019-05-29 19:17:57 +02:00
/**
* Funzione per aggiornare le sedi nei movimenti di magazzino .
*/
2019-06-04 20:45:40 +02:00
function aggiorna_sedi_movimenti ( $module , $id )
{
2019-05-29 19:17:57 +02:00
$dbo = database ();
2019-06-04 20:45:40 +02:00
if ( $module == 'ddt' ) {
2019-05-29 19:17:57 +02:00
$rs = $dbo -> fetchArray ( 'SELECT idsede_partenza, idsede_destinazione, dir FROM dt_ddt INNER JOIN dt_tipiddt ON dt_tipiddt.id = dt_ddt.idtipoddt WHERE dt_ddt.id=' . prepare ( $id ));
2021-02-05 13:27:18 +01:00
$idsede = ( $rs [ 0 ][ 'dir' ] == 'uscita' ) ? $rs [ 0 ][ 'idsede_destinazione' ] : $rs [ 0 ][ 'idsede_partenza' ];
2019-06-04 20:45:40 +02:00
2021-02-05 16:05:45 +01:00
$dbo -> query ( 'UPDATE mg_movimenti SET idsede=' . prepare ( $idsede ) . ' WHERE reference_type=' . prepare ( 'Modules\DDT\DDT' ) . ' AND reference_id=' . prepare ( $id ));
2019-06-04 20:45:40 +02:00
} elseif ( $module == 'documenti' ) {
2019-05-29 19:17:57 +02:00
$rs = $dbo -> fetchArray ( 'SELECT idsede_partenza, idsede_destinazione, dir FROM co_documenti INNER JOIN co_tipidocumento ON co_tipidocumento.id = co_documenti.idtipodocumento WHERE co_documenti.id=' . prepare ( $id ));
2021-02-05 13:27:18 +01:00
$idsede = ( $rs [ 0 ][ 'dir' ] == 'uscita' ) ? $rs [ 0 ][ 'idsede_destinazione' ] : $rs [ 0 ][ 'idsede_partenza' ];
2019-06-04 20:45:40 +02:00
2021-02-05 16:05:45 +01:00
$dbo -> query ( 'UPDATE mg_movimenti SET idsede=' . prepare ( $idsede ) . ' WHERE reference_type=' . prepare ( 'Modules\Fatture\Fattura' ) . ' AND reference_id=' . prepare ( $id ));
2019-06-04 20:45:40 +02:00
} elseif ( $module == 'interventi' ) {
2019-05-29 19:17:57 +02:00
$rs = $dbo -> fetchArray ( 'SELECT idsede_partenza, idsede_destinazione FROM in_interventi WHERE in_interventi.id=' . prepare ( $id ));
2021-02-05 13:27:18 +01:00
$idsede = $rs [ 0 ][ 'idsede_partenza' ];
2019-05-29 19:17:57 +02:00
2021-02-05 16:05:45 +01:00
$dbo -> query ( 'UPDATE mg_movimenti SET idsede=' . prepare ( $idsede ) . ' WHERE reference_type=' . prepare ( 'Modules\Interventi\Intervento' ) . ' AND reference_id=' . prepare ( $id ));
2019-05-29 19:17:57 +02:00
}
}