## $Id: studycourse.py 10156 2013-05-07 17:31:10Z henrik $ ## ## Copyright (C) 2012 Uli Fouquet & Henrik Bettermann ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ## """ Container which holds the data of the student study courses and contains the (student) study level objects. """ import grok from zope.interface import implementedBy from waeup.kofa.students.studycourse import ( StudentStudyCourse, StudentStudyCourseFactory) from waeup.kofa.utils.helpers import attrs_to_fields from waeup.kofa.students.workflow import CLEARED, RETURNING, PAID from kofacustom.nigeria.students.interfaces import ( INigeriaStudentStudyCourse, IStudentNavigation) class NigeriaStudentStudyCourse(StudentStudyCourse): """This is a container for study levels. """ grok.implements(INigeriaStudentStudyCourse, IStudentNavigation) grok.provides(INigeriaStudentStudyCourse) @property def next_session_allowed(self): state = self.student.state certificate = getattr(self, 'certificate', None) if certificate == None: return False if state == CLEARED: return True cond0 = state == RETURNING cond1 = self.current_verdict in ( 'A','B','C','F','J','L','M','N','O','X','Z') cond2 = self.current_level in (0, 100) cond3 = certificate.study_mode.startswith('de') and \ self.current_level == 200 cond4 = certificate.study_mode.startswith('ph') and \ self.current_level == 300 if cond0 and (cond1 or cond2 or cond3 or cond4): return True cond5 = self.is_postgrad cond6 = state == PAID cond7 = self.is_special_postgrad if cond5 and cond6 and not cond7: return True return False NigeriaStudentStudyCourse = attrs_to_fields(NigeriaStudentStudyCourse) class NigeriaStudentStudyCourseFactory(StudentStudyCourseFactory): """A factory for student study courses. """ def __call__(self, *args, **kw): return NigeriaStudentStudyCourse() def getInterfaces(self): return implementedBy(NigeriaStudentStudyCourse)