From: Leandro Lucarella Date: Wed, 28 Feb 2007 18:33:52 +0000 (+0000) Subject: Arreglar bug en Grupo.add_xxx(). X-Git-Tag: pre-merge~34 X-Git-Url: https://git.llucax.com/z.facultad/75.52/sercom.git/commitdiff_plain/a8be7f414671acf0f60ee71255aea4f3415e087b?ds=inline Arreglar bug en Grupo.add_xxx(). Se verificaba mal que tipo de instancia tomaba como parĂ¡metro. --- diff --git a/sercom/model.py b/sercom/model.py index bc7388c..efa906c 100644 --- a/sercom/model.py +++ b/sercom/model.py @@ -703,27 +703,27 @@ class Grupo(Entregador): #{{{ self.add_tutor(t) def add_miembro(self, alumno, **kw): - if isinstance(alumno, Alumno): + if isinstance(alumno, AlumnoInscripto): kw['alumno'] = alumno else: kw['alumnoID'] = alumno return Miembro(grupo=self, **kw) def remove_miembro(self, alumno): - if isinstance(alumno, Alumno): + if isinstance(alumno, AlumnoInscripto): Miembro.pk.get(grupo=self, alumno=alumno).destroySelf() else: Miembro.pk.get(grupo=self, alumnoID=alumno).destroySelf() def add_tutor(self, docente, **kw): - if isinstance(docente, Docente): + if isinstance(docente, DocenteInscripto): kw['docente'] = docente else: kw['docenteID'] = docente return Tutor(grupo=self, **kw) def remove_tutor(self, docente): - if isinstance(docente, Alumno): + if isinstance(docente, DocenteInscripto): Tutor.pk.get(grupo=self, docente=docente).destroySelf() else: Tutor.pk.get(grupo=self, docenteID=docente).destroySelf()