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
2024-03-15 12:33:20 +01:00
use Models\Plugin ;
2022-04-01 09:58:53 +02:00
$block_edit = $record [ 'is_completato' ];
2023-05-24 17:15:29 +02:00
$order_row_desc = $_SESSION [ 'module_' . $id_module ][ 'order_row_desc' ];
$righe = $order_row_desc ? $preventivo -> getRighe () -> sortByDesc ( 'created_at' ) : $preventivo -> getRighe ();
2023-09-29 15:34:02 +02:00
$colspan = '8' ;
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 >
2020-07-31 11:56:48 +02:00
< th width = " 35 " class = " text-center " > '.tr(' #').'</th>
< th > '.tr(' Descrizione ').' </ th >
2023-02-17 12:33:45 +01:00
< th width = " 105 " > '.tr(' Prev . evasione ').' </ th >
2023-09-29 15:34:02 +02:00
< th class = " text-center tip " width = " 160 " > '.tr(' Q . tà ').' </ th >
< th class = " text-center " width = " 150 " > '.tr(' Costo unitario ').' </ th >
< 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 >
2024-03-15 12:33:20 +01:00
< th width = " 100 " ></ 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
2021-07-02 10:17:09 +02:00
$today = new Carbon\Carbon ();
$today = $today -> startOfDay ();
2020-09-11 09:04:06 +02:00
$num = 0 ;
2023-09-15 17:18:44 +02:00
$has_gruppo = false ;
$subtotale_gruppo = 0 ;
$iva_gruppo = 0 ;
$color_gruppo = '#BDDEE1;' ;
foreach ( $righe as $key => $riga ) {
2023-12-29 16:15:38 +01:00
$show_notifica = [];
2023-09-15 17:18:44 +02:00
// Gestione gruppo
$style_titolo = '' ;
$colspan_titolo = '' ;
if ( $riga -> is_titolo ) {
$subtotale_gruppo = 0 ;
$iva_gruppo = 0 ;
$has_gruppo = true ;
$style_titolo = 'style="background-color:' . $color_gruppo . '"' ;
2023-09-29 15:34:02 +02:00
$colspan_titolo = 'colspan="7"' ;
2023-09-15 17:18:44 +02:00
}
$subtotale_gruppo += $riga -> totale_imponibile ;
$iva_gruppo += $riga -> iva ;
2020-09-11 09:04:06 +02:00
++ $num ;
2018-06-23 18:35:08 +02:00
echo '
2024-05-23 11:36:25 +02:00
< tr data - id = " '. $riga->id .' " data - type = " '. $riga ::class.' " '.$style_titolo.' >
2022-04-01 09:58:53 +02:00
< td class = " text-center " > ' ;
2023-08-04 14:54:28 +02:00
if ( ! $block_edit ) {
echo '
2022-04-01 09:58:53 +02:00
< input class = " check " type = " checkbox " /> ' ;
2023-08-04 14:54:28 +02:00
}
echo '
2022-04-01 09:58:53 +02:00
</ td >
2020-07-31 11:56:48 +02:00
< td class = " text-center " >
2020-09-11 09:04:06 +02:00
'.$num.'
2020-09-15 12:20:01 +02:00
</ td >
2023-09-15 17:18:44 +02:00
< td '.$colspan_titolo.' > ' ;
2020-09-15 12:20:01 +02:00
// Aggiunta dei riferimenti ai documenti
2020-09-22 20:28:37 +02:00
if ( $riga -> hasOriginalComponent ()) {
2020-09-15 12:20:01 +02:00
echo '
2020-09-22 20:28:37 +02:00
< small class = " pull-right text-right text-muted " > '.reference($riga->getOriginalComponent()->getDocument(), tr(' Origine ')).' </ small > ' ;
2020-09-15 12:20:01 +02:00
}
2020-05-29 15:58:47 +02:00
2019-05-04 06:39:18 +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 );
2018-06-23 18:35:08 +02:00
}
echo '
2022-07-20 17:41:14 +02:00
' . $descrizione ;
2022-11-23 13:05:27 +01:00
if ( $riga -> isArticolo () && ! empty ( $riga -> articolo -> barcode )) {
echo '
< br >< small >< i class = " fa fa-barcode " ></ i > '.$riga->articolo->barcode.' </ small > ' ;
2023-08-04 14:54:28 +02:00
}
2022-11-23 13:05:27 +01:00
2022-07-20 17:41:14 +02:00
if ( ! empty ( $riga -> note )) {
echo '
2024-05-16 18:02:50 +02:00
< br >< span class = " right badge badge-default " > '.nl2br($riga->note).' </ small > ' ;
2022-07-20 17:41:14 +02:00
}
echo '
2020-07-31 11:56:48 +02:00
</ td > ' ;
2017-08-04 16:28:16 +02:00
2021-07-02 10:17:09 +02:00
// Data prevista evasione
$info_evasione = '' ;
if ( ! empty ( $riga -> data_evasione )) {
$evasione = new Carbon\Carbon ( $riga -> data_evasione );
2021-12-30 09:42:26 +01:00
if ( $today -> diffInDays ( $evasione , false ) < 0 && $riga -> qta_evasa < $riga -> qta ) {
2021-07-02 10:17:09 +02:00
$evasione_icon = 'fa fa-warning text-danger' ;
$evasione_help = tr ( 'Da consegnare _NUM_ giorni fa' ,
[
'_NUM_' => $today -> diffInDays ( $evasione ),
]
);
2021-12-30 09:42:26 +01:00
} elseif ( $today -> diffInDays ( $evasione , false ) == 0 && $riga -> qta_evasa < $riga -> qta ) {
2021-07-02 10:17:09 +02:00
$evasione_icon = 'fa fa-clock-o text-warning' ;
$evasione_help = tr ( 'Da consegnare oggi' );
} else {
$evasione_icon = 'fa fa-check text-success' ;
$evasione_help = tr ( 'Da consegnare fra _NUM_ giorni' ,
[
'_NUM_' => $today -> diffInDays ( $evasione ),
]
);
}
if ( ! empty ( $riga -> ora_evasione )) {
$ora_evasione = '<br>' . Translator :: timeToLocale ( $riga -> ora_evasione ) . '' ;
} else {
$ora_evasione = '' ;
}
$info_evasione = '<span class="tip" title="' . $evasione_help . '"><i class="' . $evasione_icon . '"></i> ' . Translator :: dateToLocale ( $riga -> data_evasione ) . $ora_evasione . '</span>' ;
}
2023-09-15 17:18:44 +02:00
if ( ! $riga -> is_titolo ) {
if ( $riga -> isDescrizione ()) {
echo '
< td ></ td >
< td ></ td >
< td ></ td >
< td ></ td >
2023-09-29 15:34:02 +02:00
< td ></ td >
2023-09-15 17:18:44 +02:00
< td ></ td > ' ;
} else {
// Info evasione
echo '
< td class = " text-center " >
'.$info_evasione.'
</ td > ' ;
2021-07-02 10:17:09 +02:00
2023-09-15 17:18:44 +02:00
// Quantità e unità di misura
echo '
< td class = " text-center " >
2024-07-25 12:40:22 +02:00
{[ " type " : " number " , " name " : " qta_'. $riga->id .' " , " value " : " '. $riga->qta .' " , " min-value " : " 0 " , " onchange " : " aggiornaInline( $ (this).closest( \ 'tr \ ').data( \ 'id \ ')) " , " icon-before " : " <span class= \ 'tip \ ' title= \ ''.( $riga->confermato ? tr('Articolo confermato') : tr('Articolo non confermato')).' \ '><i class= \ ''.( $riga->confermato ? 'fa fa-check text-success' : 'fa fa-clock-o text-warning').' \ '></i></span> " , " 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 ()).' " , " decimals " : " qta " ]}
2023-09-15 17:18:44 +02:00
< div class = " progress " style = " height:4px; " > ' ;
// 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 ) {
2024-05-23 11:36:25 +02:00
$righe_ev = $dbo -> table ( $table ) -> where ( 'original_id' , $riga -> id ) -> where ( 'original_type' , $riga :: class ) -> get ();
2023-11-28 15:09:01 +01:00
if ( $righe_ev -> count () > 0 ) {
2024-08-27 09:20:20 +02:00
$perc_ev = $righe_ev -> sum ( 'qta' ) * 100 / ( $riga -> qta ? : 1 );
2023-11-28 15:09:01 +01:00
if ( $perc_ev > 0 ) {
echo '
< div class = " progress-bar progress-bar-'. $color .' " style = " width:'. $perc_ev .'% " ></ div > ' ;
}
2023-09-15 17:18:44 +02:00
}
2023-08-04 14:54:28 +02:00
}
2023-09-15 17:18:44 +02:00
echo '
</ div >
</ td > ' ;
2017-08-04 16:28:16 +02:00
2023-12-29 16:15:38 +01:00
if ( $riga -> isArticolo ()) {
$id_anagrafica = $preventivo -> idanagrafica ;
$dir = 'entrata' ;
$show_notifica = getPrezzoConsigliato ( $id_anagrafica , $dir , $riga -> idarticolo , $riga );
}
2023-10-06 12:45:32 +02:00
if ( $riga -> isSconto ()) {
echo '
< td ></ td >
< td ></ td > ' ;
} else {
// Costi unitari
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 > ' ;
2019-07-11 17:44:42 +02:00
2023-10-06 12:45:32 +02:00
// Prezzi unitari
echo '
2023-09-29 15:34:02 +02:00
< td class = " text-right " >
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-09-15 17:18:44 +02:00
</ td > ' ;
2023-10-06 12:45:32 +02:00
}
2017-08-04 16:28:16 +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 '
2023-09-15 17:18:44 +02:00
< td class = " text-center " >
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-09-15 17:18:44 +02:00
</ td > ' ;
2017-08-04 16:28:16 +02:00
2023-09-15 17:18:44 +02:00
// Importo
2023-02-17 12:33:45 +01:00
echo '
2023-09-15 17:18:44 +02:00
< td class = " text-right " >
' . moneyFormat ( $riga -> importo );
2017-08-04 16:28:16 +02:00
2023-09-15 17:18:44 +02:00
// Iva
echo '
2024-04-18 17:44:05 +02:00
< br >< small class = " '.(( $riga->aliquota ->deleted_at) ? 'text-red' : '').' text-muted " > '.$riga->aliquota->getTranslation(' title ').(($riga->aliquota->esente) ? ' ( '.$riga->aliquota->codice_natura_fe.' ) ' : null).' </ small >
2023-09-15 17:18:44 +02:00
</ td > ' ;
}
2018-06-23 18:35:08 +02:00
}
2018-12-23 14:25:20 +01:00
2018-06-23 18:35:08 +02:00
// Possibilità di rimuovere una riga solo se il preventivo non è stato pagato
echo '
2024-03-15 12:33:20 +01:00
< td class = " text-center " >
< div class = " btn-group " > ' ;
2024-03-22 15:52:24 +01:00
if ( hasArticoliFiglio ( $riga -> idarticolo )) {
echo '
2024-03-15 12:33:20 +01:00
< a class = " btn btn-xs btn-info " title = " '.tr('Distinta base').' " onclick = " viewDistinta('. $riga->idarticolo .') " >
< i class = " fa fa-eye " ></ i >
</ a > ' ;
2024-03-22 15:52:24 +01:00
}
2017-08-04 16:28:16 +02:00
2024-03-22 15:52:24 +01:00
if ( empty ( $record [ 'is_completato' ])) {
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 >
2022-04-01 09:58:53 +02:00
< a class = " btn btn-xs btn-danger " title = " '.tr('Rimuovi riga').' " onclick = " rimuoviRiga([ $ (this).closest( \ 'tr \ ').data( \ 'id \ ')]) " >
2020-07-31 11:56:48 +02:00
< 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').' " >
2020-07-31 11:56:48 +02:00
< i class = " fa fa-sort " ></ i >
2024-03-15 12:33:20 +01:00
</ a > ' ;
2024-03-22 15:52:24 +01:00
}
echo '
2024-03-15 12:33:20 +01:00
</ div >
2020-07-31 11:56:48 +02:00
</ td >
</ tr > ' ;
2023-09-15 17:18:44 +02:00
2023-09-21 16:26:22 +02:00
$next = $righe -> flatten ()[ $num ];
if ( $has_gruppo && ( $next -> is_titolo || $next == null )) {
echo '
2023-09-15 17:18:44 +02:00
< tr >
< td style = " background-color:'. $color_gruppo .' " colspan = " '. $colspan .' " class = " text-right " >
< b > '.tr(' Subtotale ', [], [' upper ' => true]).' :</ b >
</ td >
< td style = " background-color:'. $color_gruppo .' " class = " text-right " >
'.moneyFormat($subtotale_gruppo, 2).'
</ td >
< td style = " background-color:'. $color_gruppo .' " ></ td >
</ tr >
< tr >
< td style = " background-color:'. $color_gruppo .' " colspan = " '. $colspan .' " class = " text-right " >
< b > '.tr(' Iva ', [], [' upper ' => true]).' :</ b >
</ td >
< td style = " background-color:'. $color_gruppo .' " class = " text-right " >
'.moneyFormat($iva_gruppo, 2).'
</ td >
< td style = " background-color:'. $color_gruppo .' " ></ td >
</ tr >
< tr >
< td style = " background-color:'. $color_gruppo .' " colspan = " '. $colspan .' " class = " text-right " >
< b > '.tr(' Subtotale ivato ', [], [' upper ' => true]).' :</ b >
</ td >
< td style = " background-color:'. $color_gruppo .' " class = " text-right " >
'.moneyFormat($subtotale_gruppo + $iva_gruppo, 2).'
</ td >
< td style = " background-color:'. $color_gruppo .' " ></ td >
</ tr > ' ;
2023-09-21 16:26:22 +02:00
}
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
2019-07-12 17:35:14 +02:00
// Calcoli
$imponibile = abs ( $preventivo -> imponibile );
2023-04-18 12:20:50 +02:00
$sconto = - $preventivo -> sconto ;
2019-07-12 17:35:14 +02:00
$totale_imponibile = abs ( $preventivo -> totale_imponibile );
$iva = abs ( $preventivo -> iva );
$totale = abs ( $preventivo -> totale );
2021-04-06 15:10:55 +02:00
$sconto_finale = $preventivo -> getScontoFinale ();
$netto_a_pagare = $preventivo -> netto ;
2019-07-12 17:35:14 +02:00
2019-07-18 09:42:51 +02:00
// Totale imponibile scontato
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($preventivo->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 " >
2023-04-27 15:30:37 +02:00
'.moneyFormat($sconto, 2).'
2020-07-31 11:56:48 +02:00
</ td >
< td ></ td >
</ tr > ' ;
2017-08-04 16:28:16 +02:00
2019-05-04 06:39:18 +02:00
// Totale imponibile scontato
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(' 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
}
// Totale iva
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(' Iva ', [], [' upper ' => true]).' :</ b >
</ td >
< td class = " text-right " >
'.moneyFormat($preventivo->iva, 2).'
</ td >
< td ></ td >
</ tr > ' ;
2017-08-04 16:28:16 +02:00
2019-09-12 09:31:55 +02:00
// Totale
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($preventivo->totale, 2).'
</ td >
< td ></ td >
</ tr > ' ;
2021-04-12 15:51:27 +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 > ' ;
}
2017-08-04 16:28:16 +02:00
2019-09-12 09:31:55 +02:00
// Margine
$margine = $preventivo -> margine ;
2022-07-28 15:22:08 +02:00
$margine_class = ( $margine <= 0 && $preventivo -> totale > 0 ) ? 'danger' : 'success' ;
$margine_icon = ( $margine <= 0 && $preventivo -> totale > 0 ) ? 'warning' : 'check' ;
2019-12-24 12:45:23 +01: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
'.tr(' Costi ').' :
</ td >
< td class = " text-right " >
'.moneyFormat($preventivo->spesa).'
</ td >
< td ></ td >
2022-05-19 17:42:41 +02:00
</ tr > ' ;
// Provvigione
2023-08-04 14:54:28 +02:00
if ( ! empty ( $preventivo -> provvigione )) {
echo '
2022-05-19 17:42:41 +02:00
< tr >
2023-02-17 12:33:45 +01:00
< td colspan = " '. $colspan .' " class = " text-right " >
2022-05-19 17:42:41 +02:00
'.tr(' Provvigioni ').' :
</ td >
< td class = " text-right " >
'.moneyFormat($preventivo->provvigione).'
</ td >
< td ></ td >
</ tr > ' ;
}
2020-07-31 11:56:48 +02:00
2022-05-19 17:42: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
'.tr(' Margine ( _PRC_ % ) ' , [
2024-03-22 15:52:24 +01:00
'_PRC_' => numberFormat ( $preventivo -> margine_percentuale ),
]) . ' :
2020-07-31 11:56:48 +02:00
</ td >
2022-09-30 13:09:16 +02:00
< td class = " text-right '. $margine_class .' " rowspan = " 2 " style = " vertical-align:middle; " >
2020-07-31 11:56:48 +02:00
< i class = " fa fa-'. $margine_icon .' text-'. $margine_class .' " ></ i > '.moneyFormat($preventivo->margine).'
</ td >
2022-09-30 13:09:16 +02:00
< td rowspan = " 2 " ></ td >
2022-07-28 15:22:08 +02:00
</ tr >
< tr >
2023-02-17 12:33:45 +01:00
< td colspan = " '. $colspan .' " class = " text-right " >
2023-12-06 12:27:34 +01:00
'.tr(' Ricarico ( _PRC_ ) ' , [
2024-03-22 15:52:24 +01:00
'_PRC_' => ( $preventivo -> ricarico_percentuale != 0 ? numberFormat ( $preventivo -> ricarico_percentuale ) . '%' : 'N.D.' ),
]) . ' :
2022-07-28 15:22:08 +02:00
</ td >
2020-07-31 11:56:48 +02:00
</ tr > ' ;
2019-09-12 09:31:55 +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-07-21 09:52:20 +02:00
</ button >
< button type = " button " class = " btn btn-xs btn-default disabled " id = " confronta_righe " onclick = " confrontaRighe(getSelectData()); " >
2023-09-25 16:53:28 +02:00
'.tr(' Confronta prezzi ').'
</ button >
< button type = " button " class = " btn btn-xs btn-default disabled " id = " aggiorna_righe " onclick = " aggiornaRighe(getSelectData()); " >
'.tr(' Aggiorna prezzi ').'
2023-07-21 09:52:20 +02:00
</ 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 " ,
dataType : " json " ,
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 );
}
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 );
}
});
}
2024-03-15 12:33:20 +01:00
init (); ' ;
2024-06-11 16:58:27 +02:00
if ( Plugin :: where ( 'name' , 'Distinta base' ) -> first ()) {
2024-03-15 12:33:20 +01:00
echo '
async function viewDistinta ( id_articolo ) {
2024-06-11 16:58:27 +02:00
openModal ( " '.tr('Distinta base').' " , " '.Plugin::where('name', 'Distinta base')->first()->fileurl('view.php').'?id_module= " + globals . id_module + " &id_record= " + globals . id_record + " &id_articolo= " + id_articolo );
2024-03-15 12:33:20 +01:00
} ' ;
}
echo '
2024-03-22 15:52:24 +01:00
</ script > ' ;