2017-09-14 16:20:11 +02:00
< ? php
//carica report html
$report = file_get_contents ( $docroot . '/templates/registro_iva/registroiva.html' );
$body = file_get_contents ( $docroot . '/templates/registro_iva/registroiva_body.html' );
include_once __DIR__ . '/../pdfgen_variables.php' ;
$dir = $_GET [ 'dir' ];
$periodo = $_GET [ 'periodo' ];
$v_iva = [];
$v_totale = [];
$totale_iva = 0 ;
$totale_subtotale = 0 ;
$date_start = $_SESSION [ 'period_start' ];
$date_end = $_SESSION [ 'period_end' ];
/*
$periodo = explode ( '-' , $periodo );
switch ( $periodo [ 0 ]) {
//anno
case 'Y' :
$date_start = $periodo [ 2 ] . '-01-01' ;
$date_end = $periodo [ 2 ] . '-12-31' ;
break ;
//mese
case 'M' :
$date_start = $periodo [ 2 ] . '-' . $periodo [ 1 ] . '-01' ;
$date_end = date ( 'Y-m-t' , strtotime ( $date_start ));
break ;
//trimestre
case 'T' :
$date_start = $periodo [ 2 ] . '-' . $periodo [ 1 ] . '-01' ;
$date_end = date ( 'Y-m-t' , strtotime ( '+2 months' , strtotime ( $date_start )));
break ;
//semestre
case 'S' :
$date_start = $periodo [ 2 ] . '-' . $periodo [ 1 ] . '-01' ;
$date_end = date ( 'Y-m-t' , strtotime ( '+5 months' , strtotime ( $date_start )));
break ;
} */
2018-07-26 14:54:30 +02:00
$query = 'SELECT *, SUM(subtotale-co_righe_documenti.sconto) AS subtotale, SUM(iva) AS iva, (SELECT ragione_sociale FROM an_anagrafiche WHERE an_anagrafiche.idanagrafica=co_documenti.idanagrafica) AS ragione_sociale FROM co_documenti INNER JOIN co_righe_documenti ON co_documenti.id=co_righe_documenti.iddocumento INNER JOIN co_tipidocumento ON co_documenti.idtipodocumento=co_tipidocumento.id WHERE dir = ' . prepare ( $dir ) . ' AND idstatodocumento NOT IN (SELECT id FROM co_statidocumento WHERE descrizione="Bozza" OR descrizione="Annullata") AND is_descrizione = 0 AND co_documenti.data >= ' . prepare ( $date_start ) . ' AND co_documenti.data <= ' . prepare ( $date_end ) . ' GROUP BY co_documenti.id, co_righe_documenti.idiva ORDER BY co_documenti.data' ;
2017-09-14 16:20:11 +02:00
$rs = $dbo -> fetchArray ( $query );
2017-09-18 18:11:19 +02:00
if ( 'entrata' == $dir ) {
2017-09-15 12:50:59 +02:00
$body .= " <span style='font-size:15pt; margin-left:6px;'><b> " . tr ( 'Registro iva vendita dal _START_ al _END_' , [
2018-07-08 15:41:38 +02:00
'_START_' => Translator :: dateToLocale ( $date_start ),
'_END_' => Translator :: dateToLocale ( $date_end ),
2017-09-15 12:50:59 +02:00
], [ 'upper' => true ]) . '</b></span><br><br>' ;
2017-09-18 18:11:19 +02:00
} elseif ( 'uscita' == $dir ) {
2017-09-15 12:50:59 +02:00
$body .= " <span style='font-size:15pt; margin-left:6px;'><b> " . tr ( 'Registro iva acquisto dal _START_ al _END_' , [
2018-07-08 15:41:38 +02:00
'_START_' => Translator :: dateToLocale ( $date_start ),
'_END_' => Translator :: dateToLocale ( $date_end ),
2017-09-15 12:50:59 +02:00
], [ 'upper' => true ]) . '</b></span><br><br>' ;
2017-09-14 16:20:11 +02:00
}
$body .= "
< table cellspacing = '0' style = 'table-layout:fixed;' >
2018-07-26 16:19:34 +02:00
< col width = '90' >< col width = '90' >< col width = '90' >< col width = '275' >< col width = '120' >< col width = '90' >< col width = '90' >< col width = '90' >
2017-09-14 16:20:11 +02:00
< thead >
< tr >
2018-07-26 16:19:34 +02:00
< th bgcolor = '#dddddd' class = 'full_cell1 cell-padded' > N < sup > o </ sup > prot .</ th >
< th bgcolor = '#dddddd' class = 'full_cell1 cell-padded' > N < sup > o </ sup > doc .</ th >
2017-11-07 19:19:52 +01:00
< th bgcolor = '#dddddd' class = 'full_cell cell-padded' > Data </ th >
2018-08-11 15:49:46 +02:00
< th bgcolor = '#dddddd' class = 'full_cell cell-padded' > " .(( $dir == 'entrata') ? 'Cliente' : 'Fornitore'). " </ th >
2018-07-26 16:19:34 +02:00
< th bgcolor = '#dddddd' class = 'full_cell cell-padded' > Causale </ th >
2017-11-07 19:19:52 +01:00
< th bgcolor = '#dddddd' class = 'full_cell cell-padded' > Aliquota </ th >
< th bgcolor = '#dddddd' class = 'full_cell cell-padded' > Imponibile </ th >
< th bgcolor = '#dddddd' class = 'full_cell cell-padded' > Imposta </ th >
2017-09-14 16:20:11 +02:00
</ tr >
</ thead >
" ;
for ( $i = 0 ; $i < sizeof ( $rs ); ++ $i ) {
$body .= '<tr>' ;
2018-08-11 15:49:46 +02:00
2017-09-14 16:20:11 +02:00
if ( $rs [ $i ][ 'numero' ] == $rs [ $i - 1 ][ 'numero' ]) {
$body .= " <td class='first_cell cell-padded text-center'></td> " ;
$body .= " <td class='table_cell cell-padded text-center'></td> " ;
2018-08-11 15:49:46 +02:00
$body .= " <td class='table_cell cell-padded text-center'></td> " ;
2017-09-14 16:20:11 +02:00
} else {
2018-08-11 15:49:46 +02:00
$body .= " <td class='first_cell cell-padded text-center'> " . $rs [ $i ][ 'numero' ] . '</td>' ;
2018-07-26 16:19:34 +02:00
$body .= " <td class='table_cell cell-padded text-center'> " . $rs [ $i ][ 'numero_esterno' ] . '</td>' ;
2017-09-14 16:20:11 +02:00
$body .= " <td class='table_cell cell-padded text-center'> " . date ( 'd/m/Y' , strtotime ( $rs [ $i ][ 'data' ])) . '</td>' ;
}
2017-09-18 18:11:19 +02:00
2018-08-11 15:49:46 +02:00
$body .= " <td class='table_cell cell-padded'> " . $rs [ $i ][ 'ragione_sociale' ] . '</td>' ;
2018-07-26 16:19:34 +02:00
2018-08-11 15:49:46 +02:00
$body .= " <td class='table_cell cell-padded'> " . (( $dir == 'entrata' ) ? 'Fattura di vendita' : 'Fattura di acquisto' ) . '</td>' ;
2017-09-14 16:20:11 +02:00
$body .= " <td class='table_cell cell-padded'> " . $rs [ $i ][ 'desc_iva' ] . '</td>' ;
2017-09-21 10:01:07 +02:00
$body .= " <td class='table_cell cell-padded text-right'> " . Translator :: numberToLocale ( $rs [ $i ][ 'subtotale' ]) . ' €</td>' ;
$body .= " <td class='table_cell cell-padded text-right'> " . Translator :: numberToLocale ( $rs [ $i ][ 'iva' ]) . ' €</td>' ;
2017-09-14 16:20:11 +02:00
$body .= '</tr>' ;
$v_iva [ $rs [ $i ][ 'desc_iva' ]] += $rs [ $i ][ 'iva' ];
$v_totale [ $rs [ $i ][ 'desc_iva' ]] += $rs [ $i ][ 'subtotale' ];
$totale_iva += $rs [ $i ][ 'iva' ];
$totale_subtotale += $rs [ $i ][ 'subtotale' ];
}
$body .= '
</ table >
' ;
$body .= " <br><br><span style='font-size:12pt; margin-left:6px;'><b>RIEPILOGO IVA</b></span><br><br> " ;
$body .= "
< table cellspacing = '0' style = 'table-layout:fixed;' >
< col width = '140' >< col width = '90' >< col width = '90' >
< tr >
< th bgcolor = '#dddddd' class = 'full_cell1 cell-padded' > Cod . IVA </ th >
< th bgcolor = '#dddddd' class = 'full_cell1 cell-padded' > Imponibile </ th >
< th bgcolor = '#dddddd' class = 'full_cell1 cell-padded' > Imposta </ th >
</ tr >
" ;
foreach ( $v_iva as $desc_iva => $tot_iva ) {
2017-09-18 18:11:19 +02:00
if ( '' != $desc_iva ) {
2017-09-14 16:20:11 +02:00
$body .= " <tr><td valign='top' class='first_cell cell-padded'> \n " ;
$body .= $desc_iva . " \n " ;
$body .= " </td> \n " ;
$body .= " <td valign='top' align='right' class='table_cell cell-padded'> \n " ;
2017-09-21 10:01:07 +02:00
$body .= Translator :: numberToLocale ( $v_totale [ $desc_iva ]) . " € \n " ;
2017-09-14 16:20:11 +02:00
$body .= " </td> \n " ;
$body .= " <td valign='top' align='right' class='table_cell cell-padded'> \n " ;
2017-09-21 10:01:07 +02:00
$body .= Translator :: numberToLocale ( $v_iva [ $desc_iva ]) . " € \n " ;
2017-09-14 16:20:11 +02:00
$body .= " </td></tr> \n " ;
}
}
$body .= " <tr bgcolor='#dddddd'>
< td class = 'full_cell1 cell-padded text-right' >< b > TOTALE </ b ></ td >
2017-09-21 10:01:07 +02:00
< td class = 'full_cell1 cell-padded text-right' > " .Translator::numberToLocale( $totale_subtotale ). " & euro ; </ td >
< td class = 'full_cell1 cell-padded text-right' > " .Translator::numberToLocale( $totale_iva ).' €</td>
2017-09-14 16:20:11 +02:00
</ tr > ' ;
$body .= '
</ table >
' ;
$orientation = 'L' ;
$report_name = 'registro_iva.pdf' ;