From: Ricardo Markiewicz Date: Sun, 11 Mar 2007 17:19:03 +0000 (+0000) Subject: Muestro las entregas que se hicieron en Grupo o Individualmente. X-Git-Tag: 0_9~75 X-Git-Url: https://git.llucax.com/software/sercom.git/commitdiff_plain/c5e6579e46589c8af4175e16283337bc0ac75df6?ds=inline Muestro las entregas que se hicieron en Grupo o Individualmente. --- diff --git a/sercom/controllers.py b/sercom/controllers.py index b16424f..fe303b8 100644 --- a/sercom/controllers.py +++ b/sercom/controllers.py @@ -6,7 +6,8 @@ from turbogears import identity, redirect from cherrypy import request, response from turbogears.toolbox.catwalk import CatWalk import model -from model import InstanciaDeEntrega, Correccion, AND, DateTimeCol, Entrega +from model import InstanciaDeEntrega, Correccion, AND, DateTimeCol, Entrega, Grupo, AlumnoInscripto +from sqlobject import * # from sercom import json from subcontrollers import * @@ -52,7 +53,11 @@ class Root(controllers.RootController): AND(InstanciaDeEntrega.q.inicio <= now, InstanciaDeEntrega.q.fin > now)).orderBy(InstanciaDeEntrega.q.fin)) # Ultimas N entregas realizadas - entregas = list(Entrega.select(Entrega.q.entregadorID == identity.current.user.id)[:5]) + # Grupos en los que el usuario formo parte + m = [i.grupo.id for i in Grupo.selectByAlumno(identity.current.user)] + entregador = AlumnoInscripto.selectByAlumno(identity.current.user) + m.append(entregador.id) + entregas = list(Entrega.select(IN(Entrega.q.entregadorID, m))[:5]) return dict(instancias_activas=instancias, now=now, entregas=entregas) return dict() diff --git a/sercom/subcontrollers/misentregas/__init__.py b/sercom/subcontrollers/misentregas/__init__.py index a7c3c31..c45a8e7 100644 --- a/sercom/subcontrollers/misentregas/__init__.py +++ b/sercom/subcontrollers/misentregas/__init__.py @@ -123,7 +123,11 @@ class MisEntregasController(controllers.Controller, identity.SecureResource): @paginate('records') def list(self): """List records in model""" - r = cls.select(cls.q.entregadorID == identity.current.user.id) + # Grupos en los que el usuario formo parte + m = [i.grupo.id for i in Grupo.selectByAlumno(identity.current.user)] + entregador = AlumnoInscripto.selectByAlumno(identity.current.user) + m.append(entregador.id) + r = cls.select(IN(cls.q.entregadorID, m)) return dict(records=r, name=name, namepl=namepl) @validate(form=form) @@ -138,7 +142,7 @@ class MisEntregasController(controllers.Controller, identity.SecureResource): raise redirect('list') # por defecto el entregador es el user loggeado - entregador = identity.current.user + entregador = AlumnoInscripto.selectByAlumno(identity.current.user) ejercicio = Ejercicio.get(int(ejercicio)) if ejercicio.grupal: diff --git a/sercom/subcontrollers/misentregas/templates/list.kid b/sercom/subcontrollers/misentregas/templates/list.kid index 3b99a27..dd48480 100644 --- a/sercom/subcontrollers/misentregas/templates/list.kid +++ b/sercom/subcontrollers/misentregas/templates/list.kid @@ -12,6 +12,7 @@ + @@ -21,6 +22,7 @@ +
Entregador Ejercicio IE CorrectaOperaciones
usuario usuario usuario fecha asignado