2017-08-04 16:28:16 +02:00
< ? php
include_once __DIR__ . '/../../core.php' ;
?> <form action="" method="post" id="edit-form">
< input type = " hidden " name = " op " value = " editriga " >
< input type = " hidden " name = " backto " value = " record-edit " >
< input type = " hidden " name = " id_record " value = " <?php echo $id_record ?> " >
< input type = " hidden " name = " idmastrino " value = " <?php echo $records[0] ['idmastrino'] ?> " >
< input type = " hidden " name = " iddocumento " value = " <?php echo $records[0] ['iddocumento'] ?> " >
< ? php
if ( ! empty ( $records [ 0 ][ 'iddocumento' ])) {
$rs = $dbo -> fetchArray ( 'SELECT dir FROM co_tipidocumento INNER JOIN co_documenti ON co_tipidocumento.id=co_documenti.idtipodocumento WHERE co_documenti.id=' . prepare ( $records [ 0 ][ 'iddocumento' ]));
$modulo = ( $rs [ 0 ][ 'dir' ] == 'entrata' ) ? 'Fatture di vendita' : 'Fatture di acquisto' ; ?>
< div class = " pull-left " >
2017-09-04 12:02:29 +02:00
< a href = " <?php echo $rootdir ?>/editor.php?id_module=<?php echo Modules::getModule( $modulo )['id'] ?>&id_record=<?php echo $records[0] ['iddocumento'] ?> " class = " btn btn-info " >< i class = " fa fa-chevron-left " ></ i > < ? php echo tr ( 'Torna alla fattura' ) ?> </a>
2017-08-04 16:28:16 +02:00
</ div >
< ? php
}
?>
< div class = " pull-right " >
2017-09-04 12:02:29 +02:00
< button type = " submit " id = " btn-save " class = " btn btn-success " >< i class = " fa fa-check " ></ i > < ? php echo tr ( 'Salva modifiche' ); ?> </button>
2017-08-04 16:28:16 +02:00
</ div >
< div class = " clearfix " ></ div >
< br >
< div class = " row " >
2017-09-12 12:49:05 +02:00
< div class = " col-md-4 " >
2017-09-04 12:02:29 +02:00
{[ " type " : " date " , " label " : " <?php echo tr('Data movimento'); ?> " , " name " : " data " , " required " : 1 , " value " : " $data $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
2017-09-12 12:49:05 +02:00
< div class = " col-md-8 " >
2017-09-04 12:02:29 +02:00
{[ " type " : " text " , " label " : " <?php echo tr('Causale'); ?> " , " name " : " descrizione " , " required " : 1 , " value " : " $descrizione $ " ]}
2017-08-04 16:28:16 +02:00
</ div >
</ div >
< ? php
$conti3 = []; // contenitore conti di terzo livello
$totale_dare = 0.00 ;
$totale_avere = 0.00 ;
$idmastrino = $records [ 0 ][ 'idmastrino' ];
// Salvo l'elenco conti in un array (per non fare il ciclo ad ogni riga)
$query2 = 'SELECT * FROM co_pianodeiconti2' ;
$conti2 = $dbo -> fetchArray ( $query2 );
for ( $x = 0 ; $x < sizeof ( $conti2 ); ++ $x ) {
$query3 = 'SELECT * FROM co_pianodeiconti3 WHERE idpianodeiconti2=' . prepare ( $conti2 [ $x ][ 'id' ]);
$rs3 = $dbo -> fetchArray ( $query3 );
for ( $y = 0 ; $y < sizeof ( $rs3 ); ++ $y ) {
// Creo un array con le descrizioni dei conti di livello 3 che ha come indice l'id del livello2 e del livello3
$conti3 [ $rs3 [ $y ][ 'idpianodeiconti2' ]][ $y ][ 'id' ] = $rs3 [ $y ][ 'id' ];
$conti3 [ $rs3 [ $y ][ 'idpianodeiconti2' ]][ $y ][ 'descrizione' ] = $conti2 [ $x ][ 'numero' ] . '.' . $rs3 [ $y ][ 'numero' ] . ' ' . $rs3 [ $y ][ 'descrizione' ];
}
}
/*
Form di modifica riga movimento
*/
// Lettura movimenti del mastrino selezionato
$query = 'SELECT * FROM co_movimenti WHERE idmastrino=' . prepare ( $records [ 0 ][ 'idmastrino' ]) . ' AND iddocumento=' . prepare ( $records [ 0 ][ 'iddocumento' ]) . ' AND primanota=' . prepare ( $records [ 0 ][ 'primanota' ]);
$rs = $dbo -> fetchArray ( $query );
$n = sizeof ( $rs );
$iddocumento = $rs [ 0 ][ 'iddocumento' ];
echo '
< table class = " table table-striped table-condensed table-hover table-bordered "
< tr >
2017-09-04 12:02:29 +02:00
< th > '.tr(' Conto ').' </ th >
< th width = " 20% " > '.tr(' Dare ').' </ th >
< th width = " 20% " > '.tr(' Avere ').' </ th >
2017-08-04 16:28:16 +02:00
</ tr > ' ;
for ( $i = 0 ; $i < 10 ; ++ $i ) {
// Conto
echo '
< tr >
< td >
{[ " type " : " select " , " name " : " idconto['. $i .'] " , " value " : " '. $rs[$i] ['idconto'].' " , " ajax-source " : " conti " ]}
</ td > ' ;
// Importo dare e avere
if ( $rs [ $i ][ 'totale' ] > 0 ) {
$value_dare = $rs [ $i ][ 'totale' ];
$value_avere = '' ;
} elseif ( $rs [ $i ][ 'totale' ] < 0 ) {
$value_dare = '' ;
$value_avere = - $rs [ $i ][ 'totale' ];
} else {
$value_dare = '' ;
$value_avere = '' ;
}
// Dare
echo '
< td >
{[ " type " : " number " , " name " : " dare['. $i .'] " , " value " : " '. $value_dare .' " , " disabled " : 1 ]}
</ td > ' ;
// Avere
echo '
< td >
{[ " type " : " number " , " name " : " avere['. $i .'] " , " value " : " '. $value_avere .' " , " disabled " : 1 ]}
</ td >
</ tr > ' ;
}
// Totale per controllare sbilancio
echo '
< tr >
< td align = " right " >< b > Totale :</ b ></ td > ' ;
if ( $totale_dare != $totale_avere ) {
$class = 'text-danger' ;
$txt = 'sbilancio di ' . Translator :: numberToLocale ( $totale_dare - $totale_avere ) . ' €' ;
} else {
$class = '' ;
$txt = '' ;
}
// Totale dare
echo '
< td align = " right " >
< span >< span class = " '. $class .' " id = " totale_dare " > '.Translator::numberToLocale($totale_dare).' </ span > & euro ; </ span >
</ td > ' ;
// Totale avere
echo '
< td align = " right " >
< span >< span class = " '. $class .' " id = " totale_avere " > '.Translator::numberToLocale($totale_avere).' </ span > & euro ; </ span >
</ td >
</ tr > ' ;
// Verifica sbilancio
echo '
< tr >
< td align = " right " ></ td >
< td colspan = " 2 " align = " center " >
< span id = " testo_aggiuntivo " > '.$txt.' </ span >
</ td >
</ tr >
</ table > ' ;
?>
< script type = " text/javascript " >
$ ( document ) . ready ( function (){
$ ( 'input[id*=dare], input[id*=avere]' ) . each ( function (){
if ( $ ( this ) . val () != " <?php echo Translator::numberToLocale(0) ?> " ) $ ( this ) . prop ( " disabled " , false );
});
$ ( 'select' ) . on ( 'change' , function (){
if ( $ ( this ) . parent () . parent () . find ( 'input[disabled]' ) . length != 1 ){
if ( $ ( this ) . val ()) {
$ ( this ) . parent () . parent () . find ( 'input' ) . prop ( " disabled " , false );
}
else {
$ ( this ) . parent () . parent () . find ( 'input' ) . prop ( " disabled " , true );
$ ( this ) . parent () . parent () . find ( 'input' ) . val ( " " );
}
}
});
$ ( 'input[id*=dare]' ) . on ( 'keyup change' , function (){
if ( ! $ ( this ) . prop ( 'disabled' )){
if ( $ ( this ) . val ()) {
$ ( this ) . parent () . parent () . find ( 'input[id*=avere]' ) . prop ( " disabled " , true );
}
else {
$ ( this ) . parent () . parent () . find ( 'input[id*=avere]' ) . prop ( " disabled " , false );
}
calcolaBilancio ();
}
});
$ ( 'input[id*=avere]' ) . on ( 'keyup change' , function (){
if ( ! $ ( this ) . prop ( 'disabled' )){
if ( $ ( this ) . val ()) {
$ ( this ) . parent () . parent () . find ( 'input[id*=dare]' ) . prop ( " disabled " , true );
}
else {
$ ( this ) . parent () . parent () . find ( 'input[id*=dare]' ) . prop ( " disabled " , false );
}
calcolaBilancio ();
}
});
// Ad ogni modifica dell'importo verifica che siano stati selezionati: il conto, la causale, la data. Inoltre aggiorna lo sbilancio
function calcolaBilancio (){
bilancio = 0.00 ;
totale_dare = 0.00 ;
totale_avere = 0.00 ;
// Calcolo il totale dare e totale avere
$ ( 'input[id*=dare]' ) . each ( function (){
if ( $ ( this ) . val () == '' ) valore = 0 ;
2017-08-11 12:11:57 +02:00
else valore = $ ( this ) . val () . toEnglish ();
2017-08-04 16:28:16 +02:00
totale_dare += valore ;
});
$ ( 'input[id*=avere]' ) . each ( function (){
if ( $ ( this ) . val () == '' ) valore = 0 ;
2017-08-11 12:11:57 +02:00
else valore = $ ( this ) . val () . toEnglish ();
2017-08-04 16:28:16 +02:00
totale_avere += valore ;
});
2017-08-11 12:11:57 +02:00
$ ( '#totale_dare' ) . text ( totale_dare . toFixedLocale ());
$ ( '#totale_avere' ) . text ( totale_avere . toFixedLocale ());
2017-08-04 16:28:16 +02:00
bilancio = totale_dare - totale_avere ;
if ( bilancio == 0 ){
$ ( " #testo_aggiuntivo " ) . removeClass ( 'text-danger' ) . html ( " " );
$ ( " button[type=submit] " ) . removeClass ( 'hide' );
}
else {
2017-08-11 12:11:57 +02:00
$ ( " #testo_aggiuntivo " ) . addClass ( 'text-danger' ) . html ( " sbilancio di " + bilancio . toFixedLocale () + " € " );
2017-08-04 16:28:16 +02:00
$ ( " button[type=submit] " ) . addClass ( 'hide' );
}
}
// Trigger dell'evento keyup() per la prima volta, per eseguire i dovuti controlli nel caso siano predisposte delle righe in prima nota
$ ( " input[id*=dare][value!=''], input[id*=avere][value!=''] " ) . keyup ();
$ ( " select[id*=idconto] " ) . click ( function (){
$ ( " input[id*=dare][value!=''], input[id*=avere][value!=''] " ) . keyup ();
});
});
</ script >
</ form >
< a class = " btn btn-danger ask " data - backto = " record-list " data - idmastrino = " <?php echo $records[0] ['idmastrino'] ?> " >
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 >