Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/06/2010, 18:40
alx_salazar
 
Fecha de Ingreso: septiembre-2008
Mensajes: 192
Antigüedad: 16 años, 4 meses
Puntos: 1
Pregunta Respuesta: Ayuda por favor!!!!no se como hacer nuevo

tengo este código funciona pero solo la primera condicion y no consigo hacer q funcione como deseo toda la funcion
Código PHP:
Ver original
  1. <script>    //suma para calcular el saldo
  2.  
  3.   function calculo(F)
  4.    {
  5.         var valorauto=parseInt(txt_precio_venta.value);
  6.             if(F.txt_precio_venta.value==""){
  7.                 valorauto=1;
  8.             }  
  9.        
  10.         var partepago=parseInt(F.txt_vehiculo_parte_pago.value);
  11.         if(F.txt_vehiculo_parte_pago==""){
  12.             partepago=0;
  13.         }      
  14.        
  15.         var cuotainicial=parseInt(F.txt_cuota_inicial.value);
  16.             if(F.txt_cuota_inicial.value==""){
  17.             cuotainicial=0;
  18.         }  
  19.                                
  20.      
  21. /// CALCULO CUOTA INICIAL
  22.         var total=0;
  23.             //cuotainicial=0;          
  24.             //partepago=0;
  25.    
  26.             if (valorauto>=cuotainicial)
  27.              {
  28.                     total= valorauto - cuotainicial;
  29.                     F.txt_saldo.value=total;
  30.                     alert("ok calculo1")
  31.              }
  32.                         else{
  33.                 alert("LA CUOTA INICIAL ES MAYOR Q VALOR AUTO INGRESE CORRECTAMENTE EL DATO")
  34.                     F.txt_cuota_inicial.value="";
  35.                     F.txt_parte_pago.value="";                 
  36.                     }      
  37.    
  38. ///CALCULO PARTE DE PAGO
  39.             partepago=0;
  40.             total1=0;
  41.            
  42.             if (valorauto>=partepago)
  43.              {
  44.                 total1= valorauto - partepago;                 
  45.                 F.txt_saldo.value=total1;
  46.                
  47.              }
  48.                 else
  49.                 {
  50.                     alert("ok calculo falta")
  51.                 alert("LA PARTE DE PAGO ES MAYOR Q VALOR AUTO INGRESE CORRECTAMENTE EL DATO")
  52.                     F.txt_cuota_inicial.value="";
  53.                     F.txt_parte_pago.value="";                 
  54.                 }      
  55.    
  56.    
  57.     ////calculoparte
  58.    
  59.     if ((valorauto>0)&&(valorauto>0)){
  60.             if((valorauto>=cuotainicial)&&(valorauto>=partepago)){
  61.             totalparcial=cuotainicial+partepago;
  62.             total=valor-total
  63.             }
  64.         }
  65.             else {
  66.                 alert ("los los dartos son mayor q el saldo")
  67.                 }
  68.    }
  69.    
  70.   </script>