Cambia questo. L'occorrente di codice
codice:
document.autoSumForm.totale_generale.value =
(document.autoSumForm.tot_art001.value * 1) +
(document.autoSumForm.tot_art002.value * 1) +
(document.autoSumForm.tot_art003.value * 1) +
(document.autoSumForm.tot_art004.value * 1) +
(document.autoSumForm.tot_art005.value * 1) +
(document.autoSumForm.tot_art006.value * 1) +
(document.autoSumForm.tot_art007.value * 1) +
(document.autoSumForm.tot_art008.value * 1) +
(document.autoSumForm.tot_art009.value * 1) +
(document.autoSumForm.tot_art010.value * 1)
con questo
codice:
document.autoSumForm.totale_generale.value =
(document.autoSumForm.tot_art001.value * 1) +
(document.autoSumForm.tot_art002.value * 1) +
(document.autoSumForm.tot_art003.value * 1) +
(document.autoSumForm.tot_art004.value * 1) +
(document.autoSumForm.tot_art005.value * 1) +
(document.autoSumForm.tot_art006.value * 1) +
(document.autoSumForm.tot_art007.value * 1) +
(document.autoSumForm.tot_art008.value * 1) +
(document.autoSumForm.tot_art009.value * 1) +
(document.autoSumForm.tot_art010.value * 1).toFixed(2)