2018-02-19 17:48:04 +01: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 />.
*/
2018-02-19 17:48:04 +01:00
2019-03-29 12:46:17 +01:00
use Modules\DDT\DDT ;
2018-02-19 17:48:04 +01:00
include_once __DIR__ . '/../../core.php' ;
// Info contratto
2019-03-29 12:46:17 +01:00
$documento = DDT :: find ( $id_record );
2019-05-24 20:42:15 +02:00
$dir = $documento -> direzione ;
2018-02-19 17:48:04 +01:00
// Impostazioni per la gestione
$options = [
2019-07-23 15:39:00 +02:00
'op' => 'manage_riga' ,
2018-02-19 17:48:04 +01:00
'action' => 'add' ,
2019-03-29 12:46:17 +01:00
'dir' => $documento -> direzione ,
'idanagrafica' => $documento [ 'idanagrafica' ],
2020-09-29 15:27:00 +02:00
'totale_imponibile_documento' => $documento -> totale_imponibile ,
'totale_documento' => $documento -> totale ,
2020-08-17 16:25:01 +02:00
'select-options' => [
'articoli' => [
'idanagrafica' => $documento -> idanagrafica ,
'dir' => $documento -> direzione ,
'idsede_partenza' => $documento -> idsede_partenza ,
'idsede_destinazione' => $documento -> idsede_destinazione ,
2020-08-18 09:53:58 +02:00
'permetti_movimento_a_zero' => intval ( $documento -> direzione == 'uscita' ),
2020-08-17 16:25:01 +02:00
],
],
2018-02-19 17:48:04 +01:00
];
// Dati di default
$result = [
'descrizione' => '' ,
'qta' => 1 ,
'um' => '' ,
'prezzo' => 0 ,
'sconto_unitario' => 0 ,
'tipo_sconto' => '' ,
'idiva' => '' ,
];
// Leggo l'iva predefinita per l'anagrafica e se non c'è leggo quella predefinita generica
2019-03-29 12:46:17 +01:00
$iva = $dbo -> fetchArray ( 'SELECT idiva_' . ( $dir == 'uscita' ? 'acquisti' : 'vendite' ) . ' AS idiva FROM an_anagrafiche WHERE idanagrafica=' . prepare ( $documento [ 'idanagrafica' ]));
2018-07-08 18:11:17 +02:00
$result [ 'idiva' ] = $iva [ 0 ][ 'idiva' ] ? : setting ( 'Iva predefinita' );
2018-02-19 17:48:04 +01:00
// Importazione della gestione dedicata
$file = 'riga' ;
2018-07-19 15:33:32 +02:00
if ( get ( 'is_descrizione' ) !== null ) {
2018-02-19 17:48:04 +01:00
$file = 'descrizione' ;
2019-07-23 15:39:00 +02:00
$options [ 'op' ] = 'manage_descrizione' ;
2018-07-19 15:33:32 +02:00
} elseif ( get ( 'is_articolo' ) !== null ) {
2018-02-19 17:48:04 +01:00
$file = 'articolo' ;
2019-07-11 17:20:58 +02:00
// Aggiunta sconto di default da listino per le vendite
$listino = $dbo -> fetchOne ( 'SELECT prc_guadagno FROM an_anagrafiche INNER JOIN mg_listini ON an_anagrafiche.idlistino_vendite=mg_listini.id WHERE idanagrafica=' . prepare ( $documento [ 'idanagrafica' ]));
if ( ! empty ( $listino [ 'prc_guadagno' ])) {
2020-02-15 14:11:44 +01:00
$result [ 'sconto_percentuale' ] = $listino [ 'prc_guadagno' ];
2019-07-11 17:20:58 +02:00
$result [ 'tipo_sconto' ] = 'PRC' ;
}
2019-07-23 15:39:00 +02:00
$options [ 'op' ] = 'manage_articolo' ;
2019-03-29 12:46:17 +01:00
} elseif ( get ( 'is_sconto' ) !== null ) {
$file = 'sconto' ;
$options [ 'op' ] = 'manage_sconto' ;
2020-07-20 14:40:11 +02:00
} elseif ( get ( 'is_barcode' ) !== null ) {
$file = 'barcode' ;
$options [ 'op' ] = 'manage_barcode' ;
2018-02-19 17:48:04 +01:00
}
echo App :: load ( $file . '.php' , $result , $options );