angular.module('controladores',[]) .controller('InicioController', ['$scope', 'Utilidades', '$interval', function($scope, Utilidades, $interval){ $scope.inscrito = {}; $scope.fechas = []; $scope.estadosCivilesList = []; $scope.tiposDocumentoList = []; $scope.terminos = []; $scope.separarCita = function(dia){ $scope.inscrito.dia = dia; $('#modalAgendarCita').modal('show'); }; $scope.mostrarLogin = function(){ stop = $interval(function() { $('#modalLogin').modal('show'); $interval.cancel(stop); }, 500); }; $scope.mostrarRegistro = function(){ stop = $interval(function() { $('#modalRegistro').modal('show'); $interval.cancel(stop); }, 500); }; $scope.mostraRecuperarPass = function(){ stop = $interval(function() { $('#modalPass').modal('show'); $interval.cancel(stop); }, 500); }; $scope.registrar = function(){ Utilidades.ejecutarPut('api/pacientes', $scope.inscrito, function(response){ $scope.inscrito = {}; stop = $interval(function() { $('#modalRegistrado').modal('show'); $interval.cancel(stop); }, 500); }, null); }; $scope.recuperarPass = function(){ Utilidades.ejecutarPut('api/rec_pass', $scope.recuperacion, function(response){ $scope.recuperacion = {}; $scope.rec_resp = response.data.contenido; console.log(response); stop = $interval(function() { $('#modalRecuperado').modal('show'); $interval.cancel(stop); }, 500); }, null); }; $scope.enviarEmail = function(){ var data = { nombres: $('#firstName').val(), apellidos: $('#lastName').val(), email: $('#email').val(), celular: $('#celular').val() }; if (data.nombres && data.apellidos && data.email && data.celular){ $('#firstName').val(''), $('#lastName').val(''), $('#email').val(''), $('#celular').val('') $('#modalContacto').modal('hide'); var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { $('#modalContactoEnviado').modal('show'); } }; xhttp.open("POST", "https://urologoferro.com/api/enviar_email", true); xhttp.setRequestHeader("Content-type", "application/json"); xhttp.send(JSON.stringify(data)); } }; function cargar(){ Utilidades.ejecutarGet('api/catalogos/19', function(response){ $scope.estadosCivilesList = response; }, null); Utilidades.ejecutarGet('api/catalogos/9', function(response){ $scope.tiposDocumentoList = response; }, null); $scope.terminos = [{id: 1, value: 'Acepto los términos y condiciones'}]; } cargar(); }]) .controller('PagoController', ['$scope', 'Utilidades', function($scope, Utilidades){ function cargar(){ /*Utilidades.ejecutarGet('api/eventosVigentes', function(response){ $scope.eventos = response; for (var i = 0; i < $scope.eventos.length; i++){ $scope.eventos[i].fecha = new Date($scope.eventos[i].fecha); } }, null);*/ }; cargar(); }]) .controller('DisponibilidadController', ['$scope', 'Utilidades', function($scope, Utilidades){ function cargar(){ /*Utilidades.ejecutarGet('api/ministerios', function(response){ $scope.ministerios = response; if ($scope.ministerios && $scope.ministerios.length) $scope.ministerio = $scope.ministerios[0]; $scope.seleccionado = $scope.ministerio.id; }, null);*/ } cargar(); }]) .controller('TransaccionController', ['$scope', 'Utilidades', '$location', function($scope, Utilidades,$location){ $scope.transaccion = {}; function cargar(){ var id_transaccion = $location.search().idtr; console.log(id_transaccion); Utilidades.ejecutarGet('api/transacciones/' + id_transaccion, function(response){ $scope.transaccion = response; $scope.transaccion.estado = $scope.transaccion.transactionState == 4 ? 'Transacción aprobada' : ($scope.transaccion.transactionState == 6 ? 'Transacción rechazada' : ($scope.transaccion.transactionState == 7 ? 'Transacción pendiente' : ($scope.transaccion.transactionState == 104 ? 'Error' : $scope.transaccion.mensaje))); }, null); }; cargar(); }]) .controller('TransaccionRechazadaController', ['$scope', 'Utilidades', function($scope, Utilidades){ }]) .controller('TerminosController', ['$scope', 'Utilidades', function($scope, Utilidades){ }]) .controller('MenuController', ['$scope', '$location', 'Utilidades', function($scope, $location, Utilidades){ $scope.tab = 0; $scope.pags = {}; $scope.pags['/inicio'] = 1; $scope.pags['/pago'] = 2; $scope.pags['/disponibilidad'] = 3; $scope.hayEventos = false; $scope.$on('$locationChangeStart', function(next, current) { var actualUrl = $location.path(); if (actualUrl == 'cuenta'){ window.location = Utilidades.getUrl() + '/cuenta'; } else if (actualUrl == undefined || actualUrl == null || actualUrl == '/' || actualUrl == ''){ $scope.setTab($scope.pags['/inicio']); } else if ($scope.pags[actualUrl] != undefined || $scope.pags[actualUrl] != null || $scope.pags[actualUrl] != '') { $scope.setTab($scope.pags[actualUrl]); } }); $scope.setTab = function(pTab){ $scope.tab = pTab; }; $scope.isSelected = function(pTab){ return $scope.tab === pTab; }; function validarRutaInicial(){ if (!$location.path() || $location.path() == '/'){ window.location = Utilidades.getUrl() + '/inicio'; $scope.setTab($scope.pags['/inicio']); } } validarRutaInicial(); }]) .controller('ErrorController', ['$scope', 'Utilidades', function($scope, Utilidades){}])