]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/correccion/__init__.py
162a56f1b9ab42c22e1f871b2302ce783d2bc322
[software/sercom.git] / sercom / subcontrollers / correccion / __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 Correccion
14 #}}}
15
16 #{{{ Configuración
17 cls = Correccion
18 name = 'correccion'
19 namepl = name + 'es'
20 #}}}
21
22 #{{{ Validación
23 def validate_get(id):
24     return val.validate_get(cls, name, id)
25
26 def validate_set(id, data):
27     return val.validate_set(cls, name, id, data)
28
29 def validate_new(data):
30     return val.validate_new(cls, name, data)
31 #}}}
32
33 #{{{ Formulario
34 class CorreccionForm(W.TableForm):
35     class Fields(W.WidgetsList):
36         linstancia = W.Label(label=_(u'Instancia de Entrega'))
37         lentregador = W.Label(label=_(u'Entregador'))
38         lentrega = W.Label(label=_(u'Entrega'))
39         lcorrector = W.Label(label=_(u'Corrector'))
40         nota = W.TextField(label=_(u'Nota'), validator=V.Number(not_empty=False, strip=True))
41         observaciones = W.TextArea(label=_(u'Observaciones'), validator=V.UnicodeString(not_empty=False, strip=True))
42     fields = Fields()
43     javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_instancia');")]
44
45 form = CorreccionForm()
46 #}}}
47
48 #{{{ Controlador
49 class CorreccionController(controllers.Controller, identity.SecureResource):
50     """Basic model admin interface"""
51     require = identity.has_permission('admin')
52
53     @expose()
54     def default(self, tg_errors=None):
55         """handle non exist urls"""
56         raise redirect('list')
57
58     @expose()
59     def index(self):
60         raise redirect('list')
61
62     @expose(template='kid:%s.templates.list' % __name__)
63     @paginate('records')
64     def list(self):
65         """List records in model"""
66         r = cls.select()
67         return dict(records=r, name=name, namepl=namepl)
68
69     @expose(template='kid:%s.templates.edit' % __name__)
70     def edit(self, id, **kw):
71         """Edit record in model"""
72         r = validate_get(id)
73         r.linstancia = r.instancia.shortrepr()
74         r.lentregador = r.entregador.shortrepr()
75         r.lentrega = r.entrega.shortrepr()
76         r.lcorrector = r.corrector.shortrepr()
77         return dict(name=name, namepl=namepl, record=r, form=form)
78
79     @validate(form=form)
80     @error_handler(edit)
81     @expose()
82     def update(self, id, **kw):
83         """Save or create record to model"""
84         from sqlobject import DateTimeCol
85         r = Correccion.get(id)
86         r.nota = kw['nota']
87         r.observaciones = kw['observaciones']
88         r.corregido = DateTimeCol.now()
89         flash(_(u'El %s fue actualizado.') % name)
90         raise redirect('../list')
91
92     @expose(template='kid:%s.templates.show' % __name__)
93     def show(self,id, **kw):
94         """Show record in model"""
95         r = validate_get(id)
96         if r.observaciones is None:
97             r.obs = ''
98         else:
99             r.obs = publish_parts(r.observaciones, writer_name='html')['html_body']
100         return dict(name=name, namepl=namepl, record=r)
101
102 #}}}
103