X-Git-Url: https://git.llucax.com/software/sercom.git/blobdiff_plain/9f98acc3fd17d5dbc56f7005b278fb3a6a26d8e1..c93a3d99ce9b5e3db2e9f18f972bfcfba7ce5f1a:/sercom/model.py?ds=sidebyside diff --git a/sercom/model.py b/sercom/model.py index f9ab5a9..a03266c 100644 --- a/sercom/model.py +++ b/sercom/model.py @@ -334,13 +334,15 @@ class Tarea(InheritableSQLObject, ByObject): #{{{ class Enunciado(SQLObject, ByObject): #{{{ # Clave nombre = UnicodeCol(length=60, alternateID=True) + anio = IntCol(notNone=True) + cuatrimestre = IntCol(notNone=True) # Campos autor = ForeignKey('Docente') descripcion = UnicodeCol(length=255, default=None) creado = DateTimeCol(notNone=True, default=DateTimeCol.now) archivo = BLOBCol(default=None) - archivo_name = StringCol(default=None) - archivo_type = StringCol(default=None) + archivo_name = UnicodeCol(length=255, default=None) + archivo_type = UnicodeCol(length=255, default=None) # Joins ejercicios = MultipleJoin('Ejercicio') casos_de_prueba = MultipleJoin('CasoDePrueba') @@ -352,6 +354,10 @@ class Enunciado(SQLObject, ByObject): #{{{ if tareas: self.tareas = tareas + @classmethod + def selectByCurso(self, curso): + return Enunciado.selectBy(cuatrimestre=curso.cuatrimestre, anio=curso.anio) + def add_caso_de_prueba(self, nombre, *args, **kargs): return CasoDePrueba(self, nombre, *args, **kargs) @@ -406,7 +412,7 @@ class CasoDePrueba(SQLObject): #{{{ pk = DatabaseIndex(enunciado, nombre, unique=True) # Campos # privado = IntCol(default=None) TODO iria en instancia_de_entrega_caso_de_prueba - parametros = ParamsCol(length=255) + parametros = ParamsCol(length=255, default=None) retorno = IntCol(default=None) tiempo_cpu = FloatCol(default=None) descripcion = UnicodeCol(length=255, default=None) @@ -592,7 +598,8 @@ class Grupo(Entregador): #{{{ def __init__(self, curso=None, nombre=None, responsable=None, **kargs): resp_id = responsable and responsable.id - InheritableSQLObject.__init__(self, cursoID=curso.id, nombre=nombre, + curso_id = curso and curso.id + InheritableSQLObject.__init__(self, cursoID=curso_id, nombre=nombre, responsableID=resp_id, **kargs) def add_alumno(self, alumno, *args, **kargs):