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
2022-04-01 09:58:53 +02:00
$block_edit = $record [ 'flag_completato' ];
2023-05-24 17:15:29 +02:00
$order_row_desc = $_SESSION [ 'module_' . $id_module ][ 'order_row_desc' ];
$righe = $order_row_desc ? $ddt -> getRighe () -> sortByDesc ( 'created_at' ) : $ddt -> getRighe ();
2023-09-29 15:34:02 +02:00
$colspan = $dir == 'entrata' ? '7' : '6' ;
2022-04-01 09:58:53 +02:00
2017-08-04 16:28:16 +02:00
echo '
2023-02-17 12:33:45 +01:00
< div class = " table-responsive row-list " >
2020-07-31 11:56:48 +02:00
< table class = " table table-striped table-hover table-condensed table-bordered " >
< thead >
< tr >
2022-04-01 09:58:53 +02:00
< th width = " 5 " class = " text-center " > ' ;
2024-01-15 15:30:45 +01:00
if ( ! $block_edit && sizeof ( $righe ) > 0 ) {
echo '
2022-04-01 09:58:53 +02:00
< input id = " check_all " type = " checkbox " /> ' ;
2024-01-15 15:30:45 +01:00
}
echo '
2022-04-01 09:58:53 +02:00
</ th >
2023-02-17 12:33:45 +01:00
< th width = " 35 " class = " text-center " > '.tr(' #').'</th>
2020-07-31 11:56:48 +02:00
< th > '.tr(' Descrizione ').' </ th >
2023-09-29 15:34:02 +02:00
< th class = " text-center tip " width = " 150 " > '.tr(' Q . tà ').' </ th > ' ;
2024-01-15 15:30:45 +01:00
if ( $dir == 'entrata' ) {
echo '<th class="text-center" width="150">' . tr ( 'Costo unitario' ) . '</th>' ;
}
echo '
2023-09-29 15:34:02 +02:00
< th class = " text-center " width = " 180 " > '.tr(' Prezzo unitario ').' </ th >
< th class = " text-center " width = " 140 " > '.tr(' Sconto unitario ').' </ th >
< th class = " text-center " width = " 130 " > '.tr(' Importo ').' </ th >
2023-02-17 12:33:45 +01:00
< th width = " 80 " ></ th >
2020-07-31 11:56:48 +02:00
</ tr >
</ thead >
2022-04-01 09:58:53 +02:00
< tbody class = " sortable " id = " righe " > ' ;
2017-08-04 16:28:16 +02:00
2020-01-17 17:31:07 +01:00
// Righe documento
2020-09-11 09:04:06 +02:00
$num = 0 ;
foreach ( $righe as $riga ) {
2023-12-29 16:15:38 +01:00
$show_notifica = [];
2020-09-11 09:04:06 +02:00
++ $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
}
2020-01-17 17:31:46 +01:00
echo '
2023-02-17 12:33:45 +01:00
< tr data - id = " '. $riga->id .' " data - type = " '.get_class( $riga ).' " >
< td class = " text-center " > ' ;
2023-08-04 14:54:28 +02:00
if ( ! $block_edit ) {
echo '
2023-02-17 12:33:45 +01:00
< input class = " check " type = " checkbox " /> ' ;
2023-08-04 14:54:28 +02:00
}
echo '
2023-02-17 12:33:45 +01:00
</ td >
2022-04-01 09:58:53 +02:00
2023-02-17 12:33:45 +01:00
< td class = " text-center " >
'.$num.'
</ td >
2020-05-29 15:58:47 +02:00
2023-02-17 12:33:45 +01:00
< td >
< small class = " pull-right text-right text-muted " > ' ;
2020-09-16 09:14:00 +02:00
2023-08-04 14:54:28 +02:00
$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 '
2023-02-17 12:33:45 +01:00
< 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
2023-08-04 14:54:28 +02:00
// Aggiunta dei riferimenti ai documenti
if ( $riga -> hasOriginalComponent ()) {
2020-09-14 18:38:58 +02:00
echo '
2023-08-04 14:54:28 +02:00
< br > '.reference($riga->getOriginalComponent()->getDocument(), tr(' Origine ' ));
}
echo '
2023-02-17 12:33:45 +01:00
</ small > ' ;
2020-09-14 18:38:58 +02:00
2023-08-04 14:54:28 +02:00
if ( $riga -> isArticolo ()) {
echo Modules :: link ( 'Articoli' , $riga -> idarticolo , $riga -> codice . ' - ' . $riga -> descrizione );
} else {
echo nl2br ( $riga -> descrizione );
}
2017-08-04 16:28:16 +02:00
2023-08-04 14:54:28 +02:00
if ( $riga -> isArticolo () && ! empty ( $riga -> abilita_serial )) {
if ( ! empty ( $mancanti )) {
echo '
2023-02-17 12:33:45 +01:00
< br >< b >< small class = " text-danger " > '.tr(' _NUM_ serial mancanti ' , [
'_NUM_' => $mancanti ,
]) . '</small></b>' ;
2020-03-09 13:57:13 +01:00
}
2023-08-04 14:54:28 +02:00
if ( ! empty ( $serials )) {
2020-03-09 13:57:13 +01:00
echo '
2023-08-04 14:54:28 +02:00
< br > '.tr(' SN ').' : '.implode(' , ' , $serials );
2017-08-04 16:28:16 +02:00
}
2023-08-04 14:54:28 +02:00
}
2022-11-23 13:05:27 +01:00
2023-08-04 14:54:28 +02:00
if ( $riga -> isArticolo () && ! empty ( $riga -> articolo -> barcode )) {
echo '
< br >< small >< i class = " fa fa-barcode " ></ i > '.$riga->articolo->barcode.' </ small > ' ;
}
2022-11-23 13:05:27 +01:00
2023-08-04 14:54:28 +02:00
if ( ! empty ( $riga -> note )) {
2023-02-17 12:33:45 +01:00
echo '
2023-08-04 14:54:28 +02:00
< br >< small class = " label label-default " > '.nl2br($riga->note).' </ small > ' ;
}
echo '
2023-02-17 12:33:45 +01: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 '
2023-09-29 15:34:02 +02:00
< td ></ td > ' ;
2023-10-05 10:26:57 +02:00
if ( $dir == 'entrata' ) {
echo '<td></td>' ;
}
echo '
2023-02-17 12:33:45 +01:00
< td ></ td >
< td ></ td >
< td ></ td > ' ;
2020-02-28 11:38:24 +01:00
} else {
2023-08-04 14:54:28 +02:00
// Quantità e unità di misura
echo '
2023-09-29 15:34:02 +02:00
< td >
2023-10-06 12:45:32 +02:00
{[ " type " : " number " , " name " : " qta_'. $riga->id .' " , " value " : " '. $riga->qta .' " , " min-value " : " 0 " , " onchange " : " aggiornaInline( $ (this).closest( \ 'tr \ ').data( \ 'id \ ')) " , " icon-after " : " <span class= \ 'tip \ ' title= \ ''.tr('Quantità evasa').' / '.tr('totale').': '.tr('_QTA_ / _TOT_', ['_QTA_' => numberFormat( $riga->qta_evasa , 'qta'), '_TOT_' => numberFormat( $riga->qta , 'qta')]).' \ '>'. $riga->um .' <small><i class= \ 'text-muted fa fa-info-circle \ '></i></small></span> " , " disabled " : " '.( $riga->isSconto () ? 1 : 0).' " , " disabled " : " '.( $block_edit || $riga->isSconto ()).' " ]}
2023-07-21 09:52:20 +02:00
< div class = " progress " style = " height:4px; " > ' ;
2023-08-04 14:54:28 +02:00
// Visualizzazione evasione righe per documento
$evasione_bar = [];
$evasione_bar [ 'dt_righe_ddt' ] = 'info' ;
$evasione_bar [ 'co_righe_documenti' ] = 'primary' ;
$evasione_bar [ 'in_righe_interventi' ] = 'warning' ;
$evasione_bar [ 'or_righe_ordini' ] = 'success' ;
foreach ( $evasione_bar as $table => $color ) {
$righe_ev = $dbo -> table ( $table ) -> where ( 'original_id' , $riga -> id ) -> where ( 'original_type' , get_class ( $riga )) -> get ();
2023-12-04 17:40:24 +01:00
if ( $righe_ev -> count () > 0 ) {
$perc_ev = $righe_ev -> sum ( 'qta' ) * 100 / $riga -> qta ;
if ( $perc_ev > 0 ) {
echo '
< div class = " progress-bar progress-bar-'. $color .' " style = " width:'. $perc_ev .'% " ></ div > ' ;
}
2023-08-04 14:54:28 +02:00
}
}
echo '
2023-02-17 12:33:45 +01:00
</ div >
</ td > ' ;
2017-08-04 16:28:16 +02:00
2023-12-29 16:15:38 +01:00
if ( $riga -> isArticolo ()) {
$id_anagrafica = $ddt -> idanagrafica ;
$show_notifica = getPrezzoConsigliato ( $id_anagrafica , $dir , $riga -> idarticolo , $riga );
}
2023-09-29 15:34:02 +02:00
// Costi unitari
if ( $dir == 'entrata' ) {
2023-10-06 12:45:32 +02:00
if ( $riga -> isSconto ()) {
echo '
< td ></ td > ' ;
} else {
echo '
2023-09-29 15:34:02 +02:00
< td >
{[ " type " : " number " , " name " : " costo_'. $riga->id .' " , " value " : " '. $riga->costo_unitario .' " , " onchange " : " aggiornaInline( $ (this).closest( \ 'tr \ ').data( \ 'id \ ')) " , " icon-after " : " '.currency().' " , " disabled " : " '. $block_edit .' " ]}
</ td > ' ;
2023-10-06 12:45:32 +02:00
}
2017-08-04 16:28:16 +02:00
}
2020-02-28 11:38:24 +01:00
2023-09-29 15:34:02 +02:00
// Prezzi unitari
2023-10-06 12:45:32 +02:00
if ( $riga -> isSconto ()) {
echo '
< td ></ td > ' ;
} else {
echo '
2023-09-29 15:34:02 +02:00
< td >
2023-12-29 16:15:38 +01:00
'.($show_notifica[' show_notifica_prezzo '] ? ' < i class = " fa fa-info-circle notifica-prezzi " ></ i > ' : ' ').'
2023-09-29 15:34:02 +02:00
{[ " type " : " number " , " name " : " prezzo_'. $riga->id .' " , " value " : " '. $riga->prezzo_unitario_corrente .' " , " onchange " : " aggiornaInline( $ (this).closest( \ 'tr \ ').data( \ 'id \ ')) " , " icon-before " : " '.(abs( $riga->provvigione_unitaria ) > 0 ? '<span class= \ 'tip text-info \ ' title= \ ''.provvigioneInfo( $riga ).' \ '><small><i class= \ 'fa fa-handshake-o \ '></i></small></span>' : '').' " , " icon-after " : " '.currency().' " , " disabled " : " '. $block_edit .' " ]}
2023-02-17 12:33:45 +01:00
</ td > ' ;
2023-10-06 12:45:32 +02:00
}
2023-08-04 14:54:28 +02:00
2023-09-29 15:34:02 +02:00
// Sconto unitario
$tipo_sconto = '' ;
2023-09-21 16:26:22 +02:00
if ( $riga [ 'sconto' ] == 0 ) {
$tipo_sconto = ( setting ( 'Tipo di sconto predefinito' ) == '%' ? 'PRC' : 'UNT' );
}
2023-09-29 15:34:02 +02:00
echo '
< td >
2023-12-29 16:15:38 +01:00
'.($show_notifica[' show_notifica_sconto '] ? ' < i class = " fa fa-info-circle notifica-prezzi " ></ i > ' : ' ').'
2023-10-06 12:45:32 +02:00
{[ " type " : " number " , " name " : " sconto_'. $riga->id .' " , " value " : " '.( $riga->sconto_percentuale ?: $riga->sconto_unitario_corrente ).' " , " onchange " : " aggiornaInline( $ (this).closest( \ 'tr \ ').data( \ 'id \ ')) " , " icon-after " : " '.( $riga->isSconto () ? currency() : 'choice|untprc|'.( $tipo_sconto ?: $riga->tipo_sconto )).' " , " disabled " : " '. $block_edit .' " ]}
2023-02-17 12:33:45 +01:00
</ 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 '
2023-02-17 12:33:45 +01:00
< td class = " text-right " >
' . moneyFormat ( $riga -> importo );
2023-01-18 16:07:48 +01:00
2023-08-04 14:54:28 +02:00
// Iva
echo '
2023-02-17 12:33:45 +01: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 > ' ;
2020-02-28 11:38:24 +01:00
}
2017-08-04 16:28:16 +02:00
2023-08-04 14:54:28 +02:00
// Possibilità di rimuovere una riga solo se il ddt non è evaso
echo '
2023-02-17 12:33:45 +01:00
< td class = " text-center " > ' ;
2017-08-04 16:28:16 +02:00
2023-08-04 14:54:28 +02:00
if ( $record [ 'flag_completato' ] == 0 ) {
echo '
2023-02-17 12:33:45 +01:00
< div class = " input-group-btn " > ' ;
2017-08-04 16:28:16 +02:00
2023-08-04 14:54:28 +02:00
if ( $riga -> isArticolo () && ! empty ( $riga -> abilita_serial )) {
echo '
2023-02-17 12:33:45 +01:00
< a class = " btn btn-primary btn-xs " title = " '.tr('Modifica seriali della riga').' " onclick = " modificaSeriali(this) " >
< i class = " fa fa-barcode " ></ i >
</ a > ' ;
2023-08-04 14:54:28 +02:00
}
2019-05-04 00:32:28 +02:00
2023-08-04 14:54:28 +02:00
echo '
2023-02-17 12:33:45 +01: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).closest( \ 'tr \ ').data( \ 'id \ ')]) " >
< i class = " fa fa-trash " ></ i >
</ a >
2023-05-24 17:15:29 +02:00
< a class = " btn btn-xs btn-default handle '.( $order_row_desc ? 'disabled' : '').' " title = " '.tr('Modifica ordine delle righe').' " >
2023-02-17 12:33:45 +01:00
< i class = " fa fa-sort " ></ i >
</ a >
</ div > ' ;
2023-08-04 14:54:28 +02:00
}
2023-02-17 12:33:45 +01:00
2023-08-04 14:54:28 +02:00
echo '
2023-02-17 12:33:45 +01: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 );
2023-04-18 12:20:50 +02:00
$sconto = - $ddt -> sconto ;
2019-07-12 17:35:14 +02:00
$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
2023-02-17 12:33:45 +01:00
// Totale totale imponibile
2017-08-04 16:28:16 +02:00
echo '
2020-07-31 11:56:48 +02:00
< tr >
2023-02-17 12:33:45 +01:00
< td colspan = " '. $colspan .' " class = " text-right " >
2020-07-31 11:56:48 +02:00
< b > '.tr(' Imponibile ', [], [' upper ' => true]).' :</ b >
</ td >
< td class = " text-right " >
'.moneyFormat($imponibile, 2).'
</ td >
< 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 >
2023-02-17 12:33:45 +01:00
< td colspan = " '. $colspan .' " class = " text-right " >
2023-04-18 12:20:50 +02:00
< b >< span class = " tip " title = " '.tr('Un importo negativo indica uno sconto, mentre uno positivo indica una maggiorazione').' " > < i class = " fa fa-question-circle-o " ></ i > '.tr(' Sconto / maggiorazione ', [], [' upper ' => true]).' :</ span ></ b >
2020-07-31 11:56:48 +02:00
</ td >
< td class = " text-right " >
'.moneyFormat($sconto, 2).'
</ td >
< td ></ td >
</ tr > ' ;
2017-08-04 16:28:16 +02:00
2023-02-17 12:33:45 +01:00
// Totale totale imponibile
2017-09-10 14:35:41 +02:00
echo '
2020-07-31 11:56:48 +02:00
< tr >
2023-02-17 12:33:45 +01:00
< td colspan = " '. $colspan .' " class = " text-right " >
2020-07-31 11:56:48 +02:00
< b > '.tr(' Totale imponibile ', [], [' upper ' => true]).' :</ b >
</ td >
< td class = " text-right " >
'.moneyFormat($totale_imponibile, 2).'
</ td >
< td ></ td >
</ tr > ' ;
2017-08-04 16:28:16 +02:00
}
2023-02-17 12:33:45 +01:00
// Totale iva
2019-07-12 17:35:14 +02:00
echo '
2020-07-31 11:56:48 +02:00
< tr >
2023-02-17 12:33:45 +01:00
< td colspan = " '. $colspan .' " class = " text-right " >
< b > '.tr(' Iva ', [], [' upper ' => true]).' :</ b >
2020-07-31 11:56:48 +02:00
</ td >
< td class = " text-right " >
'.moneyFormat($iva, 2).'
</ td >
< td ></ td >
</ tr > ' ;
2017-08-04 16:28:16 +02:00
2023-02-17 12:33:45 +01:00
// Totale ddt
2017-08-04 16:28:16 +02:00
echo '
2020-07-31 11:56:48 +02:00
< tr >
2023-02-17 12:33:45 +01:00
< td colspan = " '. $colspan .' " class = " text-right " >
2023-04-27 17:15:24 +02:00
< b > '.tr(' Totale documento ', [], [' upper ' => true]).' :</ b >
2020-07-31 11:56:48 +02:00
</ td >
< td class = " text-right " >
'.moneyFormat($totale, 2).'
</ td >
< 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 >
2023-02-17 12:33:45 +01:00
< td colspan = " '. $colspan .' " 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 >
2023-02-17 12:33:45 +01:00
< td colspan = " '. $colspan .' " class = " text-right " >
2021-04-06 15:10:55 +02:00
< b > '.tr(' Netto a pagare ', [], [' upper ' => true]).' :</ b >
</ td >
< td class = " text-right " >
'.moneyFormat($netto_a_pagare, 2).'
</ td >
< td ></ td >
</ tr > ' ;
}
2022-05-19 17:42:41 +02:00
// Provvigione
2023-08-04 14:54:28 +02:00
if ( ! empty ( $ddt -> provvigione )) {
2022-05-19 17:42:41 +02:00
echo '
< tr >
2023-02-17 12:33:45 +01:00
< td colspan = " '. $colspan .' " class = " text-right " >
'.tr(' Provvigioni ', [], [' upper ' => false]).' :
2022-05-19 17:42:41 +02:00
</ td >
< td class = " text-right " >
'.moneyFormat($ddt->provvigione).'
</ td >
< td ></ td >
</ tr > ' ;
2023-01-18 16:07:48 +01:00
2023-02-17 12:33:45 +01:00
echo '
< tr >
< td colspan = " '. $colspan .' " class = " text-right " >
'.tr(' Netto da provvigioni ', [], [' upper ' => false]).' :
</ td >
< td class = " text-right " >
'.moneyFormat($ddt->totale_imponibile - $ddt->provvigione).'
</ td >
< td ></ td >
2023-08-04 14:54:28 +02:00
</ tr > ' ;
2022-05-19 17:42:41 +02:00
}
2017-08-04 16:28:16 +02:00
echo '
2022-04-01 09:58:53 +02:00
</ table > ' ;
if ( ! $block_edit && sizeof ( $righe ) > 0 ) {
echo '
< div class = " btn-group " >
2022-11-28 14:54:32 +01:00
< button type = " button " class = " btn btn-xs btn-default disabled " id = " duplica_righe " onclick = " duplicaRiga(getSelectData()); " >
2022-04-01 09:58:53 +02:00
< i class = " fa fa-copy " ></ i >
</ button >
2022-11-28 14:54:32 +01:00
< button type = " button " class = " btn btn-xs btn-default disabled " id = " elimina_righe " onclick = " rimuoviRiga(getSelectData()); " >
2022-04-01 09:58:53 +02:00
< i class = " fa fa-trash " ></ i >
2023-05-04 09:57:01 +02:00
</ button > ' ;
2023-08-04 14:54:28 +02:00
if ( $dir == 'entrata' ) {
echo '
2023-09-25 16:53:28 +02:00
< button type = " button " class = " btn btn-xs btn-default disabled " id = " confronta_righe " onclick = " confrontaRighe(getSelectData()); " >
'.tr(' Confronta prezzi ').'
</ button > ' ;
2023-08-04 14:54:28 +02:00
}
echo '
2023-09-25 16:53:28 +02:00
< button type = " button " class = " btn btn-xs btn-default disabled " id = " aggiorna_righe " onclick = " aggiornaRighe(getSelectData()); " >
'.tr(' Aggiorna prezzi ').'
</ button >
2022-04-01 09:58:53 +02:00
</ div > ' ;
}
2017-08-04 16:28:16 +02:00
echo '
2022-04-01 09:58:53 +02:00
</ div >
2017-08-04 16:28:16 +02:00
< 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
2023-04-06 13:11:38 +02:00
content_was_modified = false ;
2021-03-29 18:31:23 +02:00
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
}
2022-04-01 09:58:53 +02:00
// Estraggo le righe spuntate
function getSelectData () {
let data = new Array ();
$ ( \ ' #righe\').find(\'.check:checked\').each(function (){
data . push ( $ ( this ) . closest ( \ ' tr\ ' ) . data ( \ ' id\ ' ));
});
return data ;
}
2023-04-27 14:35:02 +02:00
function confrontaRighe ( id ) {
2023-07-21 09:58:20 +02:00
openModal ( " '.tr('Confronta prezzi').' " , " '. $module->fileurl ('modals/confronta_righe.php').'?id_module= " + globals . id_module + " &id_record= " + globals . id_record + " &righe= " + id );
2023-04-27 14:35:02 +02:00
}
2023-09-25 16:53:28 +02:00
function aggiornaRighe ( id ) {
swal ({
title : " '.tr('Aggiornare prezzi di queste righe?').' " ,
html : " '.tr('Confermando verranno aggiornati i prezzi delle righe secondo i listini ed i prezzi predefiniti collegati all \ 'articolo e ai piani sconto collegati all \ 'anagrafica.').' " ,
type : " warning " ,
showCancelButton : true ,
confirmButtonText : " '.tr('Sì').' "
}) . then ( function () {
$ . ajax ({
url : globals . rootdir + " /actions.php " ,
type : " POST " ,
data : {
id_module : globals . id_module ,
id_record : globals . id_record ,
op : " update-price " ,
righe : id ,
},
success : function ( response ) {
renderMessages ();
caricaRighe ( null );
},
error : function () {
renderMessages ();
caricaRighe ( null );
}
});
}) . catch ( swal . noop );
}
2022-04-01 09:58:53 +02:00
function rimuoviRiga ( id ) {
2020-07-06 13:19:20 +02:00
swal ({
2022-04-01 09:58:53 +02:00
title : " '.tr('Rimuovere queste righe?').' " ,
html : " '.tr('Sei sicuro di volere rimuovere queste righe dal documento?').' '.tr( " L 'operazione è irreversibile").' . " ,
2020-07-06 13:19:20 +02:00
type : " warning " ,
showCancelButton : true ,
confirmButtonText : " '.tr('Sì').' "
}) . then ( function () {
$ . ajax ({
url : globals . rootdir + " /actions.php " ,
type : " POST " ,
dataType : " json " ,
data : {
id_module : globals . id_module ,
id_record : globals . id_record ,
op : " delete_riga " ,
2022-04-01 09:58:53 +02:00
righe : id ,
},
success : function ( response ) {
2023-09-25 16:53:28 +02:00
renderMessages ();
caricaRighe ( null );
2022-04-01 09:58:53 +02:00
},
error : function () {
2023-09-25 16:53:28 +02:00
renderMessages ();
caricaRighe ( null );
2022-04-01 09:58:53 +02:00
}
});
}) . catch ( swal . noop );
}
function duplicaRiga ( id ) {
swal ({
title : " '.tr('Duplicare queste righe?').' " ,
html : " '.tr('Sei sicuro di volere queste righe del documento?').' " ,
type : " warning " ,
showCancelButton : true ,
confirmButtonText : " '.tr('Sì').' "
}) . then ( function () {
$ . ajax ({
url : globals . rootdir + " /actions.php " ,
type : " POST " ,
dataType : " json " ,
data : {
id_module : globals . id_module ,
id_record : globals . id_record ,
op : " copy_riga " ,
righe : id ,
2020-07-06 13:19:20 +02:00
},
success : function ( response ) {
2023-09-25 16:53:28 +02:00
renderMessages ();
caricaRighe ( null );
2020-07-06 13:19:20 +02:00
},
error : function () {
2023-09-25 16:53:28 +02:00
renderMessages ();
caricaRighe ( null );
2020-07-06 13:19:20 +02:00
}
});
}) . 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
});
2022-04-01 09:58:53 +02:00
$ ( " .check " ) . on ( " change " , function () {
let checked = 0 ;
$ ( " .check " ) . each ( function () {
if ( $ ( this ) . is ( " :checked " )) {
checked = 1 ;
}
});
if ( checked ) {
$ ( " #elimina_righe " ) . removeClass ( " disabled " );
$ ( " #duplica_righe " ) . removeClass ( " disabled " );
2023-04-27 14:35:02 +02:00
$ ( " #confronta_righe " ) . removeClass ( " disabled " );
2023-09-25 16:53:28 +02:00
$ ( " #aggiorna_righe " ) . removeClass ( " disabled " );
2023-09-28 16:08:45 +02:00
$ ( " #elimina " ) . addClass ( " disabled " );
2022-04-01 09:58:53 +02:00
} else {
$ ( " #elimina_righe " ) . addClass ( " disabled " );
$ ( " #duplica_righe " ) . addClass ( " disabled " );
2023-04-27 14:35:02 +02:00
$ ( " #confronta_righe " ) . addClass ( " disabled " );
2023-09-28 16:08:45 +02:00
$ ( " #aggiorna_righe " ) . addClass ( " disabled " );
$ ( " #elimina " ) . removeClass ( " disabled " );
2022-04-01 09:58:53 +02:00
}
});
$ ( " #check_all " ) . click ( function (){
if ( $ ( this ) . is ( " :checked " ) ){
$ ( " .check " ) . each ( function (){
if ( ! $ ( this ) . is ( " :checked " ) ){
$ ( this ) . trigger ( " click " );
}
});
} else {
$ ( " .check " ) . each ( function (){
if ( $ ( this ) . is ( " :checked " ) ){
$ ( this ) . trigger ( " click " );
}
});
}
});
2023-02-17 12:33:45 +01:00
$ ( " .tipo_icon_after " ) . on ( " change " , function () {
aggiornaInline ( $ ( this ) . closest ( " tr " ) . data ( " id " ));
});
function aggiornaInline ( id ) {
content_was_modified = false ;
var qta = input ( " qta_ " + id ) . get ();
var sconto = input ( " sconto_ " + id ) . get ();
var tipo_sconto = input ( " tipo_sconto_ " + id ) . get ();
2023-09-29 15:34:02 +02:00
var prezzo = input ( " prezzo_ " + id ) . get ();
var costo = input ( " costo_ " + id ) . get ();
2023-02-17 12:33:45 +01:00
$ . ajax ({
url : globals . rootdir + " /actions.php " ,
type : " POST " ,
data : {
id_module : globals . id_module ,
id_record : globals . id_record ,
op : " update_inline " ,
riga_id : id ,
qta : qta ,
sconto : sconto ,
tipo_sconto : tipo_sconto ,
2023-09-29 15:34:02 +02:00
prezzo : prezzo ,
costo : costo
2023-02-17 12:33:45 +01:00
},
success : function ( response ) {
caricaRighe ( id );
renderMessages ();
},
error : function () {
caricaRighe ( null );
}
});
}
init ();
2020-06-09 16:59:26 +02:00
</ script > ' ;