2017-09-12 17:46:19 +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-09-12 17:46:19 +02:00
include_once __DIR__ . '/../../core.php' ;
2024-02-05 17:07:33 +01:00
use Modules\Anagrafiche\Nazione ;
2019-07-12 12:40:13 +02:00
use Modules\Contratti\Contratto ;
2017-09-12 17:46:19 +02:00
2019-07-12 12:40:13 +02:00
$documento = Contratto :: find ( $id_record );
2023-12-06 15:06:49 +01:00
$d_qta = ( int ) setting ( 'Cifre decimali per quantità in stampa' );
$d_importi = ( int ) setting ( 'Cifre decimali per importi in stampa' );
$d_totali = ( int ) setting ( 'Cifre decimali per totali in stampa' );
2023-12-06 10:06:36 +01:00
2019-07-12 12:40:13 +02:00
$id_cliente = $documento [ 'idanagrafica' ];
2021-07-26 17:32:07 +02:00
// Leggo i dati della destinazione (se 0=sede legale, se!=altra sede da leggere da tabella an_sedi)
$destinazione = '' ;
if ( ! empty ( $documento -> idsede )) {
$rsd = $dbo -> fetchArray ( 'SELECT (SELECT codice FROM an_anagrafiche WHERE idanagrafica=an_sedi.idanagrafica) AS codice, (SELECT ragione_sociale FROM an_anagrafiche WHERE idanagrafica=an_sedi.idanagrafica) AS ragione_sociale, nomesede, indirizzo, indirizzo2, cap, citta, provincia, piva, codice_fiscale, id_nazione FROM an_sedi WHERE idanagrafica=' . prepare ( $id_cliente ) . ' AND id=' . prepare ( $documento -> idsede ));
if ( ! empty ( $rsd [ 0 ][ 'nomesede' ])) {
$destinazione .= $rsd [ 0 ][ 'nomesede' ] . '<br/>' ;
}
if ( ! empty ( $rsd [ 0 ][ 'indirizzo' ])) {
$destinazione .= $rsd [ 0 ][ 'indirizzo' ] . '<br/>' ;
}
if ( ! empty ( $rsd [ 0 ][ 'indirizzo2' ])) {
$destinazione .= $rsd [ 0 ][ 'indirizzo2' ] . '<br/>' ;
}
if ( ! empty ( $rsd [ 0 ][ 'cap' ])) {
$destinazione .= $rsd [ 0 ][ 'cap' ] . ' ' ;
}
if ( ! empty ( $rsd [ 0 ][ 'citta' ])) {
$destinazione .= $rsd [ 0 ][ 'citta' ];
}
if ( ! empty ( $rsd [ 0 ][ 'provincia' ])) {
$destinazione .= ' (' . $rsd [ 0 ][ 'provincia' ] . ')' ;
}
if ( ! empty ( $rsd [ 0 ][ 'id_nazione' ])) {
2024-02-05 17:07:33 +01:00
$nazione = Nazione :: find ( $rsd [ 0 ][ 'id_nazione' ]);
2021-07-26 17:32:07 +02:00
if ( $nazione [ 'iso2' ] != 'IT' ) {
2024-02-05 17:07:33 +01:00
$destinazione .= ' - ' . $nazione -> name ;
2021-07-26 17:32:07 +02:00
}
}
}