Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <script>
  2. $('.selectproductos').change(function () {
  3. var ppro_id = $(this).attr('data-pproid');
  4. var estado = this.value;
  5. if (jQuery.inArray(estado, ['Solicitar Antecedentes', 'Rechazada Operaciones 1', 'Rechazada Operaciones 2', 'Rechazada Supervisor']) !== -1) {
  6. $("#modal").modal('show');
  7. $("#estadoPro").val(estado);
  8. }
  9. if (jQuery.inArray(estado, ['Rechazada Suscripciones']) !== -1) {
  10. $('#modalrechazo').modal('show');
  11. $("#estadoPror").val(estado);
  12. }
  13. if (jQuery.inArray(estado, ['Aprobada Operaciones 1']) !== -1) {
  14. $('#modalFolio').modal('show');
  15. $("#estadofinal").val(estado);
  16. }
  17. $("#p_antecedentes").val(ppro_id);
  18. $("#p").val(ppro_id);
  19. });
  20. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement