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 >
2020-05-29 15:58:47 +02:00
< tr >
< th width = " 35 " class = " text-center " > '.tr(' #').'</th>
2018-05-18 18:12:19 +02:00
< 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 >
2020-07-05 00:22:22 +02:00
< th width = " 100 " ></ th >
2018-05-18 18:12:19 +02:00
</ 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 '
2020-07-06 17:58:48 +02:00
< tr data - id = " '. $riga->id .' " data - type = " '.get_class( $riga ).' " >
< td class = " text-center " >
'.(($riga->order) + 1).'
</ td > ' ;
2020-05-29 15:58:47 +02:00
2019-05-04 06:19:08 +02:00
// Descrizione
$descrizione = nl2br ( $riga -> descrizione );
if ( $riga -> isArticolo ()) {
2020-07-06 13:32:43 +02:00
$descrizione = Modules :: link ( 'Articoli' , $riga -> idarticolo , $riga -> codice . ' - ' . $descrizione );
2019-05-04 06:19:08 +02:00
}
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 '
2020-07-05 00:22:22 +02:00
< br >< small class = " text-muted " >
2020-02-28 11:38:24 +01:00
'.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).'
2020-07-05 00:22:22 +02:00
< br >< small class = " '.(( $riga->aliquota ->deleted_at) ? 'text-red' : '').' text-muted " > '.$riga->aliquota->descrizione.(($riga->aliquota->esente) ? ' ( '.$riga->aliquota->codice_natura_fe.' ) ' : null).' </ small >
2020-02-28 11:38:24 +01:00
</ 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 " >
2020-07-06 13:19:20 +02:00
< a class = " btn btn-xs btn-warning " title = " '.tr('Modifica riga').' " onclick = " modificaRiga(this) " >
2020-01-17 17:31:07 +01:00
< i class = " fa fa-edit " ></ i >
</ a >
2020-07-06 13:19:20 +02:00
< a class = " btn btn-xs btn-danger " title = " '.tr('Rimuovi riga').' " onclick = " rimuoviRiga(this) " >
2020-01-17 17:31:07 +01:00
< i class = " fa fa-trash " ></ i >
</ a >
2020-07-05 00:22:22 +02:00
2020-07-06 13:19:20 +02:00
< a class = " btn btn-xs btn-default handle " title = " '.tr('Modifica ordine delle righe').' " >
2020-07-05 00:22:22 +02:00
< i class = " fa fa-sort " ></ i >
</ a >
2020-01-17 17:31:07 +01:00
</ div > ' ;
2018-06-23 18:35:08 +02:00
}
2019-05-04 00:32:28 +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
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-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 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-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 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-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 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-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 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-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 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 >
2020-07-06 13:19:20 +02:00
function modificaRiga ( button ) {
var riga = $ ( button ) . closest ( " tr " );
var id = riga . data ( " id " );
var type = riga . data ( " type " );
openModal ( " '.tr('Modifica riga').' " , " '. $module->fileurl ('row-edit.php').'?id_module= " + globals . id_module + " &id_record= " + globals . id_record + " &riga_id= " + id + " &riga_type= " + type )
}
function rimuoviRiga ( button ) {
swal ({
title : " '.tr('Rimuovere questa riga?').' " ,
html : " '.tr('Sei sicuro di volere rimuovere questa riga dal documento?').' '.tr( " L 'operazione è irreversibile").' . " ,
type : " warning " ,
showCancelButton : true ,
confirmButtonText : " '.tr('Sì').' "
}) . then ( function () {
var riga = $ ( button ) . closest ( " tr " );
var id = riga . data ( " id " );
var type = riga . data ( " type " );
$ . ajax ({
url : globals . rootdir + " /actions.php " ,
type : " POST " ,
dataType : " json " ,
data : {
id_module : globals . id_module ,
id_record : globals . id_record ,
op : " delete_riga " ,
riga_type : type ,
riga_id : id ,
},
success : function ( response ) {
location . reload ();
},
error : function () {
location . reload ();
}
});
}) . catch ( swal . noop );
}
2017-09-11 13:08:50 +02:00
$ ( 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
});
}
});
});
});
2020-06-09 16:59:26 +02:00
</ script > ' ;