Fix in fase di modifica prima nota veniva restituito NaN come valore dello sbilacio
This commit is contained in:
parent
4899895c53
commit
c8a6f2d4d2
|
@ -198,19 +198,19 @@ include_once __DIR__.'/../../core.php';
|
||||||
$('input[id*=dare]').each( function(){
|
$('input[id*=dare]').each( function(){
|
||||||
if( $(this).val() == '' ) valore = 0;
|
if( $(this).val() == '' ) valore = 0;
|
||||||
else valore = $(this).val().toEnglish();
|
else valore = $(this).val().toEnglish();
|
||||||
totale_dare += valore;
|
totale_dare += Math.round(valore*100)/100;
|
||||||
});
|
});
|
||||||
|
|
||||||
$('input[id*=avere]').each( function(){
|
$('input[id*=avere]').each( function(){
|
||||||
if( $(this).val() == '' ) valore = 0;
|
if( $(this).val() == '' ) valore = 0;
|
||||||
else valore = $(this).val().toEnglish();
|
else valore = $(this).val().toEnglish();
|
||||||
totale_avere += valore;
|
totale_avere += Math.round(valore*100)/100;
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#totale_dare').text(totale_dare.toLocale());
|
$('#totale_dare').text(totale_dare.toLocale());
|
||||||
$('#totale_avere').text(totale_avere.toLocale());
|
$('#totale_avere').text(totale_avere.toLocale());
|
||||||
|
|
||||||
bilancio = totale_dare-totale_avere;
|
bilancio = Math.round(totale_dare*100)/100 - Math.round(totale_avere*100)/100;
|
||||||
|
|
||||||
if( bilancio == 0 ){
|
if( bilancio == 0 ){
|
||||||
$("#testo_aggiuntivo").removeClass('text-danger').html("");
|
$("#testo_aggiuntivo").removeClass('text-danger').html("");
|
||||||
|
|
Loading…
Reference in New Issue