Toma, te pongo una forma de función con lo que necesitas.
El resto hazlo tu y aprende.
Código Javascript
:
Ver originalfunction calcule (totalAmount, totalPayed) {
var total = 0;
if (totalPayed && totalPayed > 0) {
total = totalAmount - totalPayed;
}
var feeType = 24; // Aquí pones el que quieras
var totalMonth = total / 24;
var totalMonthWithTax = totalMonth + (totalMonth * 0.05);
}
Saludos.