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 " >
2020-02-28 11:38:24 +01:00
< thead >
< tr >
2020-05-29 15:58:47 +02:00
< th width = " 35 " class = " text-center " > '.tr(' #').'</th>
2020-02-28 11:38:24 +01:00
< th > '.tr(' Descrizione ').' </ th >
< th class = " text-center tip " width = " 150 " title = " '.tr('da evadere').' / '.tr('totale').' " > '.tr(' Q . tà ').' < i class = " fa fa-question-circle-o " ></ i ></ th >
< th class = " text-center " width = " 150 " > '.tr(' Prezzo unitario ').' </ th >
< th class = " text-center " width = " 150 " > '.tr(' Iva unitaria ').' </ th >
< th class = " text-center " width = " 150 " > '.tr(' Importo ').' </ th >
< th width = " 60 " ></ th >
</ tr >
</ thead >
2017-08-04 16:28:16 +02:00
< tbody class = " sortable " > ' ;
2020-01-17 17:31:07 +01:00
// Righe documento
$righe = $ddt -> getRighe ();
foreach ( $righe as $riga ) {
$extra = '' ;
$mancanti = 0 ;
// Individuazione dei seriali
2020-03-09 13:57:13 +01:00
if ( $riga -> isArticolo () && ! empty ( $riga -> abilita_serial )) {
$serials = $riga -> serials ;
$mancanti = abs ( $riga -> qta ) - count ( $serials );
2020-01-17 17:31:07 +01:00
if ( $mancanti > 0 ) {
$extra = 'class="warning"' ;
} else {
$mancanti = 0 ;
2017-08-04 16:28:16 +02:00
}
2020-01-17 17:31:07 +01:00
}
2017-08-04 16:28:16 +02:00
2020-01-17 17:31:46 +01:00
echo '
2020-05-29 15:58:47 +02:00
< tr data - id = " '. $riga->id .' " '.$extra.' > ' ;
echo '
< td class = " text-center " >
2020-06-09 16:59:26 +02:00
'.(($riga->order) + 1).'
2020-05-29 15:58:47 +02:00
</ td > ' ;
echo '
2020-03-09 13:57:13 +01:00
< td > ' ;
if ( $riga -> isArticolo ()) {
2020-01-17 17:31:46 +01:00
echo '
2020-03-09 13:57:13 +01:00
'.Modules::link(' Articoli ', $riga->idarticolo, $riga->articolo->codice.' - ' . $riga -> descrizione );
} else {
echo nl2br ( $riga -> descrizione );
}
2017-08-04 16:28:16 +02:00
2020-03-09 13:57:13 +01:00
if ( $riga -> isArticolo () && ! empty ( $riga -> abilita_serial )) {
if ( ! empty ( $mancanti )) {
echo '
2017-09-10 14:35:41 +02:00
< br >< b >< small class = " text-danger " > '.tr(' _NUM_ serial mancanti ' , [
2020-03-09 13:57:13 +01:00
'_NUM_' => $mancanti ,
]) . '</small></b>' ;
}
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
}
2020-01-17 17:31:46 +01:00
}
2017-08-04 16:28:16 +02:00
2020-01-17 17:31:46 +01:00
// Aggiunta dei riferimenti ai documenti
2020-03-03 10:33:32 +01:00
if ( $riga -> hasOriginal ()) {
2020-01-17 17:31:46 +01:00
echo '
2020-03-03 10:33:32 +01:00
< br > ' . reference ( $riga -> getOriginal () -> parent );
2020-01-17 17:31:46 +01:00
}
2017-09-05 17:31:58 +02:00
2020-01-17 17:31:46 +01:00
echo '
2017-08-04 16:28:16 +02:00
</ td > ' ;
2020-02-28 11:38:24 +01:00
if ( $riga -> isDescrizione ()) {
2017-08-04 16:28:16 +02:00
echo '
2020-02-28 11:38:24 +01:00
< td ></ td >
< td ></ td >
< td ></ td >
< td ></ td > ' ;
} else {
// Quantità e unità di misura
2018-01-18 19:03:06 +01:00
echo '
2020-02-28 11:38:24 +01:00
< td class = " text-center " >
2020-03-09 13:57:13 +01:00
'.numberFormat($riga->qta_rimanente, ' qta ').' / '.numberFormat($riga->qta, ' qta ').' '.$riga->um.'
2017-08-04 16:28:16 +02:00
</ td > ' ;
2020-02-28 11:38:24 +01:00
// Prezzi unitari
2020-01-17 17:31:46 +01:00
echo '
2020-02-28 11:38:24 +01:00
< td class = " text-right " >
' . moneyFormat ( $riga -> prezzo_unitario_corrente );
2018-01-18 19:03:06 +01:00
2020-02-28 11:38:24 +01:00
if ( $dir == 'entrata' && $riga -> costo_unitario != 0 ) {
echo '
< br >< small >
'.tr(' Acquisto ').' : '.moneyFormat($riga->costo_unitario).'
</ small > ' ;
}
if ( abs ( $riga -> sconto_unitario ) > 0 ) {
$text = discountInfo ( $riga );
2019-07-11 17:44:42 +02:00
2020-01-17 17:31:46 +01:00
echo '
2020-02-28 11:38:24 +01:00
< br >< small class = " label label-danger " > '.$text.' </ small > ' ;
2017-08-04 16:28:16 +02:00
}
2020-02-28 11:38:24 +01:00
echo '
2017-08-04 16:28:16 +02:00
</ td > ' ;
2020-02-28 11:38:24 +01:00
// Iva
2020-01-17 17:31:46 +01:00
echo '
2020-02-28 11:38:24 +01:00
< td class = " text-right " >
'.moneyFormat($riga->iva_unitaria).'
< br >< small class = " '.(( $riga->aliquota ->deleted_at) ? 'text-red' : '').' help-block " > '.$riga->aliquota->descrizione.(($riga->aliquota->esente) ? ' ( '.$riga->aliquota->codice_natura_fe.' ) ' : null).' </ small >
2017-08-04 16:28:16 +02:00
</ td > ' ;
2020-02-28 11:38:24 +01:00
// Importo
2018-01-18 19:03:06 +01:00
echo '
2020-02-28 11:38:24 +01:00
< td class = " text-right " >
'.moneyFormat($riga->importo).'
2017-08-04 16:28:16 +02:00
</ td > ' ;
2020-02-28 11:38:24 +01:00
}
2017-08-04 16:28:16 +02:00
2020-01-17 17:31:46 +01:00
// Possibilità di rimuovere una riga solo se il ddt non è evaso
echo '
2017-08-04 16:28:16 +02:00
< td class = " text-center " > ' ;
2020-01-17 17:31:07 +01:00
2020-01-17 17:31:46 +01:00
if ( $record [ 'flag_completato' ] == 0 ) {
echo "
2020-03-09 13:57:13 +01:00
< form action = '".$rootdir.' / editor . php ? id_module = '.$id_module.' & id_record = '.$id_record."' method = 'post' id = 'delete-form-".$riga->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."' >
2020-03-09 13:57:13 +01:00
< input type = 'hidden' name = 'idriga' value = '".$riga->id."' >
2020-01-17 17:31:07 +01:00
< input type = 'hidden' name = 'type' value = '".get_class($riga)."' >
2019-10-01 18:32:06 +02:00
< input type = 'hidden' name = 'op' value = 'delete_riga' >
2017-08-04 16:28:16 +02:00
< div class = 'input-group-btn' > " ;
2020-03-09 13:57:13 +01:00
if ( $riga -> isArticolo () && ! empty ( $riga -> abilita_serial )) {
2020-01-17 17:31:46 +01:00
echo "
2020-03-09 13:57:13 +01: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=' . $riga -> id . '&idarticolo=' . $riga -> idarticolo . " '); \" ><i class='fa fa-barcode' aria-hidden='true'></i></a> " ;
2020-01-17 17:31:46 +01:00
}
2017-08-04 16:28:16 +02:00
2020-01-17 17:31:46 +01:00
echo "
2020-03-09 13:57:13 +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=' . $riga -> id . '&type=' . urlencode ( get_class ( $riga )) . " '); \" >
2017-08-04 16:28:16 +02:00
< i class = 'fa fa-edit' ></ i >
</ a >
2020-03-09 13:57:13 +01:00
< a class = 'btn btn-xs btn-danger' title = 'Rimuovi questa riga...' onclick = \ " if( confirm('Rimuovere questa riga dal ddt?') ) { $ ('#delete-form- " . $riga -> 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 > " ;
2020-01-17 17:31:46 +01:00
}
2019-05-04 00:32:28 +02:00
2020-01-17 17:31:46 +01: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
2020-01-17 17:31:46 +01:00
echo '
2017-08-04 16:28:16 +02:00
</ 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 >
2020-05-29 15:58:47 +02:00
< 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 >
2020-05-29 15:58:47 +02:00
< 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 >
2020-05-29 15:58:47 +02:00
< 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 >
2020-05-29 15:58:47 +02:00
< 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 >
2020-05-29 15:58:47 +02:00
< 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
});
}
});
});
});
2020-06-09 16:59:26 +02:00
</ script > ' ;