Fix minore

This commit is contained in:
valentina 2024-07-31 11:18:46 +02:00
parent f56ece9e22
commit a2380f1137
1 changed files with 2 additions and 2 deletions

View File

@ -375,11 +375,11 @@ $(document).on("change", "[id*=dare], [id*=avere]", function() {
var totalAvere = 0;
$("[id*=dare]").each(function() {
totalDare += parseFloat($(this).val()) || 0;
totalDare += parseFloat($(this).val().toEnglish()) || 0;
});
$("[id*=avere]").each(function() {
totalAvere += parseFloat($(this).val()) || 0;
totalAvere += parseFloat($(this).val().toEnglish()) || 0;
});
$("#totale_dare").text(totalDare.toLocale());