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
include_once __DIR__ . '/../../core.php' ;
2018-11-09 10:49:21 +01:00
$esigibilita = [
[
'id' => 'I' ,
'text' => tr ( 'IVA ad esigibilità immediata' ),
],
[
'id' => 'D' ,
'text' => tr ( 'IVA ad esigibilità differita' ),
],
[
'id' => 'S' ,
'text' => tr ( 'Scissione dei pagamenti' ),
],
];
2019-06-03 10:35:00 +02:00
$res = $dbo -> fetchNum ( 'SELECT `co_righe_documenti`.`id` FROM `co_righe_documenti` WHERE `co_righe_documenti`.`idiva`=' . prepare ( $id_record ) .
' UNION SELECT `co_righe_preventivi`.`id` FROM `co_righe_preventivi` WHERE `co_righe_preventivi`.`idiva` = ' . prepare ( $id_record ) .
' UNION SELECT `co_righe_contratti`.`id` FROM `co_righe_contratti` WHERE `co_righe_contratti`.`idiva` = ' . prepare ( $id_record ) .
' UNION SELECT `dt_righe_ddt`.`id` FROM `dt_righe_ddt` WHERE `dt_righe_ddt`.`idiva` = ' . prepare ( $id_record ) .
' UNION SELECT `or_righe_ordini`.`id` FROM `or_righe_ordini` WHERE `or_righe_ordini`.`idiva` = ' . prepare ( $id_record ) .
' UNION SELECT `mg_articoli`.`id` FROM `mg_articoli` WHERE `mg_articoli`.`idiva_vendita` = ' . prepare ( $id_record ) .
' UNION SELECT `an_anagrafiche`.`idanagrafica` AS `id` FROM `an_anagrafiche` WHERE `an_anagrafiche`.`idiva_vendite` = ' . prepare ( $id_record ) . ' OR `an_anagrafiche`.`idiva_acquisti` = ' . prepare ( $id_record ));
$is_readonly = 0 ;
if ( $res ) {
2019-06-04 20:45:40 +02:00
$is_readonly = '1' ;
2019-06-03 10:35:00 +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 " >
<!-- DATI -->
< div class = " panel panel-primary " >
< div class = " panel-heading " >
2018-02-18 19:53:23 +01:00
< h3 class = " panel-title " >< ? php echo tr ( 'Dati' ); ?> </h3>
2017-08-04 16:28:16 +02:00
</ div >
< div class = " panel-body " >
< div class = " row " >
2022-02-21 10:30:19 +01:00
< div class = " col-md-4 " >
{[ " type " : " text " , " label " : " <?php echo tr('Codice'); ?> " , " name " : " codice " , " value " : " $codice $ " , " required " : 1 , " decimals " : 0 , " min-value " : " 0 " , " max-value " : " 999 " , " maxlength " : 3 , " extra " : " <?php echo $attr ; ?> " , " validation " : " codice " ]}
</ div >
< div class = " col-md-8 " >
2018-02-18 19:53:23 +01:00
{[ " type " : " text " , " label " : " <?php echo tr('Descrizione'); ?> " , " name " : " descrizione " , " required " : 1 , " value " : " $descrizione $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div >
< div class = " row " >
2018-09-21 18:08:47 +02:00
< div class = " col-md-4 " >
2020-08-11 08:10:06 +02:00
{[ " type " : " checkbox " , " label " : " <?php echo tr('Esente'); ?> " , " name " : " esente " , " id " : " esente-edit " , " value " : " $esente $ " , " readonly " : " <?php echo $is_readonly ; ?> " , " extra " : " <?php echo $attr ; ?> " ]}
2018-09-21 18:08:47 +02:00
</ div >
< div class = " col-md-4 " >
2019-09-02 09:57:58 +02:00
{[ " type " : " number " , " label " : " <?php echo tr('Percentuale'); ?> " , " name " : " percentuale " , " id " : " percentuale-edit " , " value " : " $percentuale $ " , " icon-after " : " <i class= \" fa fa-percent \" ></i> " , " disabled " : < ? php echo intval ( $record [ 'esente' ]); ?> , "readonly": "<?php echo $is_readonly; ?>", "extra": "<?php echo $attr; ?>", "max-value": "100" ]}
2018-09-21 18:08:47 +02:00
</ div >
2022-02-21 10:30:19 +01:00
< div class = " col-md-4 " >
{[ " type " : " select " , " label " : " <?php echo tr('Codice Natura (Fatturazione Elettronica)'); ?> " , " name " : " codice_natura_fe " , " value " : " $codice_natura_fe $ " , " required " : < ? php echo intval ( $record [ 'esente' ]); ?> , "disabled": <?php echo intval(!$record['esente']); ?>, "values": "query=SELECT codice as id, CONCAT(codice, ' - ', descrizione) AS descrizione FROM fe_natura", "readonly": "<?php echo $is_readonly; ?>", "extra": "<?php echo $attr; ?>" ]}
2018-09-21 18:08:47 +02:00
</ div >
</ div >
< div class = " row " >
2022-02-21 10:30:19 +01:00
< div class = " col-md-4 " >
{[ " type " : " number " , " label " : " <?php echo tr('Indetraibile'); ?> " , " name " : " indetraibile " , " value " : " $indetraibile $ " , " icon-after " : " <i class= \" fa fa-percent \" ></i> " , " readonly " : " <?php echo $is_readonly ; ?> " , " extra " : " <?php echo $attr ; ?> " , " max-value " : " 100 " ]}
2017-08-04 16:28:16 +02:00
</ div >
2018-11-09 10:49:21 +01:00
< div class = " col-md-4 " >
2020-08-11 08:10:06 +02:00
{[ " type " : " select " , " label " : " <?php echo tr('Esigibilità (Fatturazione Elettronica)'); ?> " , " name " : " esigibilita " , " value " : " $esigibilita $ " , " values " : < ? php echo json_encode ( $esigibilita ); ?> , "required": 1, "readonly": "<?php echo $is_readonly; ?>", "extra": "<?php echo $attr; ?>" ]}
2018-11-09 10:49:21 +01:00
</ div >
2017-08-04 16:28:16 +02:00
</ div >
< div class = " row " >
2018-02-20 16:46:23 +01:00
< div class = " col-md-12 " >
2018-02-18 19:53:23 +01:00
{[ " type " : " textarea " , " label " : " <?php echo tr('Dicitura fissa in fattura'); ?> " , " name " : " dicitura " , " value " : " $dicitura $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div >
</ div >
</ div >
</ form >
2018-09-21 18:08:47 +02:00
< script >
2020-07-31 14:25:50 +02:00
$ ( document ) . ready ( function () {
$ ( '#esente-edit' ) . change ( function () {
2018-09-21 18:08:47 +02:00
var checkbox = $ ( this ) . parent () . find ( '[type=hidden]' );
if ( checkbox . val () == 1 ) {
$ ( " #percentuale-edit " ) . prop ( " disabled " , true );
2018-11-14 00:39:51 +01:00
$ ( " #codice_natura_fe " ) . prop ( " required " , true );
2018-11-14 00:45:11 +01:00
$ ( " #codice_natura_fe " ) . prop ( " disabled " , false );
2018-09-21 18:08:47 +02:00
} else {
$ ( " #percentuale-edit " ) . prop ( " disabled " , false );
2018-11-14 00:39:51 +01:00
$ ( " #codice_natura_fe " ) . prop ( " required " , false );
$ ( " #codice_natura_fe " ) . val ( " " ) . change ();
2018-11-14 00:45:11 +01:00
$ ( " #codice_natura_fe " ) . prop ( " disabled " , true );
2018-09-21 18:08:47 +02:00
}
});
});
</ script >
2019-05-08 15:29:52 +02:00
< ? php
if ( $res ) {
echo '
2019-06-03 10:35:00 +02:00
< div class = " alert alert-warning " >
2022-01-12 16:14:15 +01:00
< p > '.tr(' Ci sono '.$res.' documenti collegati a questa aliquota IVA . Non è possibile eliminarla o modificarne alcuni campi . ').' </ p >
2019-05-08 15:29:52 +02:00
</ div > ' ;
} else {
echo '
< a class = " btn btn-danger ask " data - backto = " record-list " >
< i class = " fa fa-trash " ></ i > '.tr(' Elimina ').'
</ a > ' ;
2019-05-10 06:32:06 +02:00
}