Fix calcolo totali per Scadenzario da modifiche JS
This commit is contained in:
parent
40cbb53063
commit
791f3669e9
|
@ -179,7 +179,7 @@ echo '
|
|||
]); ?>.
|
||||
</div>
|
||||
|
||||
<input type="hidden" id="totale_da_pagare" value="<?php echo numberFormat($totale_da_pagare, 2); ?>">
|
||||
<input type="hidden" id="totale_da_pagare" value="<?php echo round($totale_da_pagare, 2); ?>">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -253,8 +253,8 @@ if (!empty($documento)) {
|
|||
});
|
||||
|
||||
function controlloTotale() {
|
||||
totale_da_pagare = input("totale_da_pagare").get();
|
||||
totale_utente = 0;
|
||||
let totale_da_pagare = parseFloat($("#totale_da_pagare").val());
|
||||
let totale_utente = 0;
|
||||
|
||||
$("input[name*=da_pagare]").each(function() {
|
||||
totale_utente += input(this).get();
|
||||
|
@ -267,7 +267,7 @@ if (!empty($documento)) {
|
|||
totale_utente = Math.round(totale_utente * 100) / 100;
|
||||
totale_da_pagare = Math.round(totale_da_pagare * 100) / 100;
|
||||
|
||||
diff = Math.abs(totale_da_pagare) - Math.abs(totale_utente);
|
||||
let diff = Math.abs(totale_da_pagare) - Math.abs(totale_utente);
|
||||
|
||||
if (diff == 0) {
|
||||
$("#save").removeClass("hide");
|
||||
|
|
Loading…
Reference in New Issue