12345678910111213141516171819202122232425262728293031323334 |
-
- var table = angular.module('table',['ngSanitize']);
-
- table.controller('tableController', function tableController($http, $scope, id){
-
- var url = '/admin/formaDatos/crear/transcripcion/'+ id +'/'
- console.log(',datos,admin,transcripcion');
-
- $http.get(url).then(function(response) {
- if(response.data.error!==true)
- {
-
- $scope.headers = response.data.headers;
-
-
- $scope.estudiante = response.data.estudiante;
-
-
-
- $scope.semestres = response.data.semestres;
-
- console.log(response.data);
-
- }
- else
- {
- $window.location.href = '/'+user_type+'/error/'+response.data.tipo;
- console.log(response.data);
- }
- });
- });
|