Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. @push ('scripts')
  2. <script>
  3.  
  4. var cont=0;
  5. total=0;
  6. $("#guardar").hide();
  7.  
  8. if (cantidad!="" && cantidad>0)
  9. {
  10. if (parseInt(stock)>=parseInt(cantidad))
  11. {
  12.  
  13. total=cantidad;
  14.  
  15.  
  16. function totales()
  17. {
  18. $("#ptotal").html("Comp/Amp: " + total);
  19. $("#total").val(total);
  20. }
  21.  
  22.  
  23. function eliminar(index){
  24. total=total[index];
  25. $("#fila" + index).remove();
  26. evaluar();
  27.  
  28. }
  29. </script>
  30. @endpush
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement