2017-08-04 16:28:16 +02:00
< ? php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager : il software gestionale open source per l ' assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright ( C ) DevCode s . r . l .
2020-09-07 15:04:06 +02:00
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < https :// www . gnu . org / licenses />.
*/
2017-08-04 16:28:16 +02:00
2020-09-14 10:49:23 +02:00
include_once __DIR__ . '/init.php' ;
2017-08-04 16:28:16 +02:00
echo '
2020-07-31 11:56:48 +02:00
< div class = " table-responsive " >
< table class = " table table-striped table-hover table-condensed table-bordered " >
< thead >
< tr >
< th width = " 35 " class = " text-center " > '.tr(' #').'</th>
< 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 >
< tbody class = " sortable " > ' ;
2017-08-04 16:28:16 +02:00
2020-01-17 17:31:07 +01:00
// Righe documento
$righe = $ddt -> getRighe ();
2020-09-11 09:04:06 +02:00
$num = 0 ;
foreach ( $righe as $riga ) {
++ $num ;
2020-01-17 17:31:07 +01:00
$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-07-31 11:56:48 +02:00
< tr data - id = " '. $riga->id .' " data - type = " '.get_class( $riga ).' " '.$extra.' >
< td class = " text-center " >
2020-09-11 09:04:06 +02:00
'.$num.'
2020-07-31 11:56:48 +02:00
</ td >
2020-05-29 15:58:47 +02:00
2020-09-16 09:14:00 +02:00
< td >
< small class = " pull-right text-right text-muted " > ' ;
$numero_riferimenti_riga = $riga -> referenceTargets () -> count ();
$numero_riferimenti_collegati = $riga -> referenceSources () -> count ();
$riferimenti_presenti = $numero_riferimenti_riga ;
$testo_aggiuntivo = $riferimenti_presenti ? $numero_riferimenti_riga : '' ;
echo '
< button type = " button " class = " btn btn-xs btn-'.( $riferimenti_presenti ? 'primary' : 'info').' " onclick = " apriRiferimenti(this) " >
< i class = " fa fa-chevron-right " ></ i > '.tr(' Riferimenti ').' '.$testo_aggiuntivo.'
</ button > ' ;
2020-07-06 13:19:20 +02:00
2020-09-14 18:38:58 +02:00
// Aggiunta dei riferimenti ai documenti
2020-09-22 20:28:37 +02:00
if ( $riga -> hasOriginalComponent ()) {
2020-09-14 18:38:58 +02:00
echo '
2020-09-22 20:28:37 +02:00
< br > '.reference($riga->getOriginalComponent()->getDocument(), tr(' Origine ' ));
2020-09-14 18:38:58 +02:00
}
2020-09-16 09:14:00 +02:00
echo '
</ small > ' ;
2020-09-14 18:38:58 +02:00
2020-03-09 13:57:13 +01:00
if ( $riga -> isArticolo ()) {
2020-07-31 11:56:48 +02:00
echo Modules :: link ( 'Articoli' , $riga -> idarticolo , $riga -> codice . ' - ' . $riga -> descrizione );
2020-03-09 13:57:13 +01:00
} 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 '
2020-07-31 11:56:48 +02:00
< br >< b >< small class = " text-danger " > '.tr(' _NUM_ serial mancanti ' , [
'_NUM_' => $mancanti ,
]) . '</small></b>' ;
2020-03-09 13:57:13 +01:00
}
if ( ! empty ( $serials )) {
echo '
2020-07-31 11:56:48 +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
echo '
2020-07-31 11:56:48 +02:00
</ td > ' ;
2017-08-04 16:28:16 +02:00
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-07-31 11:56:48 +02:00
< td class = " text-center " >
'.numberFormat($riga->qta_rimanente, ' qta ').' / '.numberFormat($riga->qta, ' qta ').' '.$riga->um.'
</ td > ' ;
2017-08-04 16:28:16 +02:00
2020-02-28 11:38:24 +01:00
// Prezzi unitari
2020-01-17 17:31:46 +01:00
echo '
2020-07-31 11:56:48 +02: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 '
2020-07-31 11:56:48 +02:00
< br >< small class = " text-muted " >
'.tr(' Acquisto ').' : '.moneyFormat($riga->costo_unitario).'
</ small > ' ;
2020-02-28 11:38:24 +01:00
}
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-07-31 11:56:48 +02: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 '
2020-07-31 11:56:48 +02:00
</ td > ' ;
2017-08-04 16:28:16 +02:00
2020-02-28 11:38:24 +01:00
// Iva
2020-01-17 17:31:46 +01:00
echo '
2020-07-31 11:56:48 +02:00
< td class = " text-right " >
2021-02-23 11:34:37 +01:00
'.moneyFormat($riga->iva_unitaria_scontata).'
2020-07-31 11:56:48 +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 >
</ td > ' ;
2017-08-04 16:28:16 +02:00
2020-02-28 11:38:24 +01:00
// Importo
2018-01-18 19:03:06 +01:00
echo '
2020-07-31 11:56:48 +02:00
< td class = " text-right " >
'.moneyFormat($riga->importo).'
</ 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 '
2020-07-31 11:56:48 +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 ) {
2020-07-06 13:19:20 +02:00
echo '
2020-07-31 11:56:48 +02:00
< div class = " input-group-btn " > ' ;
2017-08-04 16:28:16 +02:00
2020-03-09 13:57:13 +01:00
if ( $riga -> isArticolo () && ! empty ( $riga -> abilita_serial )) {
2020-07-06 13:19:20 +02:00
echo '
2020-07-31 11:56:48 +02:00
< a class = " btn btn-primary btn-xs " title = " '.tr('Modifica seriali della riga').' " onclick = " modificaSeriali(this) " >
< i class = " fa fa-barcode " ></ i >
</ a > ' ;
2020-01-17 17:31:46 +01:00
}
2017-08-04 16:28:16 +02:00
2020-07-06 13:19:20 +02:00
echo '
2020-07-31 11:56:48 +02:00
< a class = " btn btn-xs btn-warning " title = " '.tr('Modifica riga').' " onclick = " modificaRiga(this) " >
< i class = " fa fa-edit " ></ i >
</ a >
< a class = " btn btn-xs btn-danger " title = " '.tr('Rimuovi riga').' " onclick = " rimuoviRiga(this) " >
< i class = " fa fa-trash " ></ i >
</ a >
< a class = " btn btn-xs btn-default handle " title = " '.tr('Modifica ordine delle righe').' " >
< i class = " fa fa-sort " ></ i >
</ a >
</ div > ' ;
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 '
2020-07-31 11:56:48 +02:00
</ td >
</ tr > ' ;
2017-08-04 16:28:16 +02:00
}
echo '
2020-07-31 11:56:48 +02:00
</ tbody > ' ;
2017-08-04 16:28:16 +02:00
// 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 );
2021-04-06 15:10:55 +02:00
$sconto_finale = $ddt -> getScontoFinale ();
$netto_a_pagare = $ddt -> netto ;
2017-08-04 16:28:16 +02:00
// IMPONIBILE
echo '
2020-07-31 11:56:48 +02:00
< tr >
< td colspan = " 5 " class = " text-right " >
< b > '.tr(' Imponibile ', [], [' upper ' => true]).' :</ b >
</ td >
2017-08-04 16:28:16 +02:00
2020-07-31 11:56:48 +02:00
< td class = " text-right " >
'.moneyFormat($imponibile, 2).'
</ td >
2017-08-04 16:28:16 +02:00
2020-07-31 11:56:48 +02:00
< td ></ td >
</ tr > ' ;
2017-08-04 16:28:16 +02:00
2019-07-12 17:35:14 +02:00
// SCONTO
if ( ! empty ( $sconto )) {
2017-08-04 16:28:16 +02:00
echo '
2020-07-31 11:56:48 +02:00
< tr >
< td colspan = " 5 " class = " text-right " >
< 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 >
</ td >
2017-08-04 16:28:16 +02:00
2020-07-31 11:56:48 +02:00
< td class = " text-right " >
'.moneyFormat($sconto, 2).'
</ td >
2017-08-04 16:28:16 +02:00
2020-07-31 11:56:48 +02:00
< td ></ td >
</ tr > ' ;
2017-08-04 16:28:16 +02:00
2019-07-11 17:44:42 +02:00
// TOTALE IMPONIBILE
2017-09-10 14:35:41 +02:00
echo '
2020-07-31 11:56:48 +02:00
< tr >
< td colspan = " 5 " class = " text-right " >
< b > '.tr(' Totale imponibile ', [], [' upper ' => true]).' :</ b >
</ td >
2017-08-04 16:28:16 +02:00
2020-07-31 11:56:48 +02:00
< td class = " text-right " >
'.moneyFormat($totale_imponibile, 2).'
</ td >
2017-08-04 16:28:16 +02:00
2020-07-31 11:56:48 +02:00
< td ></ td >
</ tr > ' ;
2017-08-04 16:28:16 +02:00
}
2019-07-12 17:35:14 +02:00
// IVA
echo '
2020-07-31 11:56:48 +02:00
< tr >
< td colspan = " 5 " class = " text-right " >
< b > '.tr(' IVA ', [], [' upper ' => true]).' :</ b >
</ td >
2017-08-04 16:28:16 +02:00
2020-07-31 11:56:48 +02:00
< td class = " text-right " >
'.moneyFormat($iva, 2).'
</ td >
2017-08-04 16:28:16 +02:00
2020-07-31 11:56:48 +02:00
< td ></ td >
</ tr > ' ;
2017-08-04 16:28:16 +02:00
// TOTALE
echo '
2020-07-31 11:56:48 +02:00
< tr >
< td colspan = " 5 " class = " text-right " >
< b > '.tr(' Totale ', [], [' upper ' => true]).' :</ b >
</ td >
2017-08-04 16:28:16 +02:00
2020-07-31 11:56:48 +02:00
< td class = " text-right " >
'.moneyFormat($totale, 2).'
</ td >
2017-08-04 16:28:16 +02:00
2020-07-31 11:56:48 +02:00
< td ></ td >
</ tr > ' ;
2017-08-04 16:28:16 +02:00
2022-01-15 17:30:49 +01:00
// SCONTO IN FATTURA
2021-04-06 15:10:55 +02:00
if ( ! empty ( $sconto_finale )) {
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
2022-01-15 17:30:49 +01:00
< b > '.tr(' Sconto in fattura ', [], [' upper ' => true]).' :</ b >
2021-04-06 15:10:55 +02:00
</ td >
< td class = " text-right " >
'.moneyFormat($sconto_finale, 2).'
</ td >
< td ></ td >
</ tr > ' ;
}
// NETTO A PAGARE
if ( $totale != $netto_a_pagare ) {
echo '
< tr >
< td colspan = " 5 " class = " text-right " >
< b > '.tr(' Netto a pagare ', [], [' upper ' => true]).' :</ b >
</ td >
< td class = " text-right " >
'.moneyFormat($netto_a_pagare, 2).'
</ td >
< td ></ td >
</ tr > ' ;
}
2017-08-04 16:28:16 +02:00
echo '
2020-07-31 11:56:48 +02:00
</ table >
</ div > ' ;
2017-08-04 16:28:16 +02:00
echo '
< script >
2020-08-03 12:08:52 +02:00
async function modificaRiga ( button ) {
2020-09-03 11:55:15 +02:00
let riga = $ ( button ) . closest ( " tr " );
let id = riga . data ( " id " );
let type = riga . data ( " type " );
2020-07-06 13:19:20 +02:00
2020-08-03 12:08:52 +02:00
// Salvataggio via AJAX
2021-03-29 18:31:23 +02:00
await salvaForm ( " #edit-form " , {}, button );
2020-08-03 12:08:52 +02:00
2021-03-29 18:31:23 +02:00
// Chiusura tooltip
if ( $ ( button ) . hasClass ( " tooltipstered " ))
$ ( button ) . tooltipster ( " close " );
2020-08-03 12:43:30 +02:00
2021-03-29 18:31:23 +02:00
// Apertura modal
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 );
2020-07-06 13:19:20 +02:00
}
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 () {
2020-09-03 11:55:15 +02:00
let riga = $ ( button ) . closest ( " tr " );
let id = riga . data ( " id " );
let type = riga . data ( " type " );
2020-07-06 13:19:20 +02:00
$ . 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 );
}
function modificaSeriali ( button ) {
2020-09-03 11:55:15 +02:00
let riga = $ ( button ) . closest ( " tr " );
let id = riga . data ( " id " );
let type = riga . data ( " type " );
2020-07-06 13:19:20 +02:00
openModal ( " '.tr('Aggiorna SN').' " , globals . rootdir + " /modules/fatture/add_serial.php?id_module= " + globals . id_module + " &id_record= " + globals . id_record + " &riga_id= " + id + " &riga_type= " + type );
}
function apriRiferimenti ( button ) {
2020-09-03 11:55:15 +02:00
let riga = $ ( button ) . closest ( " tr " );
let id = riga . data ( " id " );
let type = riga . data ( " type " );
2020-07-06 13:19:20 +02:00
2021-02-18 17:46:38 +01:00
openModal ( " '.tr('Riferimenti riga').' " , globals . rootdir + " /actions.php?id_module= " + globals . id_module + " &id_record= " + globals . id_record + " &op=visualizza_righe_riferimenti&riga_id= " + id + " &riga_type= " + type )
2020-07-06 13:19:20 +02:00
}
2020-07-31 14:25:50 +02:00
$ ( document ) . ready ( function () {
2021-07-20 20:48:02 +02:00
sortable ( " .sortable " , {
axis : " y " ,
handle : " .handle " ,
cursor : " move " ,
dropOnEmpty : true ,
scroll : true ,
})[ 0 ] . addEventListener ( " sortupdate " , function ( e ) {
let order = $ ( " .table tr[data-id] " ) . toArray () . map ( a => $ ( a ) . data ( " id " ))
$ . post ( globals . rootdir + " /actions.php " , {
id_module : globals . id_module ,
id_record : globals . id_record ,
op : " update_position " ,
order : order . join ( " , " ),
});
});
2017-08-04 16:28:16 +02:00
});
2020-06-09 16:59:26 +02:00
</ script > ' ;