2017-08-04 16:28:16 +02:00
< ? php
include_once __DIR__ . '/../../core.php' ;
echo '
< table class = " table table-striped table-hover table-condensed table-bordered " >
< tr >
2017-09-04 12:02:29 +02:00
< th > '.tr(' Descrizione ').' </ th >
2019-04-23 19:06:43 +02:00
< th width = " 120 " > '.tr(' Q . tà ').' < i title = " '.tr('da evadere').' / '.tr('totale').' " class = " tip fa fa-question-circle-o " ></ i ></ th >
2017-09-04 12:02:29 +02:00
< th width = " 80 " > '.tr(' U . m . ').' </ th >
< th width = " 120 " > '.tr(' Costo unitario ').' </ th >
< th width = " 120 " > '.tr(' Iva ').' </ th >
< th width = " 120 " > '.tr(' Imponibile ').' </ th >
2017-08-04 16:28:16 +02:00
< th width = " 60 " ></ th >
</ tr >
< tbody class = " sortable " > ' ;
/*
Articoli e righe generiche
*/
2018-07-09 10:44:54 +02:00
$q_art = '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, (SELECT codice FROM mg_articoli WHERE id=idarticolo) AS codice FROM `dt_righe_ddt` WHERE idddt=' . prepare ( $id_record ) . ' ORDER BY `order`' ;
2017-08-04 16:28:16 +02:00
$rs = $dbo -> fetchArray ( $q_art );
if ( ! empty ( $rs )) {
foreach ( $rs as $r ) {
2018-02-19 17:48:04 +01:00
$extra = '' ;
$mancanti = 0 ;
2017-09-05 17:31:58 +02:00
// Individuazione dei seriali
if ( ! empty ( $r [ 'idarticolo' ]) && ! empty ( $r [ 'abilita_serial' ])) {
$serials = array_column ( $dbo -> fetchArray ( 'SELECT serial FROM mg_prodotti WHERE serial IS NOT NULL AND id_riga_ddt=' . prepare ( $r [ 'id' ])), 'serial' );
$mancanti = $r [ 'qta' ] - count ( $serials );
2017-08-04 16:28:16 +02:00
if ( $mancanti > 0 ) {
$extra = 'class="warning"' ;
2017-09-05 17:31:58 +02:00
} else {
$mancanti = 0 ;
2017-08-04 16:28:16 +02:00
}
}
echo '
< tr data - id = " '. $r['id'] .' " '.$extra.' >
< td align = " left " > ' ;
if ( ! empty ( $r [ 'idarticolo' ])) {
echo '
'.Modules::link(' Articoli ', $r[' idarticolo '], $r[' codice '].' - '.$r[' descrizione ' ]);
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
}
2017-09-05 17:31:58 +02:00
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
}
}
} else {
echo nl2br ( $r [ 'descrizione' ]);
}
2018-06-22 17:52:51 +02:00
// Aggiunta dei riferimenti ai documenti
$ref = doc_references ( $r , $dir , [ 'idddt' ]);
2017-09-05 17:31:58 +02:00
2018-06-22 17:52:51 +02:00
if ( ! empty ( $ref )) {
2017-09-05 17:31:58 +02:00
echo '
2018-06-22 17:52:51 +02:00
< br > '.Modules::link($ref[' module '], $ref[' id '], $ref[' description '], $ref[' description ' ]);
2017-09-05 17:31:58 +02:00
}
2017-08-04 16:28:16 +02:00
echo '
</ td > ' ;
echo '
< td class = " text-center " > ' ;
2018-02-17 09:02:19 +01:00
if ( empty ( $r [ 'is_descrizione' ])) {
2019-03-29 12:46:17 +01:00
echo '
2019-04-23 19:06:43 +02:00
< span > '.Translator::numberToLocale($r[' qta '] - $r[' qta_evasa '], ' qta ').' / '.Translator::numberToLocale($r[' qta '], ' qta ').' </ span > ' ;
2017-08-04 16:28:16 +02:00
}
echo '
</ td > ' ;
// Unità di misura
echo '
2018-01-18 19:03:06 +01:00
< td class = " text-center " > ' ;
2018-02-17 09:02:19 +01:00
if ( empty ( $r [ 'is_descrizione' ])) {
echo '
'.$r[' um ' ];
2018-01-18 19:03:06 +01:00
}
echo '
2017-08-04 16:28:16 +02:00
</ td > ' ;
// Costo unitario
echo '
2018-01-18 19:03:06 +01:00
< td class = " text-right " > ' ;
2018-02-17 09:02:19 +01:00
if ( empty ( $r [ 'is_descrizione' ])) {
echo '
2019-04-13 02:56:39 +02:00
'.moneyFormat($r[' subtotale '] / $r[' qta ' ]);
2018-01-18 19:03:06 +01:00
2019-07-11 17:34:06 +02:00
if ( abs ( $r [ 'sconto_unitario' ]) > 0 ) {
2019-07-11 17:44:42 +02:00
$text = $r [ 'sconto_unitario' ] > 0 ? tr ( 'sconto _TOT_ _TYPE_' ) : tr ( 'maggiorazione _TOT_ _TYPE_' );
2018-01-18 19:03:06 +01:00
echo '
2019-07-11 17:44:42 +02:00
< br >< small class = " label label-danger " > ' . replace ( $text , [
'_TOT_' => Translator :: numberToLocale ( abs ( $r [ 'sconto_unitario' ])),
2019-04-13 00:09:48 +02:00
'_TYPE_' => ( $r [ 'tipo_sconto' ] == 'PRC' ? '%' : currency ()),
2018-02-17 09:02:19 +01:00
]) . '</small>' ;
2018-01-18 19:03:06 +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-17 09:02:19 +01:00
if ( empty ( $r [ 'is_descrizione' ])) {
echo '
2019-04-13 02:56:39 +02:00
'.moneyFormat($r[' iva ']).'
2018-01-18 19:03:06 +01:00
< br >< small class = " help-block " > '.$r[' desc_iva '].' </ small > ' ;
}
echo '
2017-08-04 16:28:16 +02:00
</ td > ' ;
// Imponibile
echo '
2018-01-18 19:03:06 +01:00
< td class = " text-right " > ' ;
2018-02-17 09:02:19 +01:00
if ( empty ( $r [ 'is_descrizione' ])) {
echo '
2019-04-13 02:56:39 +02:00
'.moneyFormat($r[' subtotale '] - $r[' sconto ' ]);
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 il ddt non è evaso
echo '
< td class = " text-center " > ' ;
2019-03-29 12:46:17 +01:00
if ( $record [ 'flag_completato' ] == 0 ) {
2017-08-04 16:28:16 +02:00
echo "
2018-10-26 19:39:34 +02:00
< form action = '".$rootdir.' / editor . php ? id_module = '.$id_module.' & id_record = '.$id_record."' method = 'post' id = 'delete-form-".$r[' id ']."' role = 'form' >
2017-08-04 16:28:16 +02:00
< input type = 'hidden' name = 'backto' value = 'record-edit' >
< input type = 'hidden' name = 'id_record' value = '".$id_record."' >
< input type = 'hidden' name = 'idriga' value = '".$r[' id ']."' >
< input type = 'hidden' name = 'dir' value = '".$dir."' > " ;
if ( ! empty ( $r [ 'idarticolo' ])) {
echo "
< input type = 'hidden' name = 'idarticolo' value = '".$r[' idarticolo ']."' >
< input type = 'hidden' name = 'op' value = 'unlink_articolo' > " ;
} else {
echo "
< input type = 'hidden' name = 'op' value = 'unlink_riga' > " ;
}
echo "
< div class = 'input-group-btn' > " ;
if ( ! empty ( $r [ 'idarticolo' ]) && $r [ 'abilita_serial' ]) {
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:48:04 +01:00
< a class = 'btn btn-xs btn-warning' title = 'Modifica questa riga...' onclick = \ " launch_modal( 'Modifica riga', ' " . $rootdir . '/modules/ddt/row-edit.php?id_module=' . $id_module . '&id_record=' . $id_record . '&idriga=' . $r [ 'id' ] . " ', 1 ); \" >
2017-08-04 16:28:16 +02:00
< i class = 'fa fa-edit' ></ i >
</ a >
< a class = 'btn btn-xs btn-danger' title = 'Rimuovi questa riga...' onclick = \ " if( confirm('Rimuovere questa riga dal ddt?') ) { $ ('#delete-form- " . $r [ 'id' ] . " ').submit(); } \" >
2017-08-28 09:50:25 +02:00
< i class = 'fa fa-trash' ></ i >
2017-08-04 16:28:16 +02:00
</ a >
</ div >
</ form > " ;
}
2019-05-04 00:32:28 +02:00
echo '
2019-04-23 16:13:57 +02:00
< div class = " handle clickable " style = " padding:10px " >
< i class = " fa fa-sort " ></ i >
</ div > ' ;
2017-08-04 16:28:16 +02:00
echo '
</ td >
</ tr > ' ;
}
}
echo '
</ tbody > ' ;
// Calcoli
2019-07-12 17:35:14 +02:00
$imponibile = abs ( $ddt -> imponibile );
$sconto = $ddt -> sconto ;
$totale_imponibile = abs ( $ddt -> totale_imponibile );
$iva = abs ( $ddt -> iva );
$totale = abs ( $ddt -> totale );
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 " >
2019-05-02 10:03:57 +02:00
'.moneyFormat($imponibile, 2).'
2017-08-04 16:28:16 +02:00
</ td >
< td ></ td >
</ tr > ' ;
2019-07-12 17:35:14 +02:00
// SCONTO
if ( ! empty ( $sconto )) {
2017-08-04 16:28:16 +02:00
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2019-07-12 12:40:13 +02:00
< b >< span class = " tip " title = " '.tr('Un importo positivo indica uno sconto, mentre uno negativo indica una maggiorazione').' " > < i class = " fa fa-question-circle-o " ></ i > '.tr(' Sconto / maggiorazione ', [], [' upper ' => true]).' :</ span ></ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
2019-05-02 10:03:57 +02:00
'.moneyFormat($sconto, 2).'
2017-08-04 16:28:16 +02:00
</ td >
< td ></ td >
</ tr > ' ;
2019-07-11 17:44:42 +02:00
// TOTALE IMPONIBILE
2017-09-10 14:35:41 +02:00
echo '
2017-08-04 16:28:16 +02:00
< tr >
< td colspan = " 5 " class = " text-right " >
2019-07-11 17:44:42 +02:00
< b > '.tr(' Totale imponibile ', [], [' upper ' => true]).' :</ b >
2017-08-04 16:28:16 +02:00
</ td >
< td align = " right " >
2019-07-11 17:44:42 +02:00
'.moneyFormat($totale_imponibile, 2).'
2017-08-04 16:28:16 +02:00
</ td >
< td ></ td >
</ tr > ' ;
}
2019-07-12 17:35:14 +02:00
// IVA
echo '
2017-08-04 16:28:16 +02:00
< 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 " >
2019-07-12 17:35:14 +02:00
'.moneyFormat($iva, 2).'
2017-08-04 16:28:16 +02:00
</ 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 " >
2019-05-02 10:03:57 +02:00
'.moneyFormat($totale, 2).'
2017-08-04 16:28:16 +02:00
</ 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 ,
update : function ( event , ui ) {
2018-10-30 10:27:44 +01:00
var order = " " ;
$ ( " .table tr[data-id] " ) . each ( function (){
order += " , " + $ ( this ) . data ( " id " );
});
order = order . replace ( /^ , / , " " );
2018-12-28 08:07:56 +01:00
2017-08-04 16:28:16 +02:00
$ . post ( " '. $rootdir .'/actions.php " , {
id : ui . item . data ( " id " ),
id_module : '.$id_module.' ,
id_record : '.$id_record.' ,
op : " update_position " ,
2018-10-30 10:27:44 +01:00
order : order ,
2017-08-04 16:28:16 +02:00
});
}
});
});
});
</ script > ' ;