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
2021-07-07 07:57:10 +02:00
use Carbon\Carbon ;
2020-09-09 16:55:45 +02:00
use Modules\Anagrafiche\Anagrafica ;
2021-07-20 14:55:20 +02:00
use Modules\Anagrafiche\Nazione ;
2020-12-02 11:31:52 +01:00
use Modules\Fatture\Gestori\Bollo ;
2021-05-03 13:20:27 +02:00
use Modules\Interventi\Intervento ;
2021-07-07 07:57:10 +02:00
use Modules\Iva\Aliquota ;
2021-09-24 12:26:34 +02:00
use Plugins\ExportFE\Interaction ;
2019-09-13 11:29:45 +02:00
2017-08-04 16:28:16 +02:00
include_once __DIR__ . '/../../core.php' ;
2020-09-09 16:55:45 +02:00
$anagrafica_azienda = Anagrafica :: find ( setting ( 'Azienda predefinita' ));
2020-09-08 11:38:25 +02:00
$block_edit = ! empty ( $note_accredito ) || in_array ( $record [ 'stato' ], [ 'Emessa' , 'Pagato' , 'Parzialmente pagato' ]) || ! $abilita_genera ;
2017-08-04 16:28:16 +02:00
2018-05-24 18:29:37 +02:00
if ( $dir == 'entrata' ) {
2018-06-26 10:25:50 +02:00
$conto = 'vendite' ;
2018-05-24 18:29:37 +02:00
} else {
2018-06-26 10:25:50 +02:00
$conto = 'acquisti' ;
2018-05-24 18:29:37 +02:00
}
2021-02-23 11:34:37 +01:00
// Informazioni sulla dichiarazione d'intento, visibili solo finchè la fattura è in bozza
2019-09-13 11:29:45 +02:00
if ( $dir == 'entrata' && ! empty ( $fattura -> dichiarazione ) && $fattura -> stato -> descrizione == 'Bozza' ) {
$diff = $fattura -> dichiarazione -> massimale - $fattura -> dichiarazione -> totale ;
$id_iva = setting ( " Iva per lettere d'intento " );
$iva = Aliquota :: find ( $id_iva );
2021-02-23 11:40:27 +01:00
if ( ! empty ( $iva )) {
if ( $diff > 0 ) {
echo '
2021-02-23 11:34:37 +01:00
< div class = " alert alert-info " >
< i class = " fa fa-warning " ></ i > '.tr("La fattura è collegata a una dichiarazione d' intento con diponibilità di _MONEY_ : per collegare una riga alla dichiarazione è sufficiente inserire come IVA _IVA_ " , [
'_MONEY_' => moneyFormat ( abs ( $diff )),
'_IVA_' => '"' . $iva -> descrizione . '"' ,
]) . ' .</ b >
</ div > ' ;
2021-02-23 11:40:27 +01:00
} elseif ( $diff == 0 ) {
echo '
2021-02-23 11:34:37 +01:00
< div class = " alert alert-warning " >
< i class = " fa fa-warning " ></ i > '.tr("La dichiarazione d' intento ha raggiunto il massimale previsto di _MONEY_ : le nuove righe della fattura devono presentare IVA diversa da _IVA_ " , [
'_MONEY_' => moneyFormat ( abs ( $fattura -> dichiarazione -> massimale )),
'_IVA_' => '"' . $iva -> descrizione . '"' ,
]) . ' .</ b >
</ div > ' ;
2021-02-23 11:40:27 +01:00
} else {
echo '
2021-02-23 11:34:37 +01:00
< div class = " alert alert-danger " >
< i class = " fa fa-warning " ></ i > '.tr("La dichiarazione d' intento ha superato il massimale previsto di _MONEY_ : per rimuovere righe della fattura dalla dichiarazione è sufficiente modificare l ' IVA in qualcosa di diverso da _IVA_ " , [
'_MONEY_' => moneyFormat ( abs ( $diff )),
'_IVA_' => '"' . $iva -> descrizione . '"' ,
]) . ' .</ b >
</ div > ' ;
2021-02-23 11:40:27 +01:00
}
} else {
2021-02-23 11:34:37 +01:00
//TODO link ad impostazioni con nuova ricerca rapida
2019-09-13 11:29:45 +02:00
echo '
2021-02-23 11:34:37 +01:00
< div class = " alert alert-warning " >
< i class = " fa fa-warning " ></ i > '.tr("Attenzione nessuna aliq. IVA definita per la dichiarazione d' intento . _SETTING_ " , [
2021-02-25 11:22:06 +01:00
'_SETTING_' => Modules :: link ( 'Impostazioni' , null , tr ( 'Selezionala dalle impostazioni' ), true , null , true , null , " &search=Iva per lettere d'intento " ),
2021-02-23 11:34:37 +01:00
]) . '
</ div > ' ;
2019-09-13 11:29:45 +02:00
}
}
2021-02-25 15:16:05 +01:00
// Verifica aggiuntive sulla sequenzialità dei numeri
2020-03-02 16:13:07 +01:00
if ( $dir == 'entrata' ) {
2021-02-25 15:16:05 +01:00
$numero_previsto = verifica_numero_fattura ( $fattura );
2020-03-02 16:13:07 +01:00
if ( ! empty ( $numero_previsto )) {
echo '
< div class = " alert alert-warning " >
< i class = " fa fa-warning " ></ i > '.tr("E' assente una fattura di vendita di numero _NUM_ in data precedente o corrispondente a _DATE_ : si potrebbero verificare dei problemi con la numerazione corrente delle fatture " , [
'_DATE_' => dateFormat ( $fattura -> data ),
'_NUM_' => '"' . $numero_previsto . '"' ,
]) . ' .</ b >
</ div > ' ;
}
2021-05-03 13:20:27 +02:00
// Verifica la data dell'intervento rispetto alla data della fattura
2021-09-17 10:30:36 +02:00
$fatturazione_futura = false ;
$data_fattura = new Carbon ( $fattura -> data );
$interventi_collegati = $fattura -> getDocumentiCollegati ()[ Intervento :: class ];
if ( ! empty ( $interventi_collegati )) {
foreach ( $interventi_collegati as $intervento ) {
$fine_intervento = $intervento -> fine ? : $intervento -> data_richiesta ;
$fine_intervento = new Carbon ( $fine_intervento );
2021-05-03 13:20:27 +02:00
2021-09-17 10:30:36 +02:00
if ( $fine_intervento -> diffInDays ( $data_fattura , false ) < 0 ) {
2021-07-07 07:57:10 +02:00
$fatturazione_futura = true ;
2021-05-03 13:20:27 +02:00
break ;
}
}
2021-07-07 07:57:10 +02:00
if ( $fatturazione_futura ) {
2021-05-03 13:20:27 +02:00
echo '
< div class = " alert alert-warning " >
< i class = " fa fa-warning " ></ i > '.tr("Stai fatturando un' attività futura rispetto alla data di fatturazione . " ).'</b>
</ div > ' ;
}
}
2020-03-02 16:13:07 +01:00
}
2017-08-04 16:28:16 +02:00
?>
2018-02-23 16:04:50 +01:00
< form action = " " method = " post " id = " edit-form " >
2017-08-04 16:28:16 +02:00
< input type = " hidden " name = " backto " value = " record-edit " >
< input type = " hidden " name = " op " value = " update " >
2018-02-09 14:25:40 +01:00
< input type = " hidden " name = " id_record " value = " <?php echo $id_record ; ?> " >
2017-08-04 16:28:16 +02:00
<!-- INTESTAZIONE -->
< div class = " panel panel-primary " >
< div class = " panel-heading " >
2018-02-09 14:25:40 +01:00
< h3 class = " panel-title " >< ? php echo tr ( 'Intestazione' ); ?> </h3>
2017-08-04 16:28:16 +02:00
</ div >
< div class = " panel-body " >
2018-02-11 20:24:29 +01:00
2018-02-09 15:43:51 +01:00
< ? php
2018-07-03 17:28:02 +02:00
2018-02-11 20:24:29 +01:00
if ( $dir == 'entrata' ) {
2021-10-06 15:20:30 +02:00
$rs2 = $dbo -> fetchArray ( 'SELECT piva, codice_fiscale, citta, indirizzo, cap, id_nazione, tipo FROM an_anagrafiche WHERE idanagrafica=' . prepare ( $record [ 'idanagrafica' ]));
2018-02-11 20:24:29 +01:00
$campi_mancanti = [];
2019-02-12 11:42:48 +01:00
//di default è un azienda e chiedo la partita iva
2021-05-28 10:39:41 +02:00
if ( empty ( $rs2 [ 0 ][ 'piva' ]) and empty ( $rs2 [ 0 ][ 'codice_fiscale' ]) and ( empty ( $rs2 [ 0 ][ 'tipo' ]) or $rs2 [ 0 ][ 'tipo' ] == 'Azienda' )) {
2019-01-10 18:41:25 +01:00
array_push ( $campi_mancanti , 'Partita IVA' );
2021-05-28 10:39:41 +02:00
array_push ( $campi_mancanti , 'Codice fiscale' );
2019-01-10 18:06:15 +01:00
}
2021-07-27 11:37:04 +02:00
2021-07-20 14:55:20 +02:00
$nazione = Nazione :: find ( $rs2 [ 0 ][ 'id_nazione' ]);
2019-02-12 11:42:48 +01:00
//se è un privato o un ente pubblico controllo il codice fiscale
2021-07-20 14:55:20 +02:00
if ((( $rs2 [ 0 ][ 'tipo' ] == 'Privato' && $nazione -> iso2 == 'IT' ) or $rs2 [ 0 ][ 'tipo' ] == 'Ente pubblico' ) and empty ( $rs2 [ 0 ][ 'codice_fiscale' ])) {
2019-02-07 19:19:11 +01:00
array_push ( $campi_mancanti , 'Codice fiscale' );
}
2019-02-12 11:42:48 +01:00
2018-02-11 20:24:29 +01:00
if ( $rs2 [ 0 ][ 'citta' ] == '' ) {
2018-12-27 23:07:19 +01:00
array_push ( $campi_mancanti , 'Città' );
2018-02-11 20:24:29 +01:00
}
if ( $rs2 [ 0 ][ 'indirizzo' ] == '' ) {
2018-12-27 23:07:19 +01:00
array_push ( $campi_mancanti , 'Indirizzo' );
2018-02-11 20:24:29 +01:00
}
if ( $rs2 [ 0 ][ 'cap' ] == '' ) {
array_push ( $campi_mancanti , 'C.A.P.' );
}
2019-01-03 18:54:09 +01:00
if ( empty ( $rs2 [ 0 ][ 'id_nazione' ])) {
2018-12-27 23:07:19 +01:00
array_push ( $campi_mancanti , 'Nazione' );
}
2018-02-11 20:24:29 +01:00
if ( sizeof ( $campi_mancanti ) > 0 ) {
2018-12-27 23:07:19 +01:00
echo " <div class='alert alert-warning'><i class='fa fa-warning'></i> Prima di procedere alla stampa completa i seguenti campi dell'anagrafica Cliente: <b> " . implode ( ', ' , $campi_mancanti ) . ' </ b >< br />
2018-07-18 15:20:10 +02:00
'.Modules::link(' Anagrafiche ', $record[' idanagrafica '], tr(' Vai alla scheda anagrafica '), null).' </ div > ' ;
2018-02-11 20:24:29 +01:00
}
}
?>
2017-08-04 16:28:16 +02:00
< div class = " row " >
2017-11-07 19:19:52 +01:00
< ? php
if ( $dir == 'uscita' ) {
echo '
2019-11-13 19:07:24 +01:00
< div class = " col-md-2 " >
2019-09-13 11:29:45 +02:00
{[ " type " : " text " , " label " : " '.tr('Numero fattura/protocollo').' " , " required " : 1 , " name " : " numero " , " class " : " text-center alphanumeric-mask " , " value " : " $numero $ " ]}
</ div > ' ;
2021-05-25 15:15:16 +02:00
$label = tr ( 'N. fattura del fornitore' );
2020-02-13 03:09:49 +01:00
$size = 2 ;
2017-11-07 19:19:52 +01:00
} else {
2018-02-04 17:26:25 +01:00
$label = tr ( 'Numero fattura' );
2020-02-13 03:09:49 +01:00
$size = 4 ;
2017-11-07 19:19:52 +01:00
}
?>
2018-06-26 10:25:50 +02:00
2018-04-03 12:30:12 +02:00
<!-- id_segment -->
{[ " type " : " hidden " , " label " : " Segmento " , " name " : " id_segment " , " class " : " text-center " , " value " : " $id_segment $ " ]}
2018-06-26 10:25:50 +02:00
2020-02-13 03:09:49 +01:00
< div class = " col-md-<?php echo $size ; ?> " >
2021-07-07 07:57:10 +02:00
{[ " type " : " text " , " label " : " <?php echo $label ; ?> " , " required " : " <?php echo ( $dir == 'uscita') ? 1 : 0; ?> " , " name " : " numero_esterno " , " class " : " text-center " , " value " : " $numero_esterno $ " , " help " : " <?php echo (empty( $record['numero_esterno'] ) and $dir == 'entrata') ? tr('Il numero della fattura sarà generato automaticamente in fase di emissione.') : ''; ?> " ]}
2017-08-04 16:28:16 +02:00
</ div >
2019-11-13 19:07:24 +01:00
< div class = " col-md-2 " >
2018-11-09 11:34:27 +01:00
{[ " type " : " date " , " label " : " <?php echo tr('Data emissione'); ?> " , " name " : " data " , " required " : 1 , " value " : " $data $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
2018-09-27 15:50:03 +02:00
< ? php
$query = 'SELECT * FROM co_statidocumento' ;
if ( empty ( $record [ 'is_fiscale' ])) {
$query .= " WHERE descrizione = 'Bozza' " ;
2018-09-28 09:30:46 +02:00
$plugin = $dbo -> fetchArray ( " SELECT id FROM zz_plugins WHERE name='Fatturazione Elettronica' AND idmodule_to = " . prepare ( $id_module ));
echo '<script>$("#link-tab_' . $plugin [ 0 ][ 'id' ] . '").addClass("disabled");</script>' ;
2018-09-27 15:50:03 +02:00
}
2020-09-08 11:38:25 +02:00
// Forzo il passaggio della fattura da Bozza ad Emessa per il corretto calcolo del numero.
2020-06-30 13:26:15 +02:00
elseif ( $record [ 'stato' ] == 'Bozza' ) {
2020-06-16 11:32:03 +02:00
$query .= " WHERE descrizione IN ('Emessa', 'Bozza') " ;
}
2018-09-27 15:50:03 +02:00
?>
2019-11-13 19:07:24 +01:00
< ? php if ( $dir == 'entrata' ) {
2019-11-15 15:11:20 +01:00
$readonly = '"readonly":1,' ;
}
2019-06-04 20:45:40 +02:00
?>
2019-08-26 11:10:59 +02:00
2020-02-13 03:09:49 +01:00
< div class = " col-md-2 " < ? php echo ( $dir == 'entrata' ) ? 'hidden' : '' ; ?> >
2020-10-16 18:17:20 +02:00
{[ " type " : " date " , " label " : " <?php echo tr('Data registrazione'); ?> " , < ? php echo $readonly ; ?> "name": "data_registrazione", "value": "$data_registrazione$", "help": "<?php echo tr('Data in cui si è effettuata la registrazione della fattura in contabilità'); ?>" ]}
2017-08-04 16:28:16 +02:00
</ div >
2020-09-08 16:51:43 +02:00
2020-07-30 20:06:33 +02:00
<!-- TODO : da nascondere per le fatture di vendita in quanto questa data sarà sempre uguale alla data di emissione -->
2020-02-13 03:09:49 +01:00
< div class = " col-md-2 " < ? php echo ( $is_fiscale ) ? '' : 'hidden' ; ?> >
2021-07-08 16:33:46 +02:00
{[ " type " : " date " , " class " : " <?php echo (dateFormat( $fattura->data_competenza ) <= dateFormat( $fattura->data )) ? 'unblockable' : ''; ?> " , " label " : " <?php echo tr('Data competenza'); ?> " , " name " : " data_competenza " , " required " : 1 , " value " : " $data_competenza $ " , " min-date " : " $data $ " , " help " : " <?php echo tr('Data nella quale considerare il movimento contabile, che può essere posticipato rispetto la data della fattura'); ?> " ]}
2019-05-29 19:17:57 +02:00
</ div >
2019-07-22 15:45:36 +02:00
2018-12-28 18:03:38 +01:00
< ? php
2018-12-29 12:03:22 +01:00
if ( $dir == 'entrata' ) {
?>
2019-09-13 11:29:45 +02:00
2020-02-13 03:09:49 +01:00
< div class = " col-md-2 " < ? php echo ( $is_fiscale ) ? '' : 'hidden' ; ?> >
2021-09-24 12:26:34 +02:00
{[ " type " : " select " , " label " : " <?php echo tr('Stato FE'); ?> " , " name " : " codice_stato_fe " , " values " : " query=SELECT codice as id, CONCAT_WS(' - ',codice,descrizione) as text FROM fe_stati_documento " , " value " : " $codice_stato_fe $ " , " disabled " : < ? php echo intval ( Interaction :: isEnabled () || ( $record [ 'stato' ] == 'Bozza' && $abilita_genera )); ?> , "class": "unblockable", "help": "<?php echo (!empty($record['data_stato_fe'])) ? Translator::timestampToLocale($record['data_stato_fe']) : ''; ?>" ]}
2019-09-13 11:29:45 +02:00
</ div >
< ? php
2018-12-29 12:03:22 +01:00
}
2019-09-13 11:29:45 +02:00
2020-09-08 11:38:25 +02:00
echo '
< div class = " col-md-'.( $is_fiscale ? 2 : 6).' " >
<!-- TODO : Rimuovere possibilità di selezionare lo stato pagato obbligando l\ ' utente ad aggiungere il movimento in prima nota -->
2020-11-02 11:47:01 +01:00
{[ " type " : " select " , " label " : " '.tr('Stato').' " , " name " : " idstatodocumento " , " required " : 1 , " values " : " query='. $query .' " , " value " : " $idstatodocumento $ " , " class " : " '.(( $record['stato'] != 'Bozza' && ! $abilita_genera ) ? '' : 'unblockable').' " , " extra " : " onchange= \" return cambiaStato() \" " ]}
2019-09-13 11:29:45 +02:00
</ div >
2017-08-04 16:28:16 +02:00
</ div >
< div class = " row " >
2021-02-11 15:05:29 +01:00
< div class = " col-md-4 " >
2020-09-08 11:38:25 +02:00
'.Modules::link(' Anagrafiche ', $record[' idanagrafica '], null, null, ' class = " pull-right " ' );
2018-01-15 20:28:36 +01:00
2017-08-04 16:28:16 +02:00
if ( $dir == 'entrata' ) {
?>
2020-10-16 18:17:20 +02:00
{[ " type " : " select " , " label " : " <?php echo tr('Cliente'); ?> " , " name " : " idanagrafica " , " required " : 1 , " ajax-source " : " clienti " , " help " : " <?php echo tr( " In caso di autofattura indicare l 'azienda: ").stripslashes($database->fetchOne(' SELECT ragione_sociale FROM an_anagrafiche WHERE idanagrafica = '.prepare(setting(' Azienda predefinita ')))[' ragione_sociale ' ]); ?> ", "value": "$idanagrafica$" ]}
2017-08-04 16:28:16 +02:00
< ? php
} else {
?>
2018-08-11 15:49:46 +02:00
{[ " type " : " select " , " label " : " <?php echo tr('Fornitore'); ?> " , " name " : " idanagrafica " , " required " : 1 , " ajax-source " : " fornitori " , " value " : " $idanagrafica $ " ]}
2020-02-05 14:51:39 +01:00
< ? php
2020-07-31 14:25:50 +02:00
}
2020-03-02 16:13:07 +01:00
2020-07-31 14:25:50 +02:00
echo '
</ div > ' ;
2020-03-02 16:13:07 +01:00
2021-02-11 15:05:29 +01:00
if ( $dir == 'entrata' ) {
2021-02-18 18:48:44 +01:00
echo '
2021-02-11 15:05:29 +01:00
< div class = " col-md-4 " >
2020-07-31 14:25:50 +02:00
{[ " type " : " select " , " label " : " '.tr('Agente di riferimento').' " , " name " : " idagente " , " ajax-source " : " agenti " , " select-options " : { " idanagrafica " : '.$record[' idanagrafica '].' }, " value " : " $idagente_fattura $ " ]}
</ div > ' ;
2021-02-11 15:05:29 +01:00
}
echo '
< div class = " col-md-4 " > ' ;
if ( ! empty ( $record [ 'idreferente' ])) {
echo Plugins :: link ( 'Referenti' , $record [ 'idanagrafica' ], null , null , 'class="pull-right"' );
2020-07-31 14:25:50 +02:00
}
2021-02-11 15:05:29 +01:00
echo '
{[ " type " : " select " , " label " : " '.tr('Referente').' " , " name " : " idreferente " , " value " : " $idreferente $ " , " ajax-source " : " referenti " , " select-options " : { " idanagrafica " : '.$record[' idanagrafica '].' } ]}
</ div > ' ;
2019-08-26 11:10:59 +02:00
2019-06-20 16:44:45 +02:00
// Conteggio numero articoli fatture
$articolo = $dbo -> fetchArray ( 'SELECT mg_articoli.id FROM ((mg_articoli INNER JOIN co_righe_documenti ON mg_articoli.id=co_righe_documenti.idarticolo) INNER JOIN co_documenti ON co_documenti.id=co_righe_documenti.iddocumento) WHERE co_documenti.id=' . prepare ( $id_record ));
2020-07-31 14:25:50 +02:00
$id_modulo_anagrafiche = Modules :: get ( 'Anagrafiche' )[ 'id' ];
$id_plugin_sedi = Plugins :: get ( 'Sedi' )[ 'id' ];
if ( $dir == 'entrata' ) {
echo '
< div class = " col-md-3 " >
{[ " type " : " select " , " label " : " '.tr('Partenza merce').' " , " name " : " idsede_partenza " , " ajax-source " : " sedi_azienda " , " value " : " $idsede_partenza $ " , " readonly " : " '.(sizeof( $articolo ) ? 1 : 0).' " , " help " : " '.tr( " Sedi di partenza dell 'azienda").' " ]}
</ div >
2020-03-02 16:13:07 +01:00
2020-07-31 14:25:50 +02:00
< div class = " col-md-3 " >
{[ " type " : " select " , " label " : " '.tr('Destinazione merce').' " , " name " : " idsede_destinazione " , " ajax-source " : " sedi " , " select-options " : { " idanagrafica " : '.$record[' idanagrafica '].' }, " value " : " $idsede_destinazione $ " , " help " : " '.tr('Sedi del destinatario').' " , " icon-after " : " add|'. $id_modulo_anagrafiche .'|id_plugin='. $id_plugin_sedi .'&id_parent='. $record['idanagrafica'] .'||'.(intval( $block_edit ) ? 'disabled' : '').' " ]}
</ div > ' ;
} else {
echo '
< div class = " col-md-3 " >
2020-08-11 08:10:06 +02:00
{[ " type " : " select " , " label " : " '.tr('Partenza merce').' " , " name " : " idsede_partenza " , " ajax-source " : " sedi " , " select-options " : { " idanagrafica " : '.$record[' idanagrafica '].' }, " value " : " $idsede_partenza $ " , " help " : " '.tr('Sedi del mittente').' " , " icon-after " : " add|'. $id_modulo_anagrafiche .'|id_plugin='. $id_plugin_sedi .'&id_parent='. $record['idanagrafica'] .'||'.(intval( $block_edit ) ? 'disabled' : '').' " ]}
2020-07-31 14:25:50 +02:00
</ div >
2020-02-01 11:02:23 +01:00
2020-07-31 14:25:50 +02:00
< div class = " col-md-3 " >
{[ " type " : " select " , " label " : " '.tr('Destinazione merce').' " , " name " : " idsede_destinazione " , " ajax-source " : " sedi_azienda " , " value " : " $idsede_destinazione $ " , " help " : " '.tr( " Sedi di arrivo dell 'azienda").' " ]}
</ div > ' ;
}
2019-06-20 16:44:45 +02:00
?>
2019-05-17 06:00:15 +02:00
</ div >
< hr >
< div class = " row " >
< div class = " col-md-3 " >
<!-- Nella realtà la fattura accompagnatoria non può esistere per la fatturazione elettronica , in quanto la risposta dal SDI potrebbe non essere immediata e le merci in viaggio . Dunque si può emettere una documento di viaggio valido per le merci ed eventualmente una fattura pro - forma per l ' incasso della stessa , emettendo infine la fattura elettronica differita . -->
2021-04-15 18:22:44 +02:00
{[ " type " : " select " , " label " : " <?php echo tr('Tipo documento'); ?> " , " name " : " idtipodocumento " , " required " : 1 , " values " : " query=SELECT id, CONCAT_WS( \" - \" ,codice_tipo_documento_fe, descrizione) AS descrizione FROM co_tipidocumento WHERE dir='<?php echo $dir ; ?>' AND (reversed = 0 OR id = <?php echo $record['idtipodocumento'] ; ?>) ORDER BY codice_tipo_documento_fe " , " value " : " $idtipodocumento $ " , " readonly " : < ? php echo intval ( $record [ 'stato' ] != 'Bozza' && $record [ 'stato' ] != 'Annullata' ); ?> , "help": "<?php echo ($database->fetchOne('SELECT tipo FROM an_anagrafiche WHERE idanagrafica = '.prepare($record['idanagrafica']))['tipo'] == 'Ente pubblico') ? 'FPA12 - fattura verso PA (Ente pubblico)' : 'FPR12 - fattura verso soggetti privati (Azienda o Privato)'; ?>" ]}
2019-05-17 06:00:15 +02:00
</ div >
< div class = " col-md-3 " >
2021-07-07 07:57:10 +02:00
< ? php echo ! empty ( $record [ 'idpagamento' ]) ? Modules :: link ( 'Pagamenti' , $record [ 'idpagamento' ], null , null , 'class="pull-right"' ) : '' ; ?>
2021-05-25 15:15:16 +02:00
2021-03-10 15:38:42 +01:00
{[ " type " : " select " , " label " : " <?php echo tr('Pagamento'); ?> " , " name " : " idpagamento " , " required " : 1 , " ajax-source " : " pagamenti " , " value " : " $idpagamento $ " , " extra " : " onchange= \" $ ('#id_banca_azienda').selectSetNew( $ (this).selectData().id_banca_<?php echo $conto ; ?>, $ (this).selectData().descrizione_banca_<?php echo $conto ; ?> ).change(); \" " ]}
2019-05-17 06:00:15 +02:00
</ div >
< div class = " col-md-3 " >
2020-11-21 03:16:59 +01:00
{[ " type " : " select " , " label " : " <?php echo tr('Banca azienda'); ?> " , " name " : " id_banca_azienda " , " ajax-source " : " banche " , " select-options " : < ? php echo json_encode ([ 'id_anagrafica' => $anagrafica_azienda -> id ]); ?> , "value": "$id_banca_azienda$", "icon-after": "add|<?php echo Modules::get('Banche')['id']; ?>|id_anagrafica=<?php echo $anagrafica_azienda->id; ?>", "extra": " <?php echo (intval($block_edit)) ? 'disabled' : ''; ?> " ]}
2019-05-17 06:00:15 +02:00
</ div >
2017-08-04 16:28:16 +02:00
< ? php
2018-07-18 15:20:10 +02:00
if ( $record [ 'stato' ] != 'Bozza' && $record [ 'stato' ] != 'Annullata' ) {
2020-09-07 14:52:46 +02:00
$scadenze = $fattura -> scadenze ;
2019-03-08 16:59:55 +01:00
$ricalcola = true ;
2020-09-07 14:52:46 +02:00
foreach ( $scadenze as $scadenza ) {
$ricalcola = empty ( floatval ( $scadenza -> pagato )) && $ricalcola ;
}
2019-03-08 16:59:55 +01:00
2017-08-04 16:28:16 +02:00
echo '
< div class = " col-md-3 " >
2020-01-14 22:29:52 +01:00
< p class = " pull-left " >< strong > '.tr(' Scadenze ').' </ strong ></ p >
< div class = " btn-group pull-right " >
'.Modules::link(' Scadenzario ', $scadenze[0][' id '], tr(' < i class = " fa fa-edit tip " title = " '.tr('Modifica scadenze').' " ></ i > '), ' ', ' class = " btn btn-xs btn-primary " ' );
2020-09-07 14:52:46 +02:00
// Ricalcola scadenze disponibile solo per fatture di acquisto
2020-01-14 22:29:52 +01:00
if ( $fattura -> isFE () && $ricalcola && $module [ 'name' ] == 'Fatture di acquisto' ) {
echo '
2020-01-22 14:55:22 +01:00
< button type = " button " class = " btn btn-info btn-xs pull-right tip " title = " '.tr('Ricalcola le scadenze').'. '.tr('Per ricalcolare correttamente le scadenze, imposta la fattura di acquisto nello stato \ ' \ 'Bozza \ ' \ ' e correggi il documento come desiderato, poi re-imposta lo stato \ ' \ 'Emessa \ ' \ ' e utilizza questa funzione').'. " id = " ricalcola_scadenze " >
2020-01-14 22:29:52 +01:00
< i class = " fa fa-calculator " aria - hidden = " true " ></ i >
</ button > ' ;
}
echo '
2020-08-11 08:16:36 +02:00
</ div >
2020-01-14 22:29:52 +01:00
< div class = " clearfix " ></ div > ' ;
2017-08-04 16:28:16 +02:00
foreach ( $scadenze as $scadenza ) {
2020-11-13 16:12:29 +01:00
$pagamento_iniziato = ! empty ( floatval ( $scadenza -> pagato )) || $scadenza -> da_pagare == 0 ;
2020-09-07 14:52:46 +02:00
2017-08-04 16:28:16 +02:00
echo '
2020-09-07 14:52:46 +02:00
< p > '.dateFormat($scadenza[' scadenza ']).' : ' ;
2019-03-08 16:59:55 +01:00
2020-09-07 14:52:46 +02:00
if ( $pagamento_iniziato ) {
2019-03-08 16:59:55 +01:00
echo '
< strike > ' ;
}
2021-04-26 09:16:16 +02:00
echo ( empty ( $scadenza -> da_pagare ) ? '<i class="fa fa-exclamation-triangle"></i>' : '' ) . moneyFormat ( $scadenza -> da_pagare );
2019-03-08 16:59:55 +01:00
2020-09-07 14:52:46 +02:00
if ( $pagamento_iniziato ) {
2019-03-08 16:59:55 +01:00
echo '
</ strike > ' ;
}
2020-09-07 14:52:46 +02:00
if ( $pagamento_iniziato && $scadenza -> pagato != $scadenza -> da_pagare ) {
echo ' (' . moneyFormat ( $scadenza -> da_pagare - $scadenza -> pagato ) . ')' ;
}
2019-03-08 16:59:55 +01:00
echo '
</ p > ' ;
}
2017-08-04 16:28:16 +02:00
echo '
</ div > ' ;
}
?>
</ div >
2018-12-28 18:03:38 +01:00
2017-08-04 16:28:16 +02:00
< div class = " row " >
2018-12-28 18:03:38 +01:00
< div class = " col-md-3 " >
2021-05-25 15:15:16 +02:00
{[ " type " : " checkbox " , " label " : " <?php echo tr('Split payment'); ?> " , " name " : " split_payment " , " value " : " $split_payment $ " , " help " : " <?php echo tr('Abilita lo split payment per questo documento. Le aliquote iva con natura N6.X (reverse charge) non saranno disponibili.'); ?> " , " placeholder " : " <?php echo tr('Split payment'); ?> " ]}
2018-12-28 18:03:38 +01:00
</ div >
2019-03-08 16:59:55 +01:00
2019-01-10 15:19:17 +01:00
< ? php
2020-09-17 10:17:39 +02:00
// TODO: Fattura per conto del fornitore (es. cooperative agricole che emettono la fattura per conto dei propri soci produttori agricoli conferenti)
2019-01-10 18:41:25 +01:00
if ( $dir == 'entrata' ) {
?>
2019-01-10 15:19:17 +01:00
< div class = " col-md-3 " >
2019-02-27 12:19:07 +01:00
{[ " type " : " checkbox " , " label " : " <?php echo tr('Fattura per conto terzi'); ?> " , " name " : " is_fattura_conto_terzi " , " value " : " $is_fattura_conto_terzi $ " , " help " : " <?php echo tr('Nell \ 'xml della FE imposta il fornitore ('.stripslashes( $database->fetchOne ('SELECT ragione_sociale FROM an_anagrafiche WHERE idanagrafica = '.prepare(setting('Azienda predefinita')))['ragione_sociale']).') come cessionario e il cliente come cedente/prestatore.'); ?> " , " placeholder " : " <?php echo tr('Fattura per conto terzi'); ?> " ]}
2019-01-10 15:19:17 +01:00
</ div >
2019-03-08 16:59:55 +01:00
2019-01-10 15:19:17 +01:00
< ? php
2019-01-10 18:41:25 +01:00
}
?>
2019-02-15 12:12:44 +01:00
< div class = " col-md-3 " >
2022-01-15 18:21:48 +01:00
< ? php echo ! empty ( $record [ 'id_ritenuta_contributi' ]) ? Modules :: link ( 'Ritenute previdenziali' , $record [ 'id_ritenuta_contributi' ], null , null , 'class="pull-right"' ) : '' ; ?>
{[ " type " : " select " , " label " : " <?php echo tr('Ritenuta previdenziale'); ?> " , " name " : " id_ritenuta_contributi " , " value " : " $id_ritenuta_contributi $ " , " values " : " query=SELECT *, CONCAT(descrizione,(IF(percentuale>0, CONCAT( \" - \" , percentuale, \" % sul \" , percentuale_imponibile, \" % imponibile \" ), \" \" ))) AS descrizione FROM co_ritenuta_contributi " , " help " : " <?php echo tr('Ritenuta previdenziale da applicare alle righe della fattura.'); ?> " ]}
2019-02-15 12:12:44 +01:00
</ div >
2019-09-13 11:29:45 +02:00
< ? php
2021-02-04 13:19:14 +01:00
if ( $dir == 'uscita' ) {
echo '
< div class = " col-md-3 " >
2021-02-18 18:48:44 +01:00
{[ " type " : " checkbox " , " label " : " '.tr('Ritenuta pagata dal fornitore').' " , " name " : " is_ritenuta_pagata " , " value " : " $is_ritenuta_pagata $ " ]}
2021-02-04 13:19:14 +01:00
</ div > ' ;
}
2019-09-13 11:29:45 +02:00
if ( $dir == 'entrata' ) {
2020-07-31 16:13:24 +02:00
echo '
2021-02-23 12:02:47 +01:00
< div class = " col-md-3 " > ' ;
if ( ! empty ( $record [ 'id_dichiarazione_intento' ])) {
echo Plugins :: link ( " Dichiarazioni d'Intento " , $record [ 'idanagrafica' ], null , null , 'class="pull-right"' );
}
2021-02-24 09:24:29 +01:00
2021-02-23 12:02:47 +01:00
echo '
2021-01-05 11:24:42 +01:00
{[ " type " : " select " , " label " : " '.tr( " Dichiarazione d 'intento").' " , " name " : " id_dichiarazione_intento " , " ajax - source " : " dichiarazioni_intento " , " select - options " : { " idanagrafica " : '. $record['idanagrafica'] .', " data " : " '.$record[' data '].' " }, " value " : " $id_dichiarazione_intento $ " ]}
2020-07-31 16:13:24 +02:00
</ div > ' ;
2019-09-13 11:29:45 +02:00
}
2021-02-23 11:34:37 +01:00
echo '
2020-12-02 11:31:52 +01:00
</ div > ' ;
2021-02-26 18:45:52 +01:00
2020-12-04 15:40:47 +01:00
if ( $dir == 'entrata' ) {
2020-12-02 11:31:52 +01:00
echo '
< div class = " row " >
< div class = " col-md-3 " >
{[ " type " : " checkbox " , " label " : " '.tr('Marca da bollo automatica').' " , " name " : " bollo_automatico " , " value " : " '.intval(!isset( $record['bollo'] )).' " , " help " : " '.tr( " Seleziona per impostare automaticamente l 'importo della marca da bollo").' . '.tr(' Applicata solo se il totale della fattura è maggiore di _MONEY_ ' , [
'_MONEY_' => moneyFormat ( setting ( " Soglia minima per l'applicazione della marca da bollo " )),
]) . '.", "placeholder": "' . tr ( 'Bollo automatico' ) . ' " ]}
</ div >
< div class = " col-md-3 bollo " >
{[ " type " : " checkbox " , " label " : " '.tr('Addebita marca da bollo').' " , " name " : " addebita_bollo " , " value " : " $addebita_bollo $ " ]}
</ div >
2017-08-04 16:28:16 +02:00
2020-12-02 11:31:52 +01:00
< div class = " col-md-3 bollo " >
{[ " type " : " number " , " label " : " '.tr('Importo marca da bollo').' " , " name " : " bollo " , " value " : " $bollo $ " ]}
2021-02-23 11:34:37 +01:00
</ div >
2021-02-26 18:45:52 +01:00
< div class = " col-md-3 " >
2022-01-15 17:30:49 +01:00
{[ " type " : " number " , " label " : " '.tr('Sconto in fattura').' " , " name " : " sconto_finale " , " value " : " '.( $fattura->sconto_finale_percentuale ?: $fattura->sconto_finale ).' " , " icon-after " : " choice|untprc|'.(empty( $fattura->sconto_finale ) ? 'PRC' : 'UNT').' " , " help " : " '.tr('Sconto in fattura, utilizzabile per applicare sconti sul Netto a pagare del documento e le relative scadenze').'. '.tr('Per utilizzarlo in relazione a una riga della Fattura Elettronica, inserire il tipo di dato in \ ' \ 'Attributi avanzati \ ' \ ' -> \ ' \ 'Altri Dati Gestionali \ ' \ ' -> \ ' \ 'TipoDato \ ' \ ' e il testo di descrizione in \ ' \ 'Attributi avanzati \ ' \ ' -> \ ' \ 'Altri Dati Gestionali \ ' \ ' -> \ ' \ 'RiferimentoTesto \ ' \ ' della specifica riga').'. '.tr('Nota: lo sconto in fattura non influenza i movimenti contabili').'. " ]}
2021-02-26 18:45:52 +01:00
</ div >
2020-12-02 11:31:52 +01:00
</ div > ' ;
2021-02-26 18:45:52 +01:00
2020-12-04 15:40:47 +01:00
$bollo = new Bollo ( $fattura );
}
2020-12-02 11:31:52 +01:00
?>
2017-08-04 16:28:16 +02:00
< div class = " row " >
< div class = " col-md-12 " >
2019-02-26 11:01:35 +01:00
{[ " type " : " textarea " , " label " : " <?php echo tr('Note'); ?> " , " name " : " note " , " help " : " <?php echo tr('Note visibili anche in fattura.'); ?> " , " value " : " $note $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div >
< div class = " row " >
< div class = " col-md-12 " >
2020-06-15 18:02:15 +02:00
{[ " type " : " textarea " , " label " : " <?php echo tr('Note interne'); ?> " , " name " : " note_aggiuntive " , " help " : " <?php echo tr('Note interne.'); ?> " , " value " : " $note_aggiuntive $ " , " class " : " unblockable " ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div >
</ div >
</ div >
2018-09-24 11:24:48 +02:00
< ? php
2020-09-08 11:38:25 +02:00
if ( $record [ 'descrizione_tipo' ] == 'Fattura accompagnatoria di vendita' ) {
2018-09-24 11:24:48 +02:00
echo '
< div class = " box box-info " >
< div class = " box-header with-border " >
< h3 class = " box-title " >< i class = " fa fa-edit " ></ i > '.tr(' Dati Fattura accompagnatoria ').' </ h3 >
</ div >
< div class = " box-body " >
< div class = " row " >
< div class = " col-md-3 " >
2018-11-30 16:10:15 +01:00
{[ " type " : " select " , " label " : " '.tr('Aspetto beni').' " , " name " : " idaspettobeni " , " placeholder " : " " , " ajax-source " : " aspetto-beni " , " value " : " $idaspettobeni $ " , " icon-after " : " add|'.Modules::get('Aspetto beni')['id'].'||'.(( $record['stato'] != 'Bozza') ? 'disabled' : '').' " ]}
2018-09-24 11:24:48 +02:00
</ div >
< div class = " col-md-3 " >
2018-11-30 16:10:15 +01:00
{[ " type " : " select " , " label " : " '.tr('Causale trasporto').' " , " name " : " idcausalet " , " placeholder " : " " , " ajax-source " : " causali " , " value " : " $idcausalet $ " , " icon-after " : " add|'.Modules::get('Causali')['id'].'||'.(( $record['stato'] != 'Bozza') ? 'disabled' : '').' " ]}
2018-09-24 11:24:48 +02:00
</ div >
< div class = " col-md-3 " >
2018-11-28 02:10:12 +01:00
{[ " type " : " select " , " label " : " '.tr('Porto').' " , " name " : " idporto " , " placeholder " : " " , " values " : " query=SELECT id, descrizione FROM dt_porto ORDER BY descrizione ASC " , " value " : " $idporto $ " ]}
2018-09-24 11:24:48 +02:00
</ div >
< div class = " col-md-3 " >
{[ " type " : " text " , " label " : " '.tr('Num. colli').' " , " name " : " n_colli " , " value " : " $n_colli $ " ]}
</ div >
</ div >
< div class = " row " >
< div class = " col-md-3 " >
{[ " type " : " select " , " label " : " '.tr('Tipo di spedizione').' " , " name " : " idspedizione " , " values " : " query=SELECT id, descrizione FROM dt_spedizione ORDER BY descrizione ASC " , " value " : " $idspedizione $ " ]}
</ div >
< div class = " col-md-3 " >
2020-08-11 08:10:06 +02:00
{[ " type " : " select " , " label " : " '.tr('Vettore').' " , " name " : " idvettore " , " ajax-source " : " vettori " , " value " : " $idvettore $ " , " icon-after " : " add|'.Modules::get('Anagrafiche')['id'].'|tipoanagrafica=Vettore|'.((( $record['idspedizione'] != 3) and ( $record['stato'] == 'Bozza')) ? '' : 'disabled').' " , " disabled " : '.intval($record[' idspedizione '] == 3).' , " required " : '.intval($record[' idspedizione '] != 3).' ]}
2018-09-24 11:24:48 +02:00
</ div >
2018-11-23 16:48:30 +01:00
< script >
2020-07-31 14:25:50 +02:00
$ ( " #idspedizione " ) . change ( function () {
2018-11-23 16:48:30 +01:00
if ( $ ( this ) . val () == 3 ) {
$ ( " #idvettore " ) . attr ( " required " , false );
2018-11-27 01:00:48 +01:00
$ ( " #idvettore " ) . attr ( " disabled " , true );
2018-11-27 11:43:22 +01:00
$ ( " label[for=idvettore] " ) . text ( " '.tr('Vettore').' " );
2019-07-08 18:10:52 +02:00
$ ( " #idvettore " ) . selectReset ( " '.tr( " Seleziona un 'opzione").' " );
2018-11-27 11:43:22 +01:00
$ ( " #idvettore " ) . next () . next () . find ( " button.bound:nth-child(1) " ) . prop ( " disabled " , true );
2018-11-23 16:48:30 +01:00
} else {
$ ( " #idvettore " ) . attr ( " required " , true );
2018-11-27 01:00:48 +01:00
$ ( " #idvettore " ) . attr ( " disabled " , false );
2018-11-27 11:43:22 +01:00
$ ( " label[for=idvettore] " ) . text ( " '.tr('Vettore').'* " );
$ ( " #idvettore " ) . next () . next () . find ( " button.bound:nth-child(1) " ) . prop ( " disabled " , false );
}
});
2018-12-07 09:39:42 +01:00
2020-07-31 14:25:50 +02:00
$ ( " #idcausalet " ) . change ( function () {
2018-11-27 11:43:22 +01:00
if ( $ ( this ) . val () == 3 ) {
$ ( " #tipo_resa " ) . attr ( " disabled " , false );
} else {
$ ( " #tipo_resa " ) . attr ( " disabled " , true );
2018-11-23 16:48:30 +01:00
}
});
</ script > ' ;
$tipo_resa = [
[
'id' => 'EXW' ,
'text' => 'EXW' ,
],
[
'id' => 'FCA' ,
'text' => 'FCA' ,
],
[
'id' => 'FAS' ,
'text' => 'FAS' ,
],
[
'id' => 'FOB' ,
'text' => 'FOB' ,
],
[
'id' => 'CFR' ,
'text' => 'CFR' ,
],
[
'id' => 'CIF' ,
'text' => 'CIF' ,
],
[
'id' => 'CPT' ,
'text' => 'CPT' ,
],
[
'id' => 'CIP' ,
'text' => 'CIP' ,
],
[
'id' => 'DAF' ,
'text' => 'DAF' ,
],
[
'id' => 'DES' ,
'text' => 'DES' ,
],
[
'id' => 'DEQ' ,
'text' => 'DEQ' ,
],
[
'id' => 'DDU' ,
'text' => 'DDU' ,
],
[
'id' => 'DDP' ,
'text' => 'DDP' ,
2018-11-30 16:10:15 +01:00
],
2018-11-23 16:48:30 +01:00
];
echo '
< div class = " col-md-3 " >
2020-07-08 08:45:55 +02:00
{[ " type " : " select " , " label " : " '.tr('Tipo Resa').' " , " name " : " tipo_resa " , " value " : " $tipo_resa $ " , " values " : '.json_encode($tipo_resa).' , " readonly " : '.intval($record[' causale_desc '] != ' Reso ').' ]}
2018-11-23 16:48:30 +01:00
</ div >
2020-07-08 08:45:55 +02:00
</ div >
</ div > ' ;
echo '
< div class = " row " >
< div class = " col-md-3 " >
2021-01-12 17:40:04 +01:00
{[ " type " : " number " , " label " : " '.tr('Peso').' " , " name " : " peso " , " value " : " $peso $ " , " readonly " : " '.intval(empty( $record['peso_manuale'] )).' " , " help " : " '.tr('Il valore del campo Peso viene calcolato in automatico sulla base degli articoli inseriti nel documento, a meno dell \ 'impostazione di un valore manuale in questo punto').' " ]}
< input type = " hidden " id = " peso_calcolato " name = " peso_calcolato " value = " '. $fattura->peso_calcolato .' " >
2020-07-08 08:45:55 +02:00
</ div >
< div class = " col-md-3 " >
2021-01-12 17:40:04 +01:00
{[ " type " : " checkbox " , " label " : " '.tr('Modifica peso').' " , " name " : " peso_manuale " , " value " : " $peso_manuale $ " , " help " : " '.tr('Seleziona per modificare manualmente il campo Peso').' " , " placeholder " : " '.tr('Modifica peso').' " ]}
2020-07-08 08:45:55 +02:00
</ div >
< div class = " col-md-3 " >
2021-01-12 17:40:04 +01:00
{[ " type " : " number " , " label " : " '.tr('Volume').' " , " name " : " volume " , " value " : " $volume $ " , " readonly " : " '.intval(empty( $record['volume_manuale'] )).' " , " help " : " '.tr('Il valore del campo Volume viene calcolato in automatico sulla base degli articoli inseriti nel documento, a meno dell \ 'impostazione di un valore manuale in questo punto').' " ]}
< input type = " hidden " id = " volume_calcolato " name = " volume_calcolato " value = " '. $fattura->volume_calcolato .' " >
2020-07-08 08:45:55 +02:00
</ div >
< div class = " col-md-3 " >
2021-01-12 17:40:04 +01:00
{[ " type " : " checkbox " , " label " : " '.tr('Modifica volume').' " , " name " : " volume_manuale " , " value " : " $volume_manuale $ " , " help " : " '.tr('Seleziona per modificare manualmente il campo Volume').' " , " placeholder " : " '.tr('Modifica volume').' " ]}
2018-09-24 11:24:48 +02:00
</ div >
</ div >
</ div > ' ;
}
2017-08-04 16:28:16 +02:00
2020-08-03 12:08:52 +02:00
echo '
</ form >
2017-08-04 16:28:16 +02:00
<!-- RIGHE -->
< div class = " panel panel-primary " >
< div class = " panel-heading " >
2020-08-03 12:08:52 +02:00
< h3 class = " panel-title " > '.tr(' Righe ').' </ h3 >
2017-08-04 16:28:16 +02:00
</ div >
< div class = " panel-body " >
< div class = " row " >
< div class = " col-md-12 " >
2020-08-03 12:08:52 +02:00
< div class = " pull-left " > ' ;
2019-05-24 19:26:59 +02:00
if ( ! $block_edit ) {
2018-07-18 15:20:10 +02:00
if ( empty ( $record [ 'ref_documento' ])) {
2018-07-03 17:28:02 +02:00
if ( $dir == 'entrata' ) {
// Lettura interventi non rifiutati, non fatturati e non collegati a preventivi o contratti
2020-03-12 23:57:49 +01:00
$int_query = 'SELECT COUNT(*) AS tot FROM in_interventi INNER JOIN in_statiintervento ON in_interventi.idstatointervento=in_statiintervento.idstatointervento WHERE idanagrafica=' . prepare ( $record [ 'idanagrafica' ]) . ' AND in_statiintervento.is_completato=1 AND in_statiintervento.is_fatturabile=1 AND in_interventi.id NOT IN (SELECT idintervento FROM co_righe_documenti WHERE idintervento IS NOT NULL) AND in_interventi.id_preventivo IS NULL AND in_interventi.id NOT IN (SELECT idintervento FROM co_promemoria WHERE idintervento IS NOT NULL)' ;
2018-02-09 14:25:40 +01:00
$interventi = $dbo -> fetchArray ( $int_query )[ 0 ][ 'tot' ];
2017-08-04 16:28:16 +02:00
2018-07-03 17:28:02 +02:00
// Se non trovo niente provo a vedere se ce ne sono per clienti terzi
if ( empty ( $interventi )) {
// Lettura interventi non rifiutati, non fatturati e non collegati a preventivi o contratti (clienti terzi)
2020-03-12 23:57:49 +01:00
$int_query = 'SELECT COUNT(*) AS tot FROM in_interventi INNER JOIN in_statiintervento ON in_interventi.idstatointervento=in_statiintervento.idstatointervento WHERE idclientefinale=' . prepare ( $record [ 'idanagrafica' ]) . ' AND in_statiintervento.is_completato=1 AND in_statiintervento.is_fatturabile=1 AND in_interventi.id NOT IN (SELECT idintervento FROM co_righe_documenti WHERE idintervento IS NOT NULL) AND in_interventi.id_preventivo IS NULL AND in_interventi.id NOT IN (SELECT idintervento FROM co_promemoria WHERE idintervento IS NOT NULL)' ;
2018-07-03 17:28:02 +02:00
$interventi = $dbo -> fetchArray ( $int_query )[ 0 ][ 'tot' ];
}
echo '
2020-07-20 17:26:50 +02:00
< div class = " tip " data - toggle = " tooltip " title = " '.tr('Attività completate non collegate a preventivi o contratti e che non siano già state fatturate.').' " >
2021-07-28 10:32:33 +02:00
< a class = " btn btn-sm btn-primary '.(!empty( $interventi ) ? '' : ' disabled').' " data - href = " '. $structure->fileurl ('add_intervento.php').'?id_module='. $id_module .'&id_record='. $id_record .' " data - title = " '.tr('Aggiungi attività').' " >
2020-09-25 11:14:50 +02:00
< i class = " fa fa-plus " ></ i > '.tr(' Attività ').'
2018-07-27 16:17:14 +02:00
</ a >
</ div > ' ;
2017-09-19 17:27:31 +02:00
2018-07-03 17:28:02 +02:00
// Lettura preventivi accettati, in attesa di conferma o in lavorazione
2019-09-11 08:48:37 +02:00
$prev_query = 'SELECT COUNT(*) AS tot FROM co_preventivi WHERE idanagrafica=' . prepare ( $record [ 'idanagrafica' ]) . ' AND idstato IN(SELECT id FROM co_statipreventivi WHERE is_fatturabile = 1) AND default_revision=1 AND co_preventivi.id IN (SELECT idpreventivo FROM co_righe_preventivi WHERE co_righe_preventivi.idpreventivo = co_preventivi.id AND (qta - qta_evasa) > 0)' ;
2018-07-03 17:28:02 +02:00
$preventivi = $dbo -> fetchArray ( $prev_query )[ 0 ][ 'tot' ];
echo '
2020-07-20 17:26:50 +02:00
< div class = " tip " >
2021-07-28 10:32:33 +02:00
< a class = " btn btn-sm btn-primary '.(!empty( $preventivi ) ? '' : ' disabled').' " data - href = " '. $structure->fileurl ('add_preventivo.php').'?id_module='. $id_module .'&id_record='. $id_record .' " data - title = " '.tr('Aggiungi preventivo').' " data - toggle = " tooltip " >
2020-09-25 11:14:50 +02:00
< i class = " fa fa-plus " ></ i > '.tr(' Preventivo ').'
2018-07-27 16:17:14 +02:00
</ a >
</ div > ' ;
2017-08-04 16:28:16 +02:00
2018-07-03 17:28:02 +02:00
// Lettura contratti accettati, in attesa di conferma o in lavorazione
2019-03-22 11:35:26 +01:00
$contr_query = 'SELECT COUNT(*) AS tot FROM co_contratti WHERE idanagrafica=' . prepare ( $record [ 'idanagrafica' ]) . ' AND idstato IN( SELECT id FROM co_staticontratti WHERE is_fatturabile = 1) AND co_contratti.id IN (SELECT idcontratto FROM co_righe_contratti WHERE co_righe_contratti.idcontratto = co_contratti.id AND (qta - qta_evasa) > 0)' ;
2018-07-03 17:28:02 +02:00
$contratti = $dbo -> fetchArray ( $contr_query )[ 0 ][ 'tot' ];
echo '
2020-07-20 17:26:50 +02:00
< div class = " tip " >
2021-07-28 10:32:33 +02:00
< a class = " btn btn-sm btn-primary '.(!empty( $contratti ) ? '' : ' disabled').' " data - href = " '. $structure->fileurl ('add_contratto.php').'?id_module='. $id_module .'&id_record='. $id_record .' " data - title = " '.tr('Aggiungi contratto').' " >
2020-09-25 11:14:50 +02:00
< i class = " fa fa-plus " ></ i > '.tr(' Contratto ').'
2018-07-27 16:17:14 +02:00
</ a >
</ div > ' ;
2018-07-03 17:28:02 +02:00
}
2018-06-26 10:25:50 +02:00
2020-04-27 11:55:07 +02:00
// Lettura ddt (entrata o uscita)
2020-07-14 13:30:25 +02:00
$ddt_query = ' SELECT COUNT ( * ) AS tot FROM dt_ddt
LEFT JOIN `dt_causalet` ON `dt_causalet` . `id` = `dt_ddt` . `idcausalet`
LEFT JOIN `dt_statiddt` ON `dt_statiddt` . `id` = `dt_ddt` . `idstatoddt`
LEFT JOIN `dt_tipiddt` ON `dt_tipiddt` . `id` = `dt_ddt` . `idtipoddt`
WHERE idanagrafica = '.prepare($record[' idanagrafica ']).'
AND `dt_statiddt` . `descrizione` IN ( \ ' Evaso\ ' , \ ' Parzialmente evaso\ ' , \ ' Parzialmente fatturato\ ' )
AND `dt_tipiddt` . `dir` = '.prepare($dir).'
AND `dt_causalet` . `is_importabile` = 1
AND dt_ddt . id IN ( SELECT idddt FROM dt_righe_ddt WHERE dt_righe_ddt . idddt = dt_ddt . id AND ( qta - qta_evasa ) > 0 ) ' ;
2018-07-28 18:02:17 +02:00
$ddt = $dbo -> fetchArray ( $ddt_query )[ 0 ][ 'tot' ];
echo '
2021-07-28 10:32:33 +02:00
< div class = " tip " >
2021-08-04 20:42:12 +02:00
< a class = " btn btn-sm btn-primary'.(!empty( $ddt ) ? '' : ' disabled').' " data - href = " '. $structure->fileurl ('add_ddt.php').'?id_module='. $id_module .'&id_record='. $id_record .' " data - toggle = " tooltip " data - title = " '.tr('Aggiungi ddt').' " >
2021-07-28 10:32:33 +02:00
< i class = " fa fa-plus " ></ i > '.tr(' Ddt ').'
</ a >
</ div > ' ;
2018-06-26 10:25:50 +02:00
2020-04-27 11:55:07 +02:00
// Lettura ordini (cliente o fornitore)
2020-02-13 12:44:32 +01:00
$ordini_query = 'SELECT COUNT(*) AS tot FROM or_ordini WHERE idanagrafica=' . prepare ( $record [ 'idanagrafica' ]) . ' AND idstatoordine IN (SELECT id FROM or_statiordine WHERE descrizione IN(\'Accettato\', \'Evaso\', \'Parzialmente evaso\', \'Parzialmente fatturato\')) AND idtipoordine=(SELECT id FROM or_tipiordine WHERE dir=' . prepare ( $dir ) . ') AND or_ordini.id IN (SELECT idordine FROM or_righe_ordini WHERE or_righe_ordini.idordine = or_ordini.id AND (qta - qta_evasa) > 0)' ;
2018-07-03 17:28:02 +02:00
$ordini = $dbo -> fetchArray ( $ordini_query )[ 0 ][ 'tot' ];
echo '
2021-07-28 10:32:33 +02:00
< div class = " tip " >
< a class = " btn btn-sm btn-primary'.(!empty( $ordini ) ? '' : ' disabled').' " data - href = " '. $structure->fileurl ('add_ordine.php').'?id_module='. $id_module .'&id_record='. $id_record .' " data - toggle = " tooltip " data - title = " '.tr('Aggiungi ordine').' " >
< i class = " fa fa-plus " ></ i > '.tr(' Ordine ').'
</ a >
</ div > ' ;
2018-07-03 17:28:02 +02:00
}
2017-08-04 16:28:16 +02:00
2017-09-19 17:27:31 +02:00
// Lettura articoli
2019-08-26 11:10:59 +02:00
$art_query = 'SELECT id FROM mg_articoli WHERE attivo = 1 AND deleted_at IS NULL' ;
2021-10-29 11:56:39 +02:00
if ( $dir == 'entrata' && ! setting ( 'Permetti selezione articoli con quantità minore o uguale a zero in Documenti di Vendita' )) {
2018-02-09 14:25:40 +01:00
$art_query .= ' AND (qta > 0 OR servizio = 1)' ;
2020-03-31 20:34:31 +02:00
} else {
2020-03-27 13:27:23 +01:00
//Gli articoli possono essere creati al volo direttamente dal modale di aggiunta articolo
$art_query .= ' OR 1=1' ;
2018-02-09 14:25:40 +01:00
}
2019-08-26 11:10:59 +02:00
$articoli = $dbo -> fetchNum ( $art_query );
2017-09-19 17:27:31 +02:00
echo '
2020-08-03 12:08:52 +02:00
< button class = " btn btn-sm btn-primary tip'.(!empty( $articoli ) ? '' : ' disabled').' " title = " '.tr('Aggiungi articolo').' " onclick = " gestioneArticolo(this) " >
< i class = " fa fa-plus " ></ i > '.tr(' Articolo ').'
</ button > ' ;
2020-07-20 14:40:11 +02:00
echo '
2020-08-26 14:28:56 +02:00
< button type = " button " class = " btn btn-sm btn-primary tip " title = " '.tr('Aggiungi articoli tramite barcode').' " onclick = " gestioneBarcode(this) " >
2020-08-03 12:08:52 +02:00
< i class = " fa fa-plus " ></ i > '.tr(' Barcode ').'
</ button > ' ;
2017-09-19 16:20:44 +02:00
2017-09-19 17:27:31 +02:00
echo '
2020-08-26 14:28:56 +02:00
< button type = " button " class = " btn btn-sm btn-primary tip " title = " '.tr('Aggiungi riga').' " onclick = " gestioneRiga(this) " >
2020-08-03 12:08:52 +02:00
< i class = " fa fa-plus " ></ i > '.tr(' Riga ').'
</ button > ' ;
2018-02-04 17:26:25 +01:00
2018-01-18 19:03:06 +01:00
echo '
2020-08-26 14:28:56 +02:00
< button type = " button " class = " btn btn-sm btn-primary tip " title = " '.tr('Aggiungi descrizione').' " onclick = " gestioneDescrizione(this) " >
2020-08-03 12:08:52 +02:00
< i class = " fa fa-plus " ></ i > '.tr(' Descrizione ').'
</ button > ' ;
2019-03-29 12:46:17 +01:00
echo '
2020-08-26 14:28:56 +02:00
< button type = " button " class = " btn btn-sm btn-primary tip " title = " '.tr('Aggiungi sconto/maggiorazione').' " onclick = " gestioneSconto(this) " >
2020-08-03 12:08:52 +02:00
< i class = " fa fa-plus " ></ i > '.tr(' Sconto / maggiorazione ').'
</ button > ' ;
2017-08-04 16:28:16 +02:00
}
2017-09-19 17:27:31 +02:00
?>
2017-08-04 16:28:16 +02:00
</ div >
< div class = " pull-right " >
<!-- Stampe -->
< ? php
2018-02-09 15:43:51 +01:00
//stampa solo per fatture di vendita
2017-08-04 16:28:16 +02:00
if ( $dir == 'entrata' ) {
2018-02-11 20:24:29 +01:00
if ( sizeof ( $campi_mancanti ) > 0 ) {
2018-02-27 00:12:11 +01:00
//echo '{( "name": "button", "type": "print", "id_module": "'.$id_module.'", "id_record": "'.$id_record.'", "class": "btn-info disabled" )}';
2018-02-11 20:24:29 +01:00
} else {
2018-02-27 00:12:11 +01:00
//echo '{( "name": "button", "type": "print", "id_module": "'.$id_module.'", "id_record": "'.$id_record.'" )}';
2017-08-04 16:28:16 +02:00
}
}
?>
</ div >
</ div >
</ div >
< div class = " clearfix " ></ div >
< br >
2020-09-14 10:49:23 +02:00
< div class = " row " >
< div class = " col-md-12 " id = " righe " ></ div >
2017-08-04 16:28:16 +02:00
</ div >
</ div >
</ div >
2019-03-15 12:16:20 +01:00
< ? php
2020-03-09 13:57:13 +01:00
2019-03-15 12:16:20 +01:00
if ( $dir == 'uscita' && $fattura -> isFE ()) {
echo '
< div class = " alert alert-info text-center " id = " controlla_totali " >< i class = " fa fa-spinner fa-spin " ></ i > '.tr(' Controllo sui totali del documento e della fattura elettronica in corso ').' ...</ div >
< script >
2020-03-02 16:13:07 +01:00
$ ( document ) . ready ( function () {
2019-03-15 12:16:20 +01:00
$ . ajax ({
url : globals . rootdir + " /actions.php " ,
type : " post " ,
data : {
id_module : globals . id_module ,
id_record : globals . id_record ,
op : " controlla_totali " ,
},
success : function ( data ){
data = JSON . parse ( data );
2020-03-02 16:13:07 +01:00
2021-09-13 10:17:11 +02:00
const div = $ ( " #controlla_totali " );
2019-03-15 12:16:20 +01:00
div . removeClass ( " alert-info " );
2021-09-13 10:17:11 +02:00
const calculated = parseFloat ( data . calculated );
const stored = parseFloat ( data . stored );
2019-05-04 00:32:28 +02:00
2021-06-03 09:19:28 +02:00
if ( stored == null ) {
2019-03-15 15:54:29 +01:00
div . addClass ( " alert-info " ) . html ( " '.tr( " Il file XML non contiene il nodo '' ImportoTotaleDocumento '' : impossibile controllare corrispondenza dei totali " ).'. " )
2021-11-02 17:05:17 +01:00
} else if ( stored . toLocale () == calculated . toLocale ()){
2019-03-15 12:16:20 +01:00
div . addClass ( " alert-success " ) . html ( " '.tr('Il totale del file XML corrisponde a quello calcolato dal gestionale').'. " )
} else {
2021-09-13 10:17:11 +02:00
div . addClass ( " alert-warning " ) . html ( " '.tr('Il totale del file XML non corrisponde a quello calcolato dal gestionale: previsto _XML_, calcolato _CALC_ (differenza _DIFF_)', [
'_XML_' => '" + stored.toLocale() + " " + globals.currency + "' ,
'_CALC_' => '" + calculated.toLocale() + " " + globals.currency + "' ,
'_DIFF_' => '" + (calculated - stored).toLocale() + " " + globals.currency + "' ,
2019-03-15 12:16:20 +01:00
]) . ' . " )
}
2020-03-02 16:13:07 +01:00
2019-03-15 12:16:20 +01:00
}
});
})
</ script > ' ;
}
?>
2022-01-13 11:56:12 +01:00
{( " name " : " filelist_and_upload " , " id_module " : " $id_module $ " , " id_record " : " $id_record $ " , " abilita_genera " : " <?php echo $abilita_genera ; ?> " )}
2017-08-04 16:28:16 +02:00
2019-01-11 15:57:46 +01:00
< ? php
2019-03-08 16:59:55 +01:00
if ( $dir == 'entrata' ) {
echo '
2019-07-12 16:08:15 +02:00
< div class = " alert alert-info text-center " > '.tr(' Per allegare un documento alla fattura elettronica caricare il file PDF specificando come categoria " Allegati Fattura Elettronica " ').' .</ div > ' ;
2019-03-08 16:59:55 +01:00
}
2019-01-11 15:57:46 +01:00
2019-03-08 16:59:55 +01:00
echo '
2017-08-04 16:28:16 +02:00
< script type = " text/javascript " >
2020-07-31 14:25:50 +02:00
$ ( " #idanagrafica " ) . change ( function () {
updateSelectOption ( " idanagrafica " , $ ( this ) . val ());
2019-09-13 12:27:29 +02:00
session_set ( " superselect,idanagrafica " , $ ( this ) . val (), 0 );
2020-03-02 16:13:07 +01:00
2019-09-13 12:27:29 +02:00
$ ( " #id_dichiarazione_intento " ) . selectReset (); ' ;
2019-06-25 17:34:26 +02:00
if ( $dir == 'entrata' ) {
echo '$("#idsede_destinazione").selectReset();' ;
2019-06-29 11:01:26 +02:00
} else {
2019-06-25 17:34:26 +02:00
echo '$("#idsede_partenza").selectReset();' ;
}
2019-09-13 12:27:29 +02:00
2019-06-25 17:34:26 +02:00
echo '
2017-08-04 16:28:16 +02:00
});
2020-07-31 14:25:50 +02:00
$ ( " #ricalcola_scadenze " ) . click ( function () {
2019-03-08 16:59:55 +01:00
swal ({
title : " '.tr('Desideri ricalcolare le scadenze?').' " ,
type : " warning " ,
showCancelButton : true ,
confirmButtonText : " '.tr('Sì').' "
}) . then ( function ( result ) {
redirect ( globals . rootdir + " /editor.php " , {
id_module : globals . id_module ,
id_record : globals . id_record ,
op : " ricalcola_scadenze " ,
backto : " record-edit " ,
}, " post " )
})
});
</ script > ' ;
2018-07-04 12:57:53 +02:00
2018-07-04 17:56:51 +02:00
if ( ! empty ( $note_accredito )) {
2018-07-04 12:57:53 +02:00
echo '
2018-09-28 17:29:59 +02:00
< div class = " alert alert-info text-center " > '.tr(' Note di credito collegate ').' : ' ;
2018-07-04 17:56:51 +02:00
foreach ( $note_accredito as $nota ) {
2018-07-04 12:57:53 +02:00
$text = tr ( 'Rif. fattura _NUM_ del _DATE_' , [
'_NUM_' => $nota [ 'numero' ],
'_DATE_' => Translator :: dateToLocale ( $nota [ 'data' ]),
]);
echo '
< br > '.Modules::link(' Fatture di vendita ', $nota[' id ' ], $text , $text );
}
echo '
</ div > ' ;
}
2018-07-10 16:01:28 +02:00
?>
2018-09-28 16:17:10 +02:00
{( " name " : " log_email " , " id_module " : " $id_module $ " , " id_record " : " $id_record $ " )}
2018-07-10 16:19:38 +02:00
2018-07-26 16:19:34 +02:00
< ? php
2019-06-20 16:44:45 +02:00
// Eliminazione ddt solo se ho accesso alla sede aziendale
2019-10-07 16:00:28 +02:00
$field_name = ( $dir == 'entrata' ) ? 'idsede_partenza' : 'idsede_destinazione' ;
2019-06-29 11:01:26 +02:00
if ( in_array ( $record [ $field_name ], $user -> sedi )) {
2021-09-17 11:00:36 +02:00
$disabilita_eliminazione = in_array ( $fattura -> codice_stato_fe , [ 'RC' , 'MC' , 'EC01' ]);
echo '
< a class = " btn btn-danger ask '.( $disabilita_eliminazione ? 'disabled' : '').' " data - backto = " record-list " '.($disabilita_eliminazione ? ' disabled ' : ' ').' >
< i class = " fa fa-trash " ></ i > '.tr(' Elimina ').'
</ a > ' ;
2019-06-20 16:44:45 +02:00
}
2020-08-03 12:08:52 +02:00
echo '
2018-07-26 16:19:34 +02:00
< script >
2020-08-03 12:08:52 +02:00
function gestioneArticolo ( button ) {
gestioneRiga ( button , " is_articolo " );
}
2018-07-26 17:34:12 +02:00
2020-08-03 12:08:52 +02:00
function gestioneBarcode ( button ) {
gestioneRiga ( button , " is_barcode " );
}
2018-07-26 17:34:12 +02:00
2020-08-03 12:08:52 +02:00
function gestioneSconto ( button ) {
gestioneRiga ( button , " is_sconto " );
}
2020-03-02 16:13:07 +01:00
2020-08-03 12:08:52 +02:00
function gestioneDescrizione ( button ) {
gestioneRiga ( button , " is_descrizione " );
}
2018-07-28 18:02:17 +02:00
2020-08-03 12:08:52 +02:00
async function gestioneRiga ( button , options ) {
// Salvataggio via AJAX
2021-03-29 18:31:23 +02:00
await salvaForm ( " #edit-form " , {}, button );
// Lettura titolo e chiusura tooltip
let title = $ ( button ) . tooltipster ( " content " );
$ ( button ) . tooltipster ( " close " )
2020-03-02 16:13:07 +01:00
2020-08-03 12:08:52 +02:00
// Apertura modal
2021-03-29 18:31:23 +02:00
options = options ? options : " is_riga " ;
openModal ( title , " '. $structure->fileurl ('row-add.php').'?id_module='. $id_module .'&id_record='. $id_record .'& " + options );
2020-08-03 12:08:52 +02:00
}
2019-09-27 18:11:30 +02:00
2020-09-14 10:49:23 +02:00
/**
* Funzione dedicata al caricamento dinamico via AJAX delle righe del documento .
*/
function caricaRighe () {
let container = $ ( " #righe " );
localLoading ( container , true );
2020-09-14 11:06:35 +02:00
return $ . get ( " '. $structure->fileurl ('row-list.php').'?id_module='. $id_module .'&id_record='. $id_record .' " , function ( data ) {
container . html ( data );
2020-09-14 10:49:23 +02:00
localLoading ( container , false );
});
}
2019-09-27 18:11:30 +02:00
$ ( document ) . ready ( function () {
2020-09-14 10:49:23 +02:00
caricaRighe ();
2019-09-27 18:11:30 +02:00
$ ( " #data_registrazione " ) . on ( " dp.change " , function ( e ) {
2020-09-14 10:49:23 +02:00
let data_competenza = $ ( " #data_competenza " );
2019-09-27 18:11:30 +02:00
2020-09-14 10:49:23 +02:00
if ( data_competenza . data ( " DateTimePicker " ) . date () < e . date ){
data_competenza . data ( " DateTimePicker " ) . date ( e . date );
2019-09-27 18:11:30 +02:00
}
2019-11-26 16:12:30 +01:00
});
$ ( " #data " ) . on ( " dp.change " , function ( e ) {
2020-09-14 10:49:23 +02:00
let data_competenza = $ ( " #data_competenza " );
2019-11-26 16:12:30 +01:00
data_competenza . data ( " DateTimePicker " ) . minDate ( e . date );
if ( data_competenza . data ( " DateTimePicker " ) . date () < e . date ){
data_competenza . data ( " DateTimePicker " ) . date ( e . date );
}
});
2019-09-27 18:11:30 +02:00
});
2020-09-08 11:38:25 +02:00
function cambiaStato () {
let testo = $ ( " #idstatodocumento option:selected " ) . text ();
2020-09-08 11:45:52 +02:00
if ( testo === " Pagato " || testo === " Parzialmente pagato " ) {
2020-09-08 11:38:25 +02:00
if ( confirm ( " '.tr('Sicuro di voler impostare manualmente la fattura come pagata senza aggiungere il movimento in prima nota?').' " )) {
return true ;
} else {
$ ( " #idstatodocumento " ) . selectSet ( '.$record[' idstatodocumento '].' );
}
}
2020-12-02 11:31:52 +01:00
} ' ;
2020-12-04 15:40:47 +01:00
if ( $dir == 'entrata' ) {
2020-12-02 11:31:52 +01:00
echo '
function bolloAutomatico () {
let bollo_automatico = input ( " bollo_automatico " );
let addebita_bollo = input ( " addebita_bollo " );
2020-12-04 15:40:47 +01:00
let has_bollo = '.($bollo->getBollo() > 0 ? ' true ' : ' false ').' ;
2020-12-02 11:31:52 +01:00
if ( bollo_automatico . get () == 0 ){
$ ( " .bollo " ) . show ();
2021-02-23 11:34:37 +01:00
input ( " bollo " ) . enable ();
2020-12-02 11:31:52 +01:00
} else if ( ! has_bollo ) {
2021-02-23 11:34:37 +01:00
$ ( " .bollo " ) . hide ();
2020-12-02 11:31:52 +01:00
} else {
$ ( " .bollo " ) . show ();
input ( " bollo " ) . disable ();
2020-12-04 15:40:47 +01:00
$ ( " #bollo " ) . val ( '.setting(' Importo marca da bollo ').' );
2020-12-02 11:31:52 +01:00
}
}
$ ( document ) . ready ( function () {
2021-01-12 17:40:04 +01:00
if ( ! $ ( " #volume_manuale " ) . is ( " :checked " )){
input ( " volume " ) . set ( $ ( " #volume_calcolato " ) . val ());
}
$ ( " #volume_manuale " ) . click ( function () {
$ ( " #volume " ) . prop ( " readonly " , ! $ ( " #volume_manuale " ) . is ( " :checked " ));
if ( ! $ ( " #volume_manuale " ) . is ( " :checked " )){
input ( " volume " ) . set ( $ ( " #volume_calcolato " ) . val ());
}
});
if ( ! $ ( " #peso_manuale " ) . is ( " :checked " )){
input ( " peso " ) . set ( $ ( " #peso_calcolato " ) . val ());
}
$ ( " #peso_manuale " ) . click ( function () {
$ ( " #peso " ) . prop ( " readonly " , ! $ ( " #peso_manuale " ) . is ( " :checked " ));
if ( ! $ ( " #peso_manuale " ) . is ( " :checked " )){
input ( " peso " ) . set ( $ ( " #peso_calcolato " ) . val ());
}
});
2020-12-02 11:31:52 +01:00
bolloAutomatico ();
});
input ( " bollo_automatico " ) . change ( function () {
bolloAutomatico ();
}); ' ;
2020-09-08 11:38:25 +02:00
}
2020-12-02 11:31:52 +01:00
echo '
2018-07-26 16:19:34 +02:00
</ script > ' ;