2017-08-04 16:28:16 +02:00
< ? php
include_once __DIR__ . '/../../core.php' ;
echo '
2018-01-14 17:46:00 +01:00
< table class = " table table-striped table-hover table-condensed table-bordered " >
2017-09-11 13:08:50 +02:00
< thead >
2018-05-18 18:12:19 +02:00
< tr >
< th > '.tr(' Descrizione ').' </ th >
2020-02-28 11:38:24 +01:00
< 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 >
2018-05-18 18:12:19 +02:00
< th width = " 60 " ></ th >
</ tr >
</ thead >
2017-09-11 13:08:50 +02:00
< tbody class = " sortable " > ' ;
2017-08-04 16:28:16 +02:00
2020-01-17 17:31:07 +01:00
// Righe documento
$righe = $contratto -> getRighe ();
2019-05-04 06:19:08 +02:00
foreach ( $righe as $riga ) {
2018-06-23 18:35:08 +02:00
echo '
2019-05-04 06:19:08 +02:00
< tr data - id = " '. $riga->id .' " > ' ;
2018-01-18 19:03:06 +01:00
2019-05-04 06:19:08 +02:00
// Descrizione
$descrizione = nl2br ( $riga -> descrizione );
if ( $riga -> isArticolo ()) {
$descrizione = Modules :: link ( 'Articoli' , $riga -> idarticolo , $riga -> articolo -> codice . ' - ' . $descrizione );
}
2020-02-28 11:38:24 +01:00
2018-06-23 18:35:08 +02:00
echo '
2019-05-04 06:19:08 +02:00
< td >
'.$descrizione.'
2017-09-11 13:08:50 +02:00
</ td > ' ;
2017-08-04 16:28:16 +02:00
2019-05-04 06:19:08 +02:00
if ( $riga -> isDescrizione ()) {
2018-01-18 19:03:06 +01:00
echo '
2019-05-04 06:19:08 +02:00
< td ></ td >
< td ></ td >
< td ></ td >
< td ></ td > ' ;
} else {
2020-02-28 11:38:24 +01:00
// Quantità e unità di misura
2019-05-04 06:19:08 +02:00
echo '
2020-02-28 11:38:24 +01:00
< td class = " text-center " >
'.numberFormat($riga->qta_rimanente, ' qta ').' / '.numberFormat($riga->qta, ' qta ').' '.$r[' um '].'
</ td > ' ;
2017-08-04 16:28:16 +02:00
2020-02-28 11:38:24 +01:00
// Prezzi unitari
2018-01-18 19:03:06 +01:00
echo '
2020-02-28 11:38:24 +01:00
< td class = " text-right " >
' . moneyFormat ( $riga -> prezzo_unitario_corrente );
2017-08-04 16:28:16 +02: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 > ' ;
}
2018-06-22 17:52:51 +02:00
2019-07-17 18:30:20 +02:00
if ( abs ( $riga -> sconto_unitario ) > 0 ) {
2020-02-15 14:11:44 +01:00
$text = discountInfo ( $riga );
2019-07-11 17:44:42 +02:00
2018-06-23 18:35:08 +02:00
echo '
2020-02-28 11:38:24 +01:00
< br >< small class = " label label-danger " > '.$text.' </ small > ' ;
2018-01-18 19:03:06 +01:00
}
2019-05-04 06:19:08 +02:00
2020-02-28 11:38:24 +01:00
echo '
</ td > ' ;
2017-08-04 16:28:16 +02:00
2020-02-28 11:38:24 +01:00
// Iva
2018-06-23 18:35:08 +02: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 >
</ td > ' ;
2017-08-04 16:28:16 +02:00
2020-02-28 11:38:24 +01:00
// Importo
2017-08-04 16:28:16 +02:00
echo '
2020-02-28 11:38:24 +01:00
< td class = " text-right " >
'.moneyFormat($riga->importo).'
</ td > ' ;
2019-05-04 06:19:08 +02:00
}
2017-08-04 16:28:16 +02:00
2018-06-23 18:35:08 +02:00
// Possibilità di rimuovere una riga solo se il preventivo non è stato pagato
echo '
2017-09-11 13:08:50 +02:00
< td class = " text-center " > ' ;
2017-08-04 16:28:16 +02:00
2019-09-18 16:43:57 +02:00
if ( empty ( $record [ 'is_completato' ])) {
2018-06-23 18:35:08 +02:00
echo '
2020-01-17 17:31:07 +01:00
< div class = " btn-group " >
< a class = " btn btn-xs btn-warning " onclick = " editRow( \ ''.addslashes(get_class( $riga )).' \ ', '. $riga->id .') " >
< i class = " fa fa-edit " ></ i >
</ a >
< a class = " btn btn-xs btn-danger " onclick = " deleteRow( \ ''.addslashes(get_class( $riga )).' \ ', '. $riga->id .') " >
< i class = " fa fa-trash " ></ i >
</ a >
</ div > ' ;
2018-06-23 18:35:08 +02:00
}
2019-05-04 00:32:28 +02:00
echo '
2019-04-23 17:27:26 +02:00
< div class = " handle clickable " style = " padding:10px " >
< i class = " fa fa-sort " ></ i >
</ div > ' ;
2017-09-11 13:08:50 +02:00
2018-06-23 18:35:08 +02:00
echo '
2017-09-11 13:08:50 +02:00
</ td >
</ tr > ' ;
2018-06-23 18:35:08 +02:00
}
2017-08-04 16:28:16 +02:00
2019-05-04 06:19:08 +02:00
echo '
< script >
2020-01-17 17:31:07 +01:00
function editRow ( type , id ){
launch_modal ( " '.tr('Modifica riga').' " , " '. $module->fileurl ('row-edit.php').'?id_module= " + globals . id_module + " &id_record= " + globals . id_record + " &idriga= " + id + " &type= " + encodeURIComponent ( type ));
2019-05-04 06:19:08 +02:00
}
2018-05-18 18:12:19 +02:00
2020-01-17 17:31:07 +01:00
function deleteRow ( type , id ){
2019-07-17 18:30:20 +02:00
if ( confirm ( " '.tr('Rimuovere questa riga dal documento?').' " )){
2020-01-17 17:31:07 +01:00
redirect ( " " , {
backto : " record-edit " ,
op : " delete_riga " ,
idriga : id ,
type : type ,
}, " post " );
2019-05-04 06:19:08 +02:00
}
}
</ script > ' ;
2017-08-04 16:28:16 +02:00
2017-09-11 13:08:50 +02:00
echo '
</ tbody > ' ;
2018-06-23 18:35:08 +02:00
// Calcoli
2019-07-12 17:35:14 +02:00
$imponibile = abs ( $contratto -> imponibile );
$sconto = $contratto -> sconto ;
$totale_imponibile = abs ( $contratto -> totale_imponibile );
$iva = abs ( $contratto -> iva );
$totale = abs ( $contratto -> totale );
2017-08-04 16:28:16 +02:00
2019-07-12 17:35:14 +02:00
// Totale totale imponibile
echo '
2017-08-04 16:28:16 +02:00
< tr >
2020-02-28 11:38:24 +01:00
< td colspan = " 4 " 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 class = " text-right " >
2019-05-04 06:19:08 +02:00
'.moneyFormat($contratto->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-02-28 11:38:24 +01:00
< td colspan = " 4 " 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 class = " text-right " >
2019-05-04 06:19:08 +02:00
'.moneyFormat($contratto->sconto, 2).'
2017-08-04 16:28:16 +02:00
</ td >
< td ></ td >
</ tr > ' ;
2019-07-11 17:44:42 +02:00
// Totale totale imponibile
2017-08-04 16:28:16 +02:00
echo '
< tr >
2020-02-28 11:38:24 +01:00
< td colspan = " 4 " 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 class = " text-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 > ' ;
}
// Totale iva
echo '
< tr >
2020-02-28 11:38:24 +01:00
< td colspan = " 4 " 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 class = " text-right " >
2019-05-04 06:19:08 +02:00
'.moneyFormat($contratto->iva, 2).'
2017-08-04 16:28:16 +02:00
</ td >
< td ></ td >
</ tr > ' ;
// Totale contratto
echo '
< tr >
2020-02-28 11:38:24 +01:00
< td colspan = " 4 " 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 class = " text-right " >
2019-05-04 06:19:08 +02:00
'.moneyFormat($contratto->totale, 2).'
2017-08-04 16:28:16 +02:00
</ td >
< td ></ td >
</ tr > ' ;
echo '
</ table > ' ;
2017-09-11 13:08:50 +02:00
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 ( /^ , / , " " );
2019-07-12 17:35:14 +02:00
2017-09-11 13:08:50 +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-09-11 13:08:50 +02:00
});
}
});
});
});
</ script > ' ;