2017-08-04 16:28:16 +02:00
< ? php
include_once __DIR__ . '/../../core.php' ;
2018-06-26 09:41:43 +02:00
include_once Modules :: filepath ( 'Fatture di vendita' , 'modutil.php' );
2018-06-22 17:52:51 +02:00
2017-08-04 16:28:16 +02:00
/*
Righe fattura
*/
2018-07-09 10:44:54 +02:00
$rs = $dbo -> fetchArray ( 'SELECT *, round(sconto_unitario,' . setting ( 'Cifre decimali per importi' ) . ') AS sconto_unitario, round(sconto,' . setting ( 'Cifre decimali per importi' ) . ') AS sconto, round(subtotale,' . setting ( 'Cifre decimali per importi' ) . ') AS subtotale, IFNULL((SELECT codice FROM mg_articoli WHERE id=idarticolo),"") AS codice, (SELECT descrizione FROM co_pianodeiconti3 WHERE co_pianodeiconti3.id=IF(co_righe_documenti.idconto = 0, (SELECT idconto FROM co_documenti WHERE iddocumento=' . prepare ( $id_record ) . ' LIMIT 1), co_righe_documenti.idconto)) AS descrizione_conto FROM `co_righe_documenti` WHERE iddocumento=' . prepare ( $id_record ) . ' ORDER BY `order`' );
2017-08-04 16:28:16 +02:00
echo '
< table class = " table table-striped table-hover table-condensed table-bordered " >
2018-01-14 17:46:00 +01:00
< thead >
< tr >
< th > '.tr(' Descrizione ').' </ th >
< th width = " 120 " > '.tr(' Q . tà ').' </ th >
< th width = " 80 " > '.tr(' U . m . ').' </ th >
2018-07-10 16:01:28 +02:00
< th width = " 120 " > '.tr(' Prezzo unitario ').' </ th >
2018-01-14 17:46:00 +01:00
< th width = " 120 " > '.tr(' Iva ').' </ th >
2018-07-10 16:01:28 +02:00
< th width = " 120 " > '.tr(' Importo ').' </ th >
2018-01-14 17:46:00 +01:00
< th width = " 60 " ></ th >
</ tr >
</ thead >
2017-08-04 16:28:16 +02:00
< tbody class = " sortable " > ' ;
if ( ! empty ( $rs )) {
foreach ( $rs as $r ) {
2018-07-03 17:28:02 +02:00
// Valori assoluti
$r [ 'qta' ] = abs ( $r [ 'qta' ]);
$r [ 'subtotale' ] = abs ( $r [ 'subtotale' ]);
$r [ 'sconto_unitario' ] = abs ( $r [ 'sconto_unitario' ]);
$r [ 'sconto' ] = abs ( $r [ 'sconto' ]);
$r [ 'iva' ] = abs ( $r [ 'iva' ]);
2017-08-04 16:28:16 +02:00
$extra = '' ;
2017-09-15 09:48:56 +02:00
$ref_modulo = null ;
$ref_id = null ;
2017-09-11 11:28:39 +02:00
2017-08-04 16:28:16 +02:00
// Articoli
if ( ! empty ( $r [ 'idarticolo' ])) {
2017-09-22 15:19:59 +02:00
$ref_modulo = Modules :: get ( 'Articoli' )[ 'id' ];
2017-09-15 09:48:56 +02:00
$ref_id = $r [ 'idarticolo' ];
2017-08-04 16:28:16 +02:00
2017-09-15 09:48:56 +02:00
$r [ 'descrizione' ] = ( ! empty ( $r [ 'codice' ]) ? $r [ 'codice' ] . ' - ' : '' ) . $r [ 'descrizione' ];
2017-08-04 16:28:16 +02:00
$delete = 'unlink_articolo' ;
2018-02-19 17:48:04 +01:00
$extra = '' ;
$mancanti = 0 ;
2017-09-05 17:31:58 +02:00
// Individuazione dei seriali
2017-08-04 16:28:16 +02:00
if ( ! empty ( $r [ 'abilita_serial' ])) {
2017-09-05 17:31:58 +02:00
$serials = array_column ( $dbo -> fetchArray ( 'SELECT serial FROM mg_prodotti WHERE serial IS NOT NULL AND id_riga_documento=' . prepare ( $r [ 'id' ])), 'serial' );
$mancanti = $r [ 'qta' ] - count ( $serials );
if ( $mancanti > 0 ) {
$extra = 'class="warning"' ;
} else {
$mancanti = 0 ;
2017-08-04 16:28:16 +02:00
}
}
}
// Preventivi
elseif ( ! empty ( $r [ 'idpreventivo' ])) {
$delete = 'unlink_preventivo' ;
}
// Contratti
elseif ( ! empty ( $r [ 'idcontratto' ])) {
$delete = 'unlink_contratto' ;
}
// Intervento
elseif ( ! empty ( $r [ 'idintervento' ])) {
$delete = 'unlink_intervento' ;
}
// Righe generiche
else {
$delete = 'unlink_riga' ;
}
echo '
2018-06-14 15:51:00 +02:00
< tr data - id = " '. $r['id'] .' " '.$extra.' >
2017-08-04 16:28:16 +02:00
< td >
2017-09-15 09:48:56 +02:00
'.Modules::link($ref_modulo, $ref_id, $r[' descrizione ']).'
2017-08-04 16:28:16 +02:00
< small class = " pull-right text-muted " > '.$r[' descrizione_conto '].' </ small > ' ;
if ( ! empty ( $r [ 'abilita_serial' ])) {
if ( ! empty ( $mancanti )) {
echo '
2017-09-10 14:35:41 +02:00
< br >< b >< small class = " text-danger " > '.tr(' _NUM_ serial mancanti ' , [
'_NUM_' => $mancanti ,
]) . '</small></b>' ;
2017-08-04 16:28:16 +02:00
}
if ( ! empty ( $serials )) {
echo '
2017-09-04 12:02:29 +02:00
< br > '.tr(' SN ').' : '.implode(' , ' , $serials );
2017-08-04 16:28:16 +02:00
}
}
2018-02-15 16:44:16 +01:00
// Aggiunta dei riferimenti ai documenti
2018-07-04 12:57:53 +02:00
if ( ! empty ( $records [ 0 ][ 'ref_documento' ])) {
$data = $dbo -> fetchArray ( " SELECT IF(numero_esterno != '', numero_esterno, numero) AS numero, data FROM co_documenti WHERE id = " . prepare ( $records [ 0 ][ 'ref_documento' ]));
$text = tr ( 'Rif. fattura _NUM_ del _DATE_' , [
'_NUM_' => $data [ 0 ][ 'numero' ],
'_DATE_' => Translator :: dateToLocale ( $data [ 0 ][ 'data' ]),
]);
echo '
< br > '.Modules::link(' Fatture di vendita ', $records[0][' ref_documento ' ], $text , $text );
}
2017-09-05 17:31:58 +02:00
2018-07-04 12:57:53 +02:00
$ref = doc_references ( $r , $dir , [ 'iddocumento' ]);
2018-06-22 17:52:51 +02:00
if ( ! empty ( $ref )) {
2017-08-04 16:28:16 +02:00
echo '
2018-06-22 17:52:51 +02:00
< br > '.Modules::link($ref[' module '], $ref[' id '], $ref[' description '], $ref[' description ' ]);
2017-08-04 16:28:16 +02:00
}
echo '
</ td > ' ;
echo '
2018-01-18 19:03:06 +01:00
< td class = " text-right " > ' ;
2018-02-15 16:44:16 +01:00
if ( empty ( $r [ 'is_descrizione' ])) {
2018-02-17 09:02:19 +01:00
echo '
2018-06-29 13:35:39 +02:00
'.Translator::numberToLocale($r[' qta '], ' qta ' );
2018-01-18 19:03:06 +01:00
}
2018-02-15 16:44:16 +01:00
echo '
2017-08-04 16:28:16 +02:00
</ td > ' ;
// Unità di misura
echo '
2018-01-18 19:03:06 +01:00
< td class = " text-center " > ' ;
2018-02-15 16:44:16 +01:00
if ( empty ( $r [ 'is_descrizione' ])) {
2018-02-17 09:02:19 +01:00
echo '
'.$r[' um ' ];
2018-01-18 19:03:06 +01:00
}
2018-02-15 16:44:16 +01:00
2018-01-18 19:03:06 +01:00
echo '
2017-08-04 16:28:16 +02:00
</ td > ' ;
2018-07-10 16:01:28 +02:00
// Prezzo unitario
2017-08-04 16:28:16 +02:00
echo '
2018-01-18 19:03:06 +01:00
< td class = " text-right " > ' ;
2018-02-15 16:44:16 +01:00
if ( empty ( $r [ 'is_descrizione' ])) {
2018-02-17 09:02:19 +01:00
echo '
'.Translator::numberToLocale($r[' subtotale '] / $r[' qta ']).' & euro ; ' ;
2017-08-04 16:28:16 +02:00
2018-01-18 19:03:06 +01:00
if ( $r [ 'sconto_unitario' ] > 0 ) {
echo '
2018-05-18 18:43:01 +02:00
< br >< small class = " label label-danger " > '.tr(' sconto _TOT_ _TYPE_ ' , [
2018-02-17 09:02:19 +01:00
'_TOT_' => Translator :: numberToLocale ( $r [ 'sconto_unitario' ]),
'_TYPE_' => ( $r [ 'tipo_sconto' ] == 'PRC' ? '%' : '€' ),
]) . '</small>' ;
2018-01-18 19:03:06 +01:00
}
2017-08-04 16:28:16 +02:00
}
2018-02-15 16:44:16 +01:00
2017-08-04 16:28:16 +02:00
echo '
</ td > ' ;
// Iva
echo '
2018-01-18 19:03:06 +01:00
< td class = " text-right " > ' ;
2018-02-15 16:44:16 +01:00
if ( empty ( $r [ 'is_descrizione' ])) {
2018-02-17 09:02:19 +01:00
echo '
'.Translator::numberToLocale($r[' iva ']).' & euro ;
2018-07-10 16:01:28 +02:00
< br >< small class = " help-block " > '.$r[' desc_iva '].' </ small > ' ;
2018-01-18 19:03:06 +01:00
}
2018-02-15 16:44:16 +01:00
2018-01-18 19:03:06 +01:00
echo '
2017-08-04 16:28:16 +02:00
</ td > ' ;
2018-07-10 16:01:28 +02:00
// Importo
2017-08-04 16:28:16 +02:00
echo '
2018-01-18 19:03:06 +01:00
< td class = " text-right " > ' ;
2018-02-15 16:44:16 +01:00
if ( empty ( $r [ 'is_descrizione' ])) {
2018-02-17 09:02:19 +01:00
echo '
'.Translator::numberToLocale($r[' subtotale '] - $r[' sconto ']).' & euro ; ' ;
2018-01-18 19:03:06 +01:00
}
echo '
2017-08-04 16:28:16 +02:00
</ td > ' ;
// Possibilità di rimuovere una riga solo se la fattura non è pagata
echo '
< td class = " text-center " > ' ;
2017-09-11 11:28:39 +02:00
if ( $records [ 0 ][ 'stato' ] != 'Pagato' && $records [ 0 ][ 'stato' ] != 'Emessa' && empty ( $r [ 'sconto_globale' ])) {
2017-08-04 16:28:16 +02:00
echo "
< form action = '".$rootdir.' / editor . php ? id_module = '.$id_module.' & id_record = '.$id_record."' method = 'post' id = 'delete-form-".$r[' id ']."' role = 'form' >
< input type = 'hidden' name = 'backto' value = 'record-edit' >
< input type = 'hidden' name = 'idriga' value = '".$r[' id ']."' >
< input type = 'hidden' name = 'op' value = '".$delete."' > " ;
if ( ! empty ( $r [ 'idarticolo' ])) {
echo "
< input type = 'hidden' name = 'idarticolo' value = '".$r[' idarticolo ']."' > " ;
}
echo "
< div class = 'input-group-btn' > " ;
2018-07-04 12:57:53 +02:00
if ( empty ( $records [ 0 ][ 'is_reversed' ]) && ! empty ( $r [ 'idarticolo' ]) && $r [ 'abilita_serial' ] && ( empty ( $r [ 'idddt' ]) || empty ( $r [ 'idintervento' ]))) {
2017-08-04 16:28:16 +02:00
echo "
2017-09-05 17:31:58 +02:00
< a class = 'btn btn-primary btn-xs' data - toggle = 'tooltip' title = 'Aggiorna SN...' onclick = \ " launch_modal( 'Aggiorna SN', ' " . $rootdir . '/modules/fatture/add_serial.php?id_module=' . $id_module . '&id_record=' . $id_record . '&idriga=' . $r [ 'id' ] . '&idarticolo=' . $r [ 'idarticolo' ] . " ', 1 ); \" ><i class='fa fa-barcode' aria-hidden='true'></i></a> " ;
2017-08-04 16:28:16 +02:00
}
echo "
2018-02-19 17:57:27 +01:00
< a class = 'btn btn-xs btn-warning' title = 'Modifica questa riga...' onclick = \ " launch_modal( 'Modifica riga', ' " . $rootdir . '/modules/fatture/row-edit.php?id_module=' . $id_module . '&id_record=' . $id_record . '&idriga=' . $r [ 'id' ] . " ', 1 ); \" ><i class='fa fa-edit'></i></a>
2017-08-28 09:50:25 +02:00
< a class = 'btn btn-xs btn-danger' title = 'Rimuovi questa riga...' onclick = \ " if( confirm('Rimuovere questa riga dalla fattura?') ) { $ ('#delete-form- " . $r [ 'id' ] . " ').submit(); } \" ><i class='fa fa-trash'></i></a>
2017-08-04 16:28:16 +02:00
</ div >
</ form > " ;
}
2017-09-11 11:28:39 +02:00
if ( empty ( $r [ 'sconto_globale' ])) {
2017-08-04 16:28:16 +02:00
echo '
< div class = " handle clickable " style = " padding:10px " >
< i class = " fa fa-sort " ></ i >
</ div > ' ;
}
echo '
</ td >
</ tr > ' ;
}
}
echo '
</ tbody > ' ;
// Calcoli
$imponibile = sum ( array_column ( $rs , 'subtotale' ));
$sconto = sum ( array_column ( $rs , 'sconto' ));
2018-05-18 18:12:19 +02:00
$iva = sum ( array_column ( $rs , 'iva' ));
2017-08-04 16:28:16 +02:00
$imponibile_scontato = sum ( $imponibile , - $sconto );
$totale_iva = sum ( $iva , $records [ 0 ][ 'iva_rivalsainps' ]);
$totale = sum ([
$imponibile_scontato ,
$records [ 0 ][ 'rivalsainps' ],
$totale_iva ,
]);
$netto_a_pagare = sum ([
$totale ,
2017-12-15 10:27:30 +01:00
$records [ 0 ][ 'bollo' ],
2017-08-04 16:28:16 +02:00
- $records [ 0 ][ 'ritenutaacconto' ],
]);
2018-07-03 17:28:02 +02:00
$imponibile = abs ( $imponibile );
$sconto = abs ( $sconto );
$iva = abs ( $iva );
$imponibile_scontato = abs ( $imponibile_scontato );
$totale_iva = abs ( $totale_iva );
$totale = abs ( $totale );
$netto_a_pagare = abs ( $netto_a_pagare );
2017-08-04 16:28:16 +02:00
// IMPONIBILE
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr(' Imponibile ', [], [' upper ' => true]).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($imponibile).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
// SCONTO
if ( abs ( $sconto ) > 0 ) {
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr(' Sconto ', [], [' upper ' => true]).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($sconto).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
// IMPONIBILE SCONTATO
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr(' Imponibile scontato ', [], [' upper ' => true]).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($imponibile_scontato).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
}
// RIVALSA INPS
if ( abs ( $records [ 0 ][ 'rivalsainps' ]) > 0 ) {
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr(' Rivalsa INPS ', [], [' upper ' => true]).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($records[0][' rivalsainps ']).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
}
// IVA
if ( abs ( $totale_iva ) > 0 ) {
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr(' Iva ', [], [' upper ' => true]).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($totale_iva).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
}
// TOTALE
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr(' Totale ', [], [' upper ' => true]).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($totale).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
// Mostra marca da bollo se c'è
if ( abs ( $records [ 0 ][ 'bollo' ]) > 0 ) {
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr(' Marca da bollo ', [], [' upper ' => true]).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($records[0][' bollo ']).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
}
// RITENUTA D'ACCONTO
if ( abs ( $records [ 0 ][ 'ritenutaacconto' ]) > 0 ) {
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr("Ritenuta d' acconto " , [], ['upper' => true]).':</b>
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($records[0][' ritenutaacconto ']).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
2017-12-15 20:46:41 +01:00
//$netto_a_pagare -= $records[0]['ritenutaacconto'];
2017-08-04 16:28:16 +02:00
}
// NETTO A PAGARE
if ( $totale != $netto_a_pagare ) {
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2017-09-10 14:35:41 +02:00
< b > '.tr(' Netto a pagare ', [], [' upper ' => true]).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
'.Translator::numberToLocale($netto_a_pagare).' & euro ;
</ td >
< td ></ td >
</ tr > ' ;
}
echo '
</ table > ' ;
echo '
< script >
$ ( document ) . ready ( function (){
$ ( " .sortable " ) . each ( function () {
$ ( this ) . sortable ({
axis : " y " ,
handle : " .handle " ,
cursor : " move " ,
dropOnEmpty : true ,
scroll : true ,
start : function ( event , ui ) {
ui . item . data ( " start " , ui . item . index ());
},
update : function ( event , ui ) {
$ . post ( " '. $rootdir .'/actions.php " , {
id : ui . item . data ( " id " ),
id_module : '.$id_module.' ,
id_record : '.$id_record.' ,
op : " update_position " ,
start : ui . item . data ( " start " ),
end : ui . item . index ()
});
}
});
});
});
</ script > ' ;