From: tailor Date: Thu, 1 Mar 2007 22:19:04 +0000 (+0000) Subject: curso con alumno y docentes X-Git-Tag: pre-merge~18 X-Git-Url: https://git.llucax.com/software/sercom.git/commitdiff_plain/206d6cd5f26a563166199329735818db9345828b curso con alumno y docentes * agrego listas para asignar docentes * widget para agregar alumnos de a uno --- diff --git a/sercom/subcontrollers/alumno/__init__.py b/sercom/subcontrollers/alumno/__init__.py index 7cdb455..3d2c11a 100644 --- a/sercom/subcontrollers/alumno/__init__.py +++ b/sercom/subcontrollers/alumno/__init__.py @@ -11,6 +11,7 @@ from turbogears import paginate from docutils.core import publish_parts from sercom.subcontrollers import validate as val from sercom.model import Alumno +from sqlobject import * #}}} #{{{ Configuración @@ -171,5 +172,25 @@ class AlumnoController(controllers.Controller, identity.SecureResource): row.append(str(e)) fail.append(row) return dict(ok=ok, fail=fail) + + @expose('json') + def get_alumno(self, padron): + msg = u'' + error=False + try: + # Busco el alumno inscripto + alumno = Alumno.byPadron(padron=padron) + msg = {} + msg['id'] = alumno.id + msg['value'] = alumno.nombre + except SQLObjectNotFound: + msg = 'No existe el alumno con padron: %s.' % padron + error=True + except Exception, (inst): + msg = u"""Se ha producido un error inesperado al buscar el registro:\n %s""" % str(inst) + error = True + return dict(msg=msg, error=error) + + #}}} diff --git a/sercom/subcontrollers/curso/__init__.py b/sercom/subcontrollers/curso/__init__.py index 8b3c082..8873458 100644 --- a/sercom/subcontrollers/curso/__init__.py +++ b/sercom/subcontrollers/curso/__init__.py @@ -12,7 +12,8 @@ from docutils.core import publish_parts from sercom.subcontrollers import validate as val from sercom.model import Curso, Ejercicio, Alumno, Docente, Grupo, DocenteInscripto from curso_alumno import * - +from sqlobject import * +from sercom.widgets import * #}}} #{{{ Configuración @@ -21,6 +22,88 @@ name = 'curso' namepl = name + 's' #}}} +ajax = u""" + function makeOption(option) { + return OPTION({"value": option.value}, option.text); + } + + function moveOption( fromSelect, toSelect) { + // add 'selected' nodes toSelect + appendChildNodes(toSelect, + map( makeOption,ifilter(itemgetter('selected'), $(fromSelect).options))); + // remove the 'selected' fromSelect + replaceChildNodes(fromSelect, + list(ifilterfalse(itemgetter('selected'), $(fromSelect).options)) + ); + } + + function alumnos_agregar_a_la_lista(texto, lista) + { + t = MochiKit.DOM.getElement(texto); + + url = "/alumno/get_alumno?padron="+t.value; + t.value = ""; + return url; + } + + function err (err) + { + alert("The metadata for MochiKit.Async could not be fetched :("); + } + + function procesar(result) + { + l = MochiKit.DOM.getElement('form_responsable_info'); + if (result.error) + l.innerHTML = result.msg; + else + l.innerHTML = result.msg.value; + } + + function buscar_alumno() + { + /* Obtengo el curso */ + l = MochiKit.DOM.getElement('form_cursoID'); + cursoid = l.options[l.selectedIndex].value; + if (cursoid <= 0) { + alert('Debe seleccionar un curso'); + return; + } + /* Obtengo el padron ingresado */ + p = MochiKit.DOM.getElement('form_responsable'); + padron = p.value; + if (padron == '') { + alert('Debe ingresar el padrón del alumno responsable'); + return; + } + url = "/grupo/get_inscripto?cursoid="+cursoid+'&padron='+padron; + var d = loadJSONDoc(url); + d.addCallbacks(procesar, err); + } + + function prepare() + { + connect('form_responsable', 'onblur', buscar_alumno); + } + + function onsubmit() + { + /* TODO : Validar datos y evitar el submit si no esta completo */ + + /* Selecciono todos los miembros si no, no llegan al controllere*/ + l = MochiKit.DOM.getElement('form_miembros'); + for (i=0; i