309 lines
11 KiB
JavaScript
309 lines
11 KiB
JavaScript
(function(){
|
|
'use strict';
|
|
|
|
angular
|
|
.module('app.section')
|
|
.controller('listarMatriculaCtrl', listarMatriculaCtrl)
|
|
.controller('crearMatriculaCtrl', crearMatriculaCtrl)
|
|
.controller('actualizarMatriculaCtrl', actualizarMatriculaCtrl)
|
|
|
|
listarMatriculaCtrl.$inject = [ '$scope', '$rootScope', '$location', 'sections', '$modal', 'matriculaSeleccionada'];
|
|
function listarMatriculaCtrl ( $scope, $rootScope, $location, sections, $modal, matriculaSeleccionada ){
|
|
|
|
var vm = this;
|
|
var matriculaArray = [];
|
|
|
|
sections.query(
|
|
function (successResult){
|
|
vm.section = successResult;
|
|
},
|
|
function (){
|
|
console.log("Error al obtener los datos.");
|
|
|
|
});
|
|
|
|
/**************************Eliminar Matricula**************************/
|
|
/* En este proceso, primero se llama a un Modal el cual se cerciora que
|
|
el usuario se asegure de eliminar la matricula escogida, el usuario al
|
|
confirmar su decision llama automaticamente a la funcion que hara la
|
|
llamada a servicio que borrara la matricula de la base de datos.
|
|
*/
|
|
|
|
vm.eliminarMatriculaModal = function (index) {
|
|
$rootScope.index = index;
|
|
$rootScope.botonOk = true;
|
|
$rootScope.otroBotonOk = false;
|
|
$rootScope.botonCancelar = true;
|
|
$rootScope.rsplice = false;
|
|
$rootScope.mensaje = "¿Seguro que desea eliminar la sección?";
|
|
|
|
$scope.modalInstance = $modal.open({
|
|
animation: $rootScope.animationsEnabled,
|
|
templateUrl: '/partials/section/modal/delete_section_modal.html',
|
|
scope: $scope,
|
|
size: 'sm',
|
|
resolve: {
|
|
items: function () {
|
|
return "";
|
|
}
|
|
}
|
|
});
|
|
};
|
|
|
|
vm.eliminarMatricula = function (index) {
|
|
$rootScope.botonOk = false;
|
|
$rootScope.otroBotonOk = true;
|
|
$rootScope.botonCancelar = false;
|
|
$rootScope.urlLo = 'listarMatricula';
|
|
var name = vm.section[index].name;
|
|
|
|
sections.delete({ id: vm.section[index]._id },
|
|
function () {
|
|
$rootScope.rsplice = true;
|
|
$rootScope.mensaje = "Sección " + name + " eliminada";
|
|
},
|
|
function () {
|
|
$rootScope.mensaje = "Error eliminando la sección " + name;
|
|
});
|
|
};
|
|
|
|
vm.eliminarMatriculaSplice = function (index, rsplice) {
|
|
if(rsplice){
|
|
vm.section.splice(index, 1);
|
|
$rootScope.rsplice = false;
|
|
}
|
|
};
|
|
|
|
/*************************Fin de Eliminar Matricula********************/
|
|
|
|
|
|
vm.modificarMatricula = function (index) {
|
|
matriculaSeleccionada._id = vm.section[index]._id;
|
|
matriculaSeleccionada.name = vm.section[index].name;
|
|
matriculaSeleccionada.code = vm.section[index].code;
|
|
matriculaSeleccionada.course = vm.section[index].course;
|
|
matriculaSeleccionada.semester = vm.section[index].semester;
|
|
matriculaSeleccionada.students = vm.section[index].students;
|
|
$location.url('actualizarMatricula');
|
|
};
|
|
|
|
$rootScope.open = function($event) {
|
|
$event.preventDefault();
|
|
$event.stopPropagation();
|
|
|
|
$rootScope.opened = true;
|
|
};
|
|
|
|
$scope.ok = function (urlLo) {
|
|
$location.url(urlLo);
|
|
$scope.modalInstance.dismiss('cancel');
|
|
};
|
|
|
|
$scope.cancel = function () {
|
|
$scope.modalInstance.dismiss('cancel');
|
|
};
|
|
|
|
return vm;
|
|
};
|
|
|
|
crearMatriculaCtrl.$inject =
|
|
['$scope','$rootScope', '$location', 'sections', '$modal', 'courses'];
|
|
function crearMatriculaCtrl($scope, $rootScope, $location, sections, $modal, courses){
|
|
|
|
var vm = this;
|
|
vm.submitted = false;
|
|
vm.semester, vm.section, vm.materias;
|
|
$rootScope.mensaje = "";
|
|
vm.students = [];
|
|
|
|
courses.query(
|
|
function (successResult) {
|
|
vm.materias = successResult;
|
|
},
|
|
function () {
|
|
vm.materias = null;
|
|
});
|
|
|
|
vm.submit = function () {
|
|
|
|
if (vm.data_input_form.$valid){
|
|
vm.package = {
|
|
"name": vm.name,
|
|
"code": vm.valorMateria.code,
|
|
"course": vm.valorMateria.name,
|
|
"semester": vm.semester,
|
|
"students": vm.students
|
|
};
|
|
|
|
$scope.modalInstance = $modal.open({
|
|
animation: $rootScope.animationsEnabled,
|
|
templateUrl: 'partials/section/modal/create_section_modal.html',
|
|
scope: $scope,
|
|
size: 'sm',
|
|
resolve: {
|
|
items: function () {
|
|
return $rootScope.items;
|
|
}
|
|
}
|
|
});
|
|
|
|
sections.save(vm.package,
|
|
function(){
|
|
$rootScope.botonOk = true;
|
|
$rootScope.urlLo = 'listarMatricula';
|
|
$rootScope.mensaje = "Sección " + vm.name + " creada";
|
|
},
|
|
function(){
|
|
$rootScope.botonOk = true;
|
|
$rootScope.urlLo = 'listarMatricula';
|
|
$rootScope.mensaje = "Error creando la seccion " + vm.name;
|
|
});
|
|
}else{
|
|
vm.submitted = true;
|
|
}
|
|
};
|
|
|
|
var xlf = document.getElementById('xlf');
|
|
function handleFile(e) {
|
|
var files = e.target.files;
|
|
var i,f,z;
|
|
var student = {};
|
|
for (i = 0, f = files[i]; i != files.length; ++i) {
|
|
var reader = new FileReader();
|
|
var name = f.name;
|
|
reader.onload = function(e) {
|
|
var data = e.target.result;
|
|
var workbook = XLSX.read(data, {type: 'binary'});
|
|
var sheet = workbook.SheetNames[0];
|
|
var worksheet = workbook.Sheets[sheet];
|
|
|
|
/* Find desired cell containing semester and section */
|
|
vm.semester = worksheet['B5'].v;
|
|
vm.name = worksheet['B9'].v;
|
|
$scope.$apply();
|
|
|
|
for (z in worksheet) {
|
|
/* all keys that do not begin with "!" correspond to cell addresses */
|
|
if (z[0] === '!') continue;
|
|
if ((z[0] >'B') && (z[1] > 0) && (z[2] > 1)) {
|
|
/* Cells that start in the C column represent the sttudent id in the worksheet, the same applies to name and lastname being in D and E columns*/
|
|
if (z[0] =='C') student.id = worksheet[z].v;
|
|
if (z[0] =='D') student.name = worksheet[z].v;
|
|
if (z[0] =='E') {
|
|
student.lastname = worksheet[z].v;
|
|
/*Since we are only going to use these 3 attributes from the students then we push only this data to the students array*/
|
|
vm.students.push(student);
|
|
student = {};
|
|
}
|
|
|
|
}
|
|
};
|
|
};
|
|
reader.readAsBinaryString(f);
|
|
}
|
|
}
|
|
if(xlf.addEventListener) xlf.addEventListener('change', handleFile, false);
|
|
|
|
$scope.ok = function (urlLo) {
|
|
$location.url(urlLo);
|
|
$scope.modalInstance.dismiss('cancel');
|
|
};
|
|
|
|
$rootScope.open = function($event) {
|
|
$event.preventDefault();
|
|
$event.stopPropagation();
|
|
|
|
$rootScope.opened = true;
|
|
};
|
|
|
|
return vm;
|
|
};
|
|
|
|
actualizarMatriculaCtrl.$inject = ['$scope', '$rootScope', '$location', 'sections', '$modal', 'matriculaSeleccionada'];
|
|
function actualizarMatriculaCtrl($scope, $rootScope, $location, sections, $modal, matriculaSeleccionada){
|
|
|
|
var vm = this;
|
|
vm.section = matriculaSeleccionada;
|
|
vm.students = matriculaSeleccionada.students;
|
|
|
|
|
|
vm.actualizarMatricula = function() {
|
|
|
|
}
|
|
|
|
vm.retirarEstudianteModal = function (index) {
|
|
$rootScope.index = index;
|
|
|
|
$rootScope.botonOk = true;
|
|
$rootScope.otroBotonOk = false;
|
|
$rootScope.botonCancelar = true;
|
|
|
|
$rootScope.rsplice = false;
|
|
$rootScope.eliminarLoading = false;
|
|
$rootScope.mensaje = "¿Desea retirar al estudiante "+ vm.students[index].lastname +", "+ vm.students[index].name + "?";
|
|
|
|
$scope.modalInstance = $modal.open({
|
|
animation: $rootScope.animationsEnabled,
|
|
templateUrl: 'partials/section/modal/update_section_modal.html',
|
|
scope: $scope,
|
|
size: 'sm',
|
|
resolve: {
|
|
items: function () {
|
|
return "";
|
|
}
|
|
}
|
|
});
|
|
};
|
|
|
|
vm.retirarEstudiante = function (index) {
|
|
$rootScope.rsplice = true;
|
|
};
|
|
|
|
vm.retirarEstudianteSplice = function(index, rsplice) {
|
|
if (rsplice) {
|
|
vm.students.splice(index, 1);
|
|
$rootScope.rsplice = false;
|
|
|
|
vm.section = {
|
|
"_id": vm.section._id,
|
|
"name": vm.section.name,
|
|
"code": vm.section.code,
|
|
"course": vm.section.name,
|
|
"semester": vm.section.semester,
|
|
"students": vm.students
|
|
};
|
|
|
|
sections.update(vm.section,
|
|
function (){
|
|
$rootScope.botonOk = false;
|
|
$rootScope.otroBotonOk = true;
|
|
$rootScope.botonCancelar = false;
|
|
$rootScope.mensaje = "Sección "+ vm.section.name +" actualizada";
|
|
},
|
|
function (){
|
|
$rootScope.botonOk = false;
|
|
$rootScope.otroBotonOk = true;
|
|
$rootScope.botonCancelar = false;
|
|
$rootScope.mensaje = "Error al actualizar la Sección "+ vm.section.name;
|
|
});
|
|
}
|
|
};
|
|
|
|
$rootScope.open = function($event) {
|
|
$event.preventDefault();
|
|
$event.stopPropagation();
|
|
$rootScope.opened = true;
|
|
};
|
|
|
|
$scope.ok = function () {
|
|
$scope.modalInstance.dismiss('cancel');
|
|
};
|
|
|
|
$scope.cancel = function () {
|
|
$scope.modalInstance.dismiss('cancel');
|
|
};
|
|
|
|
return vm;
|
|
};
|
|
|
|
})(); |