2017-08-04 16:28:16 +02:00
< ? php
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' ),
],
];
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 " >
2018-02-20 16:46:23 +01:00
< div class = " col-md-12 " >
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 " >
{[ " type " : " checkbox " , " label " : " <?php echo tr('Esente'); ?> " , " name " : " esente " , " id " : " esente-edit " , " value " : " $esente $ " ]}
</ div >
< div class = " col-md-4 " >
{[ " 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' ]); ?> ]}
</ div >
< div class = " col-md-4 " >
{[ " type " : " number " , " label " : " <?php echo tr('Indetraibile'); ?> " , " name " : " indetraibile " , " value " : " $indetraibile $ " , " icon-after " : " <i class= \" fa fa-percent \" ></i> " ]}
</ div >
</ div >
< div class = " row " >
2018-11-09 10:49:21 +01:00
< div class = " col-md-4 " >
2018-09-21 18:08:47 +02:00
{[ " type " : " text " , " label " : " <?php echo tr('Codice'); ?> " , " name " : " codice " , " value " : " $codice $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
2018-11-09 10:49:21 +01:00
< div class = " col-md-4 " >
2018-09-21 18:08:47 +02:00
{[ " type " : " select " , " label " : " <?php echo tr('Codice Natura (Fatturazione Elettronica)'); ?> " , " name " : " codice_natura_fe " , " value " : " $codice_natura_fe $ " , " values " : " query=SELECT codice as id, CONCAT(codice, ' - ', descrizione) AS descrizione FROM fe_natura " ]}
2017-08-04 16:28:16 +02:00
</ div >
2018-11-09 10:49:21 +01:00
< div class = " col-md-4 " >
2018-11-09 12:45:22 +01:00
{[ " type " : " select " , " label " : " <?php echo tr('Esigibilità (Fatturazione Elettronica)'); ?> " , " name " : " esigibilita " , " value " : " $esigibilita $ " , " values " : < ? php echo json_encode ( $esigibilita ); ?> , "required": 1 ]}
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 >
< a class = " btn btn-danger ask " data - backto = " record-list " >
2017-09-04 12:02:29 +02:00
< i class = " fa fa-trash " ></ i > < ? php echo tr ( 'Elimina' ); ?>
2017-08-04 16:28:16 +02:00
</ a >
2018-09-21 18:08:47 +02:00
< script >
$ ( document ) . ready ( function (){
$ ( '#esente-edit' ) . change ( function (){
var checkbox = $ ( this ) . parent () . find ( '[type=hidden]' );
if ( checkbox . val () == 1 ) {
$ ( " #percentuale-edit " ) . prop ( " disabled " , true );
} else {
$ ( " #percentuale-edit " ) . prop ( " disabled " , false );
}
});
});
</ script >