2017-08-04 16:28:16 +02:00
< ? php
include_once __DIR__ . '/../../core.php' ;
include_once $docroot . '/modules/interventi/modutil.php' ;
2017-09-07 16:51:14 +02:00
$report_name = 'intervento_' . $idintervento . '.pdf' ;
2017-08-04 16:28:16 +02:00
/*
Dati intervento
*/
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< table class = " table_values " cellspacing = " 0 " cellpadding = " 0 " style = " table-layout:fixed; " >
< col width = " 400 " >< col width = " 310 " >
< tr >
< td align = " left " >
2017-09-04 12:02:29 +02:00
'.tr(' Cliente ').' : < b > '.$c_codiceanagrafica.' '.$c_ragionesociale.' </ b >< br >
'.tr(' Indirizzo ').' : < b > '.$c_indirizzo.' - '.$c_cap.' '.$c_citta.' ( '.strtoupper($c_provincia).' ) </ b >< br >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " left " >
2017-09-04 12:02:29 +02:00
'.tr(' Referente ').' : < b > '.$referente.' </ b > ' ;
2017-08-04 16:28:16 +02:00
if ( $c_telefono != '' ) {
2017-09-07 16:51:14 +02:00
echo '
2017-09-04 12:02:29 +02:00
< br > '.tr(' Telefono azienda ').' : < b > '.$c_telefono.' </ b > ' ;
2017-08-04 16:28:16 +02:00
}
if ( $c_email != '' ) {
2017-09-07 16:51:14 +02:00
echo '
2017-09-04 12:02:29 +02:00
< br > '.tr(' Email ').' : < b > '.$c_email.' </ b > ' ;
2017-08-04 16:28:16 +02:00
}
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
</ td >
</ tr > ' ;
// Richiesta
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr >
2017-09-04 12:02:29 +02:00
< td align = " left " colspan = " 2 " valign = " top " >< b > '.tr(' Richiesta ').' :</ b ></ td >
2017-08-04 16:28:16 +02:00
</ tr >
< tr >
< td colspan = " 2 " align = " left " valign = " top " style = " height:5mm; " > '.nl2br($records[0][' richiesta ']).' </ td >
</ tr > ' ;
// Descrizione
if ( $records [ 0 ][ 'descrizione_intervento' ] != '' ) {
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr >
2017-09-04 12:02:29 +02:00
< td colspan = " 2 " align = " left " valign = " top " >< b > '.tr(' Descrizione ').' :</ b ></ td >
2017-08-04 16:28:16 +02:00
</ tr >
< tr >
< td colspan = " 2 " valign = " top " align = " left " style = " height:5mm; " > '.nl2br($records[0][' descrizione_intervento ']).' </ td >
</ tr > ' ;
}
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
</ table > ' ;
$totale = [];
// MATERIALE UTILIZZATO
// Conteggio articoli utilizzati
2017-09-05 17:31:58 +02:00
$rs2 = $dbo -> fetchArray ( 'SELECT *, (SELECT codice FROM mg_articoli WHERE id=idarticolo) AS codice_art, SUM(qta) AS sumqta FROM `mg_articoli_interventi` HAVING idintervento=' . prepare ( $idintervento ) . " AND NOT idarticolo='0' ORDER BY idarticolo ASC " );
2017-08-04 16:28:16 +02:00
if ( ! empty ( $rs2 )) {
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< table class = " table_values " cellspacing = " 0 " cellpadding = " 0 " style = " font-size:11px; table-layout:fixed; border-color:#aaa; " >
< col width = " 90 " >< col width = " 254 " >< col width = " 54 " >< col width = " 80 " >< col width = " 80 " >< col width = " 80 " >
< tr >
< td align = " center " colspan = " 6 " valign = " middle " style = " font-size:11pt; " bgcolor = " #cccccc " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Materiale utilizzato ')).' </ b >
2017-08-04 16:28:16 +02:00
</ td >
</ tr >
< tr >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Codice ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Descrizione ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Q . tà ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Prezzo listino ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Sconto ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Subtot . netto ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
</ tr > ' ;
$totale_articoli = [];
foreach ( $rs2 as $r ) {
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr > ' ;
// Codice
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td valign = " top " >
'.$r[' codice_art '].'
</ td > ' ;
// Descrizione
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td valign = " top " >
'.$r[' descrizione '].'
</ td > ' ;
// Quantità
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " center " valign = " top " >
'.Translator::numberToLocale($r[' sumqta '], 2).' '.$r[' um '].'
</ td > ' ;
// Prezzo unitario
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " right " valign = " top " >
'.($visualizza_costi ? Translator::numberToLocale($r[' prezzo_vendita '], 2).' & euro ; ' : ' - ').'
</ td > ' ;
// Sconto unitario
if ( $r [ 'sconto_unitario' ] > 0 ) {
$sconto = Translator :: numberToLocale ( $r [ 'sconto_unitario' ]) . ( $r [ 'tipo_sconto' ] == 'PRC' ? '%' : ' €' );
} else {
$sconto = '-' ;
}
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " center " valign = " top " >
'.($visualizza_costi ? $sconto : ' - ').'
</ td > ' ;
// Netto
$netto = ( $r [ 'prezzo_vendita' ] - $r [ 'sconto' ]) * $r [ 'sumqta' ];
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " right " valign = " top " >
'.($visualizza_costi ? Translator::numberToLocale($netto, 2) : ' - ').'
</ td >
</ tr > ' ;
// Totale
$totale_articoli [] = $netto ;
}
$totale_articoli = sum ( $totale_articoli );
$totale [] = $totale_articoli ;
// Totale spesa articoli
if ( $visualizza_costi ) {
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr >
< td colspan = " 5 " align = " right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Totale materiale utilizzato ')).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " bgcolor = " #dddddd " >
< b > '.Translator::numberToLocale($totale_articoli, 2).' & euro ; </ b >
</ td >
</ tr > ' ;
}
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
</ table > ' ;
}
// FINE MATERIALE UTILIZZATO
// Conteggio SPESE AGGIUNTIVE
$rs2 = $dbo -> fetchArray ( 'SELECT * FROM in_righe_interventi WHERE idintervento=' . prepare ( $idintervento ) . ' ORDER BY id ASC' );
if ( ! empty ( $rs2 )) {
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< table class = " table_values " cellspacing = " 0 " cellpadding = " 0 " style = " table-layout:fixed; border-color:#aaa; font-size:11px; " >
< col width = " 90 " >< col width = " 254 " >< col width = " 54 " >< col width = " 80 " >< col width = " 80 " >< col width = " 80 " >
< tr >
< td align = " center " colspan = " 6 " valign = " middle " style = " font-size:11pt; " bgcolor = " #cccccc " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Spese aggiuntive ')).' </ b >
2017-08-04 16:28:16 +02:00
</ td >
</ tr >
< tr >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
< b ></ b >
</ td >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Descrizione ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Q . tà ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Prezzo listino ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Sconto ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Subtot . netto ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
</ tr > ' ;
$totale_righe = [];
foreach ( $rs2 as $r ) {
// Articolo
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr >
< td ></ td >
< td >
'.nl2br($r[' descrizione ']).'
</ td > ' ;
// Quantità
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " center " >
'.Translator::numberToLocale($r[' qta '], 2).'
</ td > ' ;
// Prezzo unitario
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " right " valign = " top " >
'.($visualizza_costi ? Translator::numberToLocale($r[' prezzo_vendita '], 2).' & euro ; ' : ' - ').'
</ td > ' ;
// Sconto unitario
if ( $r [ 'sconto_unitario' ] > 0 ) {
$sconto = Translator :: numberToLocale ( $r [ 'sconto_unitario' ]) . ( $r [ 'tipo_sconto' ] == 'PRC' ? '%' : ' €' );
} else {
$sconto = '-' ;
}
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " center " valign = " top " >
'.($visualizza_costi ? $sconto : ' - ').'
</ td > ' ;
// Prezzo totale
$netto = ( $r [ 'prezzo_vendita' ] - $r [ 'sconto' ]) * $r [ 'qta' ];
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " right " valign = " top " >
'.($visualizza_costi ? Translator::numberToLocale($netto, 2) : ' - ').'
</ td >
</ tr > ' ;
// Subtot
$totale_righe [] = $netto ;
}
$totale_righe = sum ( $totale_righe );
$totale [] = $totale_righe ;
if ( $visualizza_costi ) {
// Totale spese aggiuntive
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr >
< td colspan = " 5 " align = " right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Totale spese aggiuntive ')).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " bgcolor = " #dddddd " >
< b > '.Translator::numberToLocale($totale_righe, 2).' & euro ; </ b >
</ td >
</ tr > ' ;
}
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
</ table > ' ;
}
// FINE SPESE AGGIUNTIVE
// ORE TECNICI + FIRMA
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< table class = " table_values " cellspacing = " 0 " cellpadding = " 0 " style = " table-layout:fixed; " >
< col width = " 362 " >< col width = " 80 " >< col width = " 70 " >< col width = " 70 " >< col width = " 74 " >
< tr >
< td align = " center " colspan = " 5 " valign = " middle " style = " font-size:11pt; " bgcolor = " #cccccc " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Ore tecnici ')).' </ b >
2017-08-04 16:28:16 +02:00
</ td >
</ tr > ' ;
// INTESTAZIONE ELENCO TECNICI
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr >
< td align = " center " style = " font-size:8pt; " bgcolor = " #dddddd " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Tecnico ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " center " style = " font-size:8pt; " bgcolor = " #dddddd " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Data ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " center " style = " font-size:8pt; " bgcolor = " #dddddd " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Dalle ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " center " style = " font-size:8pt; " bgcolor = " #dddddd " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Alle ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " center " style = " font-size:8pt; " bgcolor = " #dddddd " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Sconto ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
</ tr > ' ;
// Sessioni di lavoro dei tecnici
$rst = $dbo -> fetchArray ( 'SELECT an_anagrafiche.*, in_interventi_tecnici.* FROM in_interventi_tecnici JOIN an_anagrafiche ON in_interventi_tecnici.idtecnico=an_anagrafiche.idanagrafica WHERE in_interventi_tecnici.idintervento=' . prepare ( $idintervento ) . ' ORDER BY in_interventi_tecnici.orario_inizio' );
$totale_ore = 0 ;
$totale_costo_ore = 0 ;
$totale_costo_km = 0 ;
$totale_sconto = 0 ;
$totale_sconto_km = 0 ;
$totale_manodopera = 0 ;
$totale_viaggio = 0 ;
foreach ( $rst as $r ) {
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr > ' ;
// nome tecnico
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " left " >
'.$r[' ragione_sociale '].'
</ td > ' ;
// data
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " center " >
'.Translator::dateToLocale($r[' orario_inizio '], ' - ').'
</ td > ' ;
// ora inizio
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " center " >
'.Translator::timeToLocale($r[' orario_inizio '], ' - ').'
</ td > ' ;
// ora fine
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " center " >
'.Translator::timeToLocale($r[' orario_fine '], ' - ').'
</ td > ' ;
// Sconto
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " center " >
'.($r[' sconto_unitario '] > 0 ? Translator::numberToLocale($r[' sconto_unitario ']).($r[' tipo_sconto '] == ' PRC ' ? ' % ' : ' & euro ; ') : ' - ').'
</ td >
</ tr > ' ;
$totale_ore += $r [ 'ore' ];
$totale_km += $r [ 'km' ];
$totale_costo_ore = sum ( $totale_costo_ore , $r [ 'prezzo_ore_consuntivo' ]);
$totale_sconto = sum ( $totale_sconto , $r [ 'sconto' ]);
$totale_costo_km = sum ( $totale_costo_km , $r [ 'prezzo_km_consuntivo' ]);
$totale_sconto_km = sum ( $totale_sconto_km , $r [ 'scontokm' ]);
}
$totale_manodopera = sum ( $totale_costo_ore , - $totale_sconto );
$totale_viaggio = sum ( $totale_costo_km , - $totale_sconto_km );
$totale_intervento = sum ( $totale_manodopera , $totale_viaggio );
$totale [] = $totale_intervento ;
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
</ table > ' ;
// ore lavorate
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< table class = " table_values " cellspacing = " 0 " cellpadding = " 0 " style = " table-layout:fixed; font-size:11px; " >
< col width = " 90 " >< col width = " 326 " >< col width = " 80 " >< col width = " 80 " >< col width = " 80 " >
< tr >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " ></ td >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Descrizione ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Q . tà ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Prezzo listino ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
< td style = " font-size:8pt; " align = " center " bgcolor = " #dedede " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Subtot . netto ').' </ b >
2017-08-04 16:28:16 +02:00
</ td >
</ tr > ' ;
// Ore lavoro
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr >
< td ></ td >
< td >
2017-09-04 12:02:29 +02:00
'.tr(' Ore tecnici ').'
2017-08-04 16:28:16 +02:00
</ td >
< td align = " center " >
'.Translator::numberToLocale($totale_ore, 2).' ore
</ td > ' ;
if ( $visualizza_costi ) {
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " right " >
'.Translator::numberToLocale($totale_costo_ore, 2).' & euro ;
</ td >
< td align = " right " >
'.Translator::numberToLocale($totale_manodopera, 2).' & euro ;
</ td > ' ;
} else {
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " right " >-</ td >
< td align = " right " >-</ td > ' ;
}
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
</ tr > ' ;
// Ore di viaggio
if ( $totale_km > 0 ) {
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr >
< td ></ td >
< td >
2017-09-04 12:02:29 +02:00
'.tr(' Km / viaggio ').'
2017-08-04 16:28:16 +02:00
</ td >
< td align = " center " >
'.Translator::numberToLocale($totale_km, 2).' km
</ td > ' ;
if ( $visualizza_costi ) {
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " right " >
'.Translator::numberToLocale($totale_costo_km, 2).' & euro ;
</ td >
< td align = " right " >
'.Translator::numberToLocale($totale_viaggio, 2).' & euro ;
</ td > ' ;
} else {
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< td align = " right " >-</ td >
< td align = " right " >-</ td > ' ;
}
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
</ tr > ' ;
}
// Subtotale manodopera + viaggio
if ( $visualizza_costi ) {
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr >
< td colspan = " 4 " align = " right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Totale intervento ')).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " bgcolor = " #dddddd " >
< b > '.Translator::numberToLocale($totale_intervento, 2).' & euro ; </ b >
</ td >
</ tr > ' ;
}
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
</ table > ' ;
$totale = sum ( $totale );
// TOTALE COSTI FINALI
if ( $visualizza_costi ) {
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< br >
< nobreak >
< table class = " table_values " cellspacing = " 0 " cellpadding = " 0 " style = " table-layout:fixed; font-size:11px; " >
< col width = " 630 " >< col width = " 80 " > ' ;
// Totale imponibile
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr >
< td valign = " middle " align = " right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Imponibile ')).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " bgcolor = " #cccccc " >
< b > '.Translator::numberToLocale($totale, 2).' & euro ; </ b >
</ td >
</ tr > ' ;
// Eventuale sconto incondizionato
if ( $records [ 0 ][ 'sconto_globale' ] > 0 ) {
$prc = ( $records [ 0 ][ 'tipo_sconto' ] == 'PRC' );
$records [ 0 ][ 'sconto_globale' ] = $prc ? $totale * $records [ 0 ][ 'sconto_globale' ] / 100 : $records [ 0 ][ 'sconto_globale' ];
$sconto = Translator :: numberToLocale ( $records [ 0 ][ 'sconto_globale' ], ( $prc ? 0 : 2 )) . ( $prc ? '%' : '€' );
$totale = sum ( $totale , - $records [ 0 ][ 'sconto_globale' ]);
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr >
< td valign = " middle " align = " right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Sconto incondizionato ')).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " bgcolor = " #cccccc " >
< b >- '.Translator::numberToLocale($sconto, 2).' & euro ; </ b >
</ td >
</ tr > ' ;
// Imponibile scontato
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr >
< td valign = " middle " align = " right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Imponibile scontato ')).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " bgcolor = " #cccccc " >
< b > '.Translator::numberToLocale($totale, 2).' & euro ; </ b >
</ td >
</ tr > ' ;
}
// Leggo iva da applicare
$q1 = 'SELECT percentuale FROM co_iva WHERE id=' . prepare ( get_var ( 'Iva predefinita' ));
$rs1 = $dbo -> fetchArray ( $q1 );
$percentuale_iva = $rs1 [ 0 ][ 'percentuale' ];
$iva = ( $totale / 100 * $percentuale_iva );
// IVA
// Totale intervento
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr >
< td valign = " middle " align = " right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Iva ')).' ( '.Translator::numberToLocale($percentuale_iva, 0).' % ) :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " bgcolor = " #cccccc " >
< b > '.Translator::numberToLocale($iva, 2).' & euro ; </ b >
</ td >
</ tr > ' ;
$totale = sum ( $totale , $iva );
// TOTALE INTERVENTO
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr >
< td valign = " middle " align = " right " >
2017-09-04 12:02:29 +02:00
< b > '.strtoupper(tr(' Totale intervento ')).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " bgcolor = " #cccccc " >
< b > '.Translator::numberToLocale($totale, 2).' & euro ; </ b >
</ td >
</ tr >
</ table >
</ nobreak > ' ;
}
// timbro e firma
if ( $records [ 0 ][ 'firma_file' ] != '' ) {
$firma = '<img src="' . $docroot . '/files/interventi/' . $records [ 0 ][ 'firma_file' ] . '" style="width:70mm;">' ;
} else {
$firma = '' ;
}
2017-09-07 16:51:14 +02:00
echo '
2017-08-04 16:28:16 +02:00
< br >
< table border = " 0 " cellspacing = " 0 " cellpadding = " 0 " style = " table-layout:fixed; " >
< col width = " 454 " >< col width = " 280 " >
< tr >
< td align = " left " valign = " middle " >
2017-09-04 12:02:29 +02:00
< b > '.tr(' Si dichiara che i lavori sono stati eseguiti ed i materiali installati ').' .</ b >< br >
'.tr(' I dati del ricevente verrano trattati in base al D . lgs n . 196 / 2003 ').' .
2017-08-04 16:28:16 +02:00
</ td >
< td align = " center " valign = " bottom " style = " border:1px solid #888; height:20mm; font-size:8pt; " >
'.$firma.' < br >
2017-09-04 12:02:29 +02:00
< i > ( '.tr(' Timbro e firma leggibile ').' . ) </ i >
2017-08-04 16:28:16 +02:00
</ td >
</ tr >
</ table > ' ;