]> git.llucax.com Git - software/sercom.git/commitdiff
agregar miembros con el nuevo widget a un grupo
authorRicardo Markiewicz <rmarkie@fi.uba.ar>
Tue, 27 Feb 2007 21:59:41 +0000 (21:59 +0000)
committerRicardo Markiewicz <rmarkie@fi.uba.ar>
Tue, 27 Feb 2007 21:59:41 +0000 (21:59 +0000)
sercom/subcontrollers/grupo/__init__.py
sercom/widgets.py

index 8042b7cb8af4447f0bce979edeaa5c6b26b30f27..6e2899498a2d8da579cb055a78e4e2391f952400 100644 (file)
@@ -112,7 +112,7 @@ class GrupoForm(W.TableForm):
         validator = V.Int(not_empty=True))
         nombre = W.TextField(label=_(u'Nombre'), validator=V.UnicodeString(not_empty=True,strip=True))
         responsable = CustomTextField(label=_(u'Responsable'), validator=V.UnicodeString(not_empty=True), attrs=dict(size='8'))
-        alumnos = AlumnoMultiSelect(label=_(u'Integrantes'), validator=V.Int())
+        alumnos = AlumnoMultiSelect(name='alumnos', label=_(u'Integrantes'), validator=V.Int())
 
     fields = Fields()
     javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('curso');"), W.JSSource(ajax)]
@@ -160,20 +160,33 @@ class GrupoController(controllers.Controller, identity.SecureResource):
         """Save or create record to model"""
         responsable = kw['responsable']
         curso = kw['cursoID']
-        alumno = None
+        resp = None
         try:
             # Busco el alumno inscripto
-            alumno = AlumnoInscripto.select(AND(Curso.q.id==curso, Alumno.q.usuario==responsable))
-            if alumno.count() > 0:
-                alumno = alumno[0]
+            resp = AlumnoInscripto.select(AND(Curso.q.id==curso, Alumno.q.usuario==responsable))
+            if resp.count() > 0:
+                resp = resp[0]
             else:
                 raise Exception
         except Exception, (inst):
             flash(_(u'El responsable %s no existe') % responsable)
             raise redirect('list')
 
-        kw['responsable'] = alumno
+        kw['responsable'] = resp
+
+        # Busco los alumnos
+        alumnos = []
+        for alumnoid in kw['alumnos']:
+            alumnos.append(Alumno.get(alumnoid))
+        if alumnos == []:
+            flash(_(u'No se pudo crear el grupo. No se han agregado integrantes.'))
+            raise redirect('list')
+
+        del(kw['alumnos'])
+
         r = validate_new(kw)
+        for a in alumnos:
+            r.add_miembro(a)
         flash(_(u'Se creó un nuevo %s.') % name)
         raise redirect('list')
 
index d23199fbd9d5541a653b580a8c7902f0ba3b5a9f..5a06ea71c92d41cabd58b913ef87167cd16e6414 100644 (file)
@@ -30,6 +30,10 @@ AlumnoMultiSelectAjax = '''
             return;
         }
         MochiKit.DOM.appendChildNodes(lista, OPTION({'value':results.msg.id}, results.msg.value));
+        l = MochiKit.DOM.getElement(lista);
+        for (i=0; i<l.options.length; i++) { 
+            l.options[i].selected = true; 
+        }
     }
 
     function _on_alumno_get_error(loading, results)