]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/grupo/__init__.py
hago ajaxoso el agregado de alumnos a la lista
[software/sercom.git] / sercom / subcontrollers / grupo / __init__.py
1 # vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker :
2
3 #{{{ Imports
4 import cherrypy
5 from turbogears import controllers, expose, redirect
6 from turbogears import validate, flash, error_handler
7 from turbogears import validators as V
8 from turbogears import widgets as W
9 from turbogears import identity
10 from turbogears import paginate
11 from docutils.core import publish_parts
12 from sercom.subcontrollers import validate as val
13 from sercom.model import Curso, AlumnoInscripto, Docente, Grupo, Alumno
14 from sqlobject import AND
15
16 from sercom.widgets import *
17
18 #}}}
19
20 #{{{ Configuración
21 cls = Grupo
22 name = 'grupo'
23 namepl = 'grupos'
24
25 fkcls = Curso
26 fkname = 'curso'
27 fknamepl = fkname + 's'
28 #}}}
29
30 #{{{ Validación
31 def validate_fk(data):
32     fk = data.get(fkname + 'ID', None)
33     if fk == 0: fk = None
34     if fk is not None:
35         try:
36             fk = fkcls.get(fk)
37         except LookupError:
38             flash(_(u'No se pudo crear el nuevo %s porque el %s con '
39                 'identificador %d no existe.' % (name, fkname, fk)))
40             raise redirect('new', **data)
41     data.pop(fkname + 'ID', None)
42     data[fkname] = fk
43     return fk
44
45 def validate_get(id):
46     return val.validate_get(cls, name, id)
47
48 def validate_set(id, data):
49     validate_fk(data)
50     return val.validate_set(cls, name, id, data)
51
52 def validate_new(data):
53     validate_fk(data)
54     return val.validate_new(cls, name, data)
55 #}}}
56
57 #{{{ Formulario
58 def get_docentes():
59     return [(fk1.id, fk1.shortrepr()) for fk1 in Docente.select()]
60
61 def get_cursos():
62     return [(0, u'---')] + [(fk1.id, fk1.shortrepr()) for fk1 in Curso.select()]
63
64 ajax = u"""
65     function err (err)
66     {
67         alert("The metadata for MochiKit.Async could not be fetched :(");
68     }
69
70     function procesar(result)
71     {
72         l = MochiKit.DOM.getElement('form_responsable_info');
73         l.innerHTML = result.msg;
74     }
75
76     function buscar_alumno()
77     {
78         /* Obtengo el curso */
79         l = MochiKit.DOM.getElement('form_cursoID');
80         cursoid = l.options[l.selectedIndex].value;
81         if (cursoid <= 0) {
82             alert('Debe seleccionar un curso');
83             return;
84         }
85         /* Obtengo el padron ingresado */
86         p = MochiKit.DOM.getElement('form_responsable');
87         padron = p.value;
88         if (padron == '') {
89             alert('Debe ingresar el padrón del alumno responsable');
90             return;
91         }
92         url = "/grupo/get_inscripto?cursoid="+cursoid+'&padron='+padron;
93         var d = loadJSONDoc(url);
94         d.addCallbacks(procesar, err);
95     }
96
97     function prepare()
98     {
99         connect('form_responsable', 'onblur', buscar_alumno);
100     }
101
102     MochiKit.DOM.addLoadEvent(prepare)
103
104 """
105
106 class GrupoForm(W.TableForm):
107     class Fields(W.WidgetsList):
108         curso = W.SingleSelectField(name='cursoID', label=_(u'Curso'), options = get_cursos,
109         validator = V.Int(not_empty=True))
110         nombre = W.TextField(label=_(u'Nombre'), validator=V.UnicodeString(not_empty=True,strip=True))
111         responsable = CustomTextField(label=_(u'Responsable'), validator=V.UnicodeString(not_empty=True), attrs=dict(size='8'))
112         alumnos = AlumnoMultiSelect(label=_(u'Integrantes'), validator=V.Int())
113
114     fields = Fields()
115     javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('curso');"), W.JSSource(ajax)]
116
117 form = GrupoForm()
118
119 #}}}
120
121 #{{{ Controlador
122 class GrupoController(controllers.Controller, identity.SecureResource):
123     """Basic model admin interface"""
124     require = identity.has_permission('admin')
125
126     @expose()
127     def default(self, tg_errors=None):
128         """handle non exist urls"""
129         raise redirect('list')
130
131     @expose()
132     def index(self):
133         raise redirect('list')
134
135     @expose(template='kid:%s.templates.list' % __name__)
136     @paginate('records')
137     def list(self):
138         """List records in model"""
139         r = cls.select()
140         return dict(records=r, name=name, namepl=namepl)
141
142     @expose()
143     def activate(self, id, activo):
144         """Save or create record to model"""
145         r = validate_get(id)
146         raise redirect('../../list')
147
148     @expose(template='kid:%s.templates.new' % __name__)
149     def new(self, **kw):
150         """Create new records in model"""
151         return dict(name=name, namepl=namepl, form=form, values=kw)
152
153     @validate(form=form)
154     @error_handler(new)
155     @expose()
156     def create(self, **kw):
157         """Save or create record to model"""
158         responsable = kw['responsable']
159         curso = kw['cursoID']
160         alumno = None
161         try:
162             # Busco el alumno inscripto
163             alumno = AlumnoInscripto.select(AND(Curso.q.id==curso, Alumno.q.usuario==responsable))
164             if alumno.count() > 0:
165                 alumno = alumno[0]
166             else:
167                 raise Exception
168         except Exception, (inst):
169             flash(_(u'El responsable %s no existe') % responsable)
170             raise redirect('list')
171
172         kw['responsable'] = alumno
173         r = validate_new(kw)
174         flash(_(u'Se creó un nuevo %s.') % name)
175         raise redirect('list')
176
177     @expose(template='kid:%s.templates.edit' % __name__)
178     def edit(self, id, **kw):
179         """Edit record in model"""
180         r = validate_get(id)
181         return dict(name=name, namepl=namepl, record=r, form=form)
182
183     @validate(form=form)
184     @error_handler(edit)
185     @expose()
186     def update(self, id, **kw):
187         """Save or create record to model"""
188         responsable = kw['responsable']
189         curso = kw['cursoID']
190         alumno = None
191         try:
192             # Busco el alumno inscripto
193             alumno = AlumnoInscripto.select(AND(Curso.q.id==curso, Alumno.q.usuario==responsable))
194             if alumno.count() > 0:
195                 alumno = alumno[0]
196             else:
197                 raise Exception
198         except Exception, (inst):
199             flash(_(u'El responsable %s no existe') % responsable)
200             raise redirect('../list')
201
202         r = validate_set(id, kw)
203         r.responsable = alumno
204         flash(_(u'El %s fue actualizado.') % name)
205         raise redirect('../list')
206
207     @expose(template='kid:%s.templates.show' % __name__)
208     def show(self,id, **kw):
209         """Show record in model"""
210         r = validate_get(id)
211         return dict(name=name, namepl=namepl, record=r)
212
213     @expose()
214     def delete(self, id):
215         """Destroy record in model"""
216         r = validate_get(id)
217         r.destroySelf()
218         flash(_(u'El %s fue eliminado permanentemente.') % name)
219         raise redirect('../list')
220
221     @expose('json')
222     def get_inscripto(self, cursoid, padron):
223         msg = 'No existe el alumno %s en el curso seleccionado.' % padron
224         error=False
225         try:
226             # Busco el alumno inscripto
227             alumno = AlumnoInscripto.select(AND(Curso.q.id==cursoid, Alumno.q.usuario==padron))
228             if alumno.count() > 0:
229                 msg = alumno[0].alumno.nombre
230             else:
231                 error = True
232         except Exception, (inst):
233             msg = u"""Se ha producido un error inesperado al buscar el registro:\n      %s""" % str(inst)
234             error = True
235         return dict(msg=msg, error=error)
236 #}}}
237