fetchArray( $q ); $idcliente = $rsmovimento[0]['idanagrafica']; $tipo_doc = $rsmovimento[0]['tipo_doc']; //carica report html $report = file_get_contents ($docroot."/templates/movimento/movimento.html"); $body = file_get_contents ($docroot."/templates/movimento/movimento_body.html"); include_once( "pdfgen_variables.php" ); //Lettura nome referenti collegati all'anagrafica $query = "SELECT * FROM an_referenti WHERE id = ".$rsmovimento[0]['idreferente']; $rs = $dbo->fetchArray( $query ); $nome_referente = $rs[0]['nome']; // Tabella intestazione $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; if ($nome_referente!=""){ $body .= "\n"; $body .= "\n"; } $body .= "\n"; $body .= "\n"; $body .= "
\n"; $body .= "$tipo_doc No ".$rsmovimento[0]['numero']."
\n"; $body .= "del ".date( "d/m/Y", strtotime($rsmovimento[0]['data']) )."\n"; $body .= "
\n"; if ($c_cap!=""){ $c_cap = $c_cap." "; } if ($c_provincia!=""){ $c_provincia = " (".$c_provincia.")"; } $body .= "Spettabile
".$c_ragionesociale."
".$c_indirizzo."
".$c_cap.$c_citta.$c_provincia."
P.Iva: ".$c_piva."
\n"; $body .= "
\n"; $body .= "C.A. ".$nome_referente."\n"; $body .= "
\n"; $body .= "".str_replace( "\n", "
", $rsmovimento[0]['cdescrizione'] )."


\n"; $body .= "
\n"; /* TABELLA COSTI */ $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; $cifredecimali = get_var("Cifre decimali"); //ARTICOLI $q_art = "SELECT *, IFNULL((SELECT codice FROM mg_articoli WHERE id=idarticolo),'') AS codice, (SELECT descrizione FROM co_iva WHERE id=idiva) AS desc_iva FROM `co_righe_documenti` WHERE iddocumento='$idmovimento' ORDER BY id ASC"; $rs_art = $dbo->fetchArray( $q_art ); $tot_art = sizeof($rs_art); $imponibile_articoli = 0.0; $totale_iva = 0.0; $totale_sconto = 0.0; for( $i=0; $i<$tot_art; $i++ ){ //descrizione $body .= "\n"; //q.tà $body .= "\n"; //Costo unitario $body .= "\n"; $body .= "\n"; //Imponibile $body .= "\n"; $imponibile_articoli += $rs_art[$i]['subtotale']; $totale_iva += $iva; } //SCONTO if( abs($totale_sconto) > 0 ){ $body .= "\n"; $body .= "\n"; } //Totale iva $body .= "\n"; $body .= "\n"; //Totale iva $body .= "\n"; $body .= "\n"; //Totale complessivo movimento $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "
DescrizioneQ.tàCosto U.IvaImponibile
\n"; if( $rs_art[$i]['codice']!='' ) $body .= $rs_art[$i]['codice']." - "; $body .= nl2br($rs_art[$i]['descrizione']); $body .= "\n"; $qta = $rs_art[$i]['qta']; $body .= number_format($rs_art[$i]['qta'], $cifredecimali, ",", "")."\n"; if( $rs_art[$i]['um']!='' ) $body .= "
\n".$rs_art[$i]['um']."\n"; $body .= "
\n"; if( $show_costi == 1){ $body .= number_format( $rs_art[$i]['subtotale']/$rs_art[$i]['qta'], $cifredecimali, ",", "" )." €\n"; if( $rs_art[$i]['sconto']>0 ) $body .= "
\n- sconto ".number_format( $rs_art[$i]['sconto'], 2, ",", "." )." €\n"; } else { $body .= "-"; } // $totale_sconto += ($rs_art[$i]['sconto']*$qta); $totale_sconto += $rs_art[$i]['sconto']; $body .= "
\n"; $iva = $rs_art[$i]['iva']; $body .= number_format( $iva, 2, ",", "" )." €
".$rs_art[$i]['desc_iva']."\n"; $body .= "
\n"; if( $show_costi == 1 ){ $body .= number_format( $rs_art[$i]['subtotale']-($qta*$rs_art[$i]['sconto']) , $cifredecimali, ",", "." )." €\n"; } else { $body .= "-"; } $body .= "
\n"; $body .= " SCONTO:\n"; $body .= "\n"; $body .= " - ".number_format( $totale_sconto, get_var("Cifre decimali"), ",", "." )." €\n"; $body .= "
\n"; $body .= " TOTALE IMPONIBILE:\n"; $body .= "\n"; $body .= " ".number_format( ($imponibile_articoli-$totale_sconto), $cifredecimali, ",", ".")." €\n"; $body .= "
\n"; $body .= " TOTALE IVA:\n"; $body .= "\n"; $body .= "".number_format( $totale_iva , $cifredecimali, ",", ".")." €\n"; $body .= "
\n"; $body .= "TOTALE MOVIMENTATO: \n"; $body .= "\n"; $body .= "".number_format( ($imponibile_articoli-$totale_sconto)+$totale_iva , $cifredecimali, ",", ".")." €\n"; $body .= "


\n"; $rsmovimento[0]['idpagamento']; $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= "\n"; $body .= " \n"; $body .= "\n"; $body .= "
\n"; $body .= "Note fisse movimento\n"; $body .= "
\n"; $body .= "
\n"; $body .= "
$dicitura_fissa_fattura\n"; $body .= "
\n"; $report_name = "movimento".$idmovimento.".pdf"; ?>