]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/grupo/__init__.py
e7e1b309cac12a9ad9d197ea4757c1d2a64e4162
[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.Int(not_empty=True), attrs=dict(size='8'))
112
113     fields = Fields()
114     javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('curso');"), W.JSSource(ajax)]
115
116 form = GrupoForm()
117
118 #}}}
119
120 #{{{ Controlador
121 class GrupoController(controllers.Controller, identity.SecureResource):
122     """Basic model admin interface"""
123     require = identity.has_permission('admin')
124
125     @expose()
126     def default(self, tg_errors=None):
127         """handle non exist urls"""
128         raise redirect('list')
129
130     @expose()
131     def index(self):
132         raise redirect('list')
133
134     @expose(template='kid:%s.templates.list' % __name__)
135     @paginate('records')
136     def list(self):
137         """List records in model"""
138         r = cls.select()
139         return dict(records=r, name=name, namepl=namepl)
140
141     @expose()
142     def activate(self, id, activo):
143         """Save or create record to model"""
144         r = validate_get(id)
145         raise redirect('../../list')
146
147     @expose(template='kid:%s.templates.new' % __name__)
148     def new(self, **kw):
149         """Create new records in model"""
150         return dict(name=name, namepl=namepl, form=form, values=kw)
151
152     @validate(form=form)
153     @error_handler(new)
154     @expose()
155     def create(self, **kw):
156         """Save or create record to model"""
157         validate_new(kw)
158         flash(_(u'Se creó un nuevo %s.') % name)
159         raise redirect('list')
160
161     @expose(template='kid:%s.templates.edit' % __name__)
162     def edit(self, id, **kw):
163         """Edit record in model"""
164         r = validate_get(id)
165         return dict(name=name, namepl=namepl, record=r, form=form)
166
167     @validate(form=form)
168     @error_handler(edit)
169     @expose()
170     def update(self, id, **kw):
171         """Save or create record to model"""
172         r = validate_set(id, kw)
173         flash(_(u'El %s fue actualizado.') % name)
174         raise redirect('../list')
175
176     @expose(template='kid:%s.templates.show' % __name__)
177     def show(self,id, **kw):
178         """Show record in model"""
179         r = validate_get(id)
180         return dict(name=name, namepl=namepl, record=r)
181
182     @expose()
183     def delete(self, id):
184         """Destroy record in model"""
185         r = validate_get(id)
186         r.destroySelf()
187         flash(_(u'El %s fue eliminado permanentemente.') % name)
188         raise redirect('../list')
189
190     @expose('json')
191     def get_inscripto(self, cursoid, padron):
192         msg = 'No existe el alumno %s en el curso seleccionado.' % padron
193         try:
194             # Busco el alumno inscripto
195             alumno = AlumnoInscripto.select(AND(Curso.q.id==cursoid, Alumno.q.usuario==padron))
196             if alumno.count() > 0:
197                 msg = alumno[0].alumno.nombre
198         except Exception, (inst):
199             msg = u"""Se ha producido un error inesperado al buscar el registro:\n      %s""" % str(inst)
200         return dict(msg=msg)
201 #}}}
202