Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/02/2016, 10:44
kraneok
 
Fecha de Ingreso: noviembre-2010
Ubicación: Córdoba
Mensajes: 119
Antigüedad: 13 años, 5 meses
Puntos: 8
Respuesta: Necesito un script para calcular cuotas porfavor

Toma, te pongo una forma de función con lo que necesitas.
El resto hazlo tu y aprende.


Código Javascript:
Ver original
  1. function calcule (totalAmount, totalPayed) {
  2.      
  3.       var total = 0;
  4.       if (totalPayed && totalPayed > 0) {
  5.           total = totalAmount - totalPayed;
  6.       }
  7.  
  8.        var feeType = 24; // Aquí pones el que quieras
  9.        var totalMonth = total / 24;
  10.        var totalMonthWithTax = totalMonth + (totalMonth * 0.05);
  11. }

Saludos.