[8326] | 1 | ## $Id: studylevel.py 14288 2016-11-18 07:19:25Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2012 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
| 18 | """ |
---|
| 19 | Container which holds the data of a student study level |
---|
| 20 | and contains the course tickets. |
---|
| 21 | """ |
---|
| 22 | import grok |
---|
[13036] | 23 | import pytz |
---|
| 24 | from datetime import datetime |
---|
[8326] | 25 | from zope.component.interfaces import IFactory |
---|
[9502] | 26 | from zope.component import createObject |
---|
[8326] | 27 | from zope.interface import implementedBy |
---|
| 28 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
[13036] | 29 | from waeup.kofa.interfaces import CREATED |
---|
[14227] | 30 | from waeup.kofa.students.browser import TicketError |
---|
[8326] | 31 | from waeup.kofa.students.studylevel import ( |
---|
| 32 | StudentStudyLevel, CourseTicket, |
---|
| 33 | CourseTicketFactory, StudentStudyLevelFactory) |
---|
[14075] | 34 | from waeup.kofa.students.interfaces import IStudentNavigation, ICourseTicket |
---|
[8444] | 35 | from waeup.aaue.students.interfaces import ( |
---|
[8867] | 36 | ICustomStudentStudyLevel, ICustomCourseTicket) |
---|
[14248] | 37 | from waeup.aaue.interfaces import MessageFactory as _ |
---|
[8326] | 38 | |
---|
| 39 | |
---|
[14136] | 40 | def getGradeWeightFromScore(total, student): |
---|
| 41 | if total is None: |
---|
[13834] | 42 | return (None, None) |
---|
| 43 | if total >= 70: |
---|
| 44 | return ('A',5) |
---|
| 45 | if total >= 60: |
---|
| 46 | return ('B',4) |
---|
| 47 | if total >= 50: |
---|
| 48 | return ('C',3) |
---|
| 49 | if total >= 45: |
---|
| 50 | return ('D',2) |
---|
[14075] | 51 | if total >= 40 and student.entry_session < 2013: |
---|
[13834] | 52 | return ('E',1) |
---|
| 53 | return ('F',0) |
---|
| 54 | |
---|
| 55 | |
---|
[8326] | 56 | class CustomStudentStudyLevel(StudentStudyLevel): |
---|
| 57 | """This is a container for course tickets. |
---|
| 58 | """ |
---|
| 59 | grok.implements(ICustomStudentStudyLevel, IStudentNavigation) |
---|
| 60 | grok.provides(ICustomStudentStudyLevel) |
---|
| 61 | |
---|
[9914] | 62 | @property |
---|
| 63 | def total_credits_s1(self): |
---|
| 64 | total = 0 |
---|
| 65 | for ticket in self.values(): |
---|
| 66 | if ticket.semester == 1: |
---|
| 67 | total += ticket.credits |
---|
| 68 | return total |
---|
| 69 | |
---|
| 70 | @property |
---|
| 71 | def total_credits_s2(self): |
---|
| 72 | total = 0 |
---|
| 73 | for ticket in self.values(): |
---|
| 74 | if ticket.semester == 2: |
---|
| 75 | total += ticket.credits |
---|
| 76 | return total |
---|
| 77 | |
---|
[10443] | 78 | @property |
---|
[13834] | 79 | def gpa_params(self): |
---|
| 80 | """Calculate gpa parameters for this level. |
---|
| 81 | """ |
---|
| 82 | credits_weighted = 0.0 |
---|
| 83 | credits_counted = 0 |
---|
| 84 | level_gpa = 0.0 |
---|
| 85 | for ticket in self.values(): |
---|
| 86 | if None not in (ticket.score, ticket.ca): |
---|
| 87 | credits_counted += ticket.credits |
---|
| 88 | credits_weighted += ticket.credits * ticket.weight |
---|
| 89 | if credits_counted: |
---|
| 90 | level_gpa = round(credits_weighted/credits_counted, 3) |
---|
[14206] | 91 | # Override level_gpa if value has been imported |
---|
| 92 | imported_gpa = getattr(self, 'imported_gpa', None) |
---|
| 93 | if imported_gpa: |
---|
| 94 | level_gpa = imported_gpa |
---|
[13834] | 95 | return level_gpa, credits_counted, credits_weighted |
---|
| 96 | |
---|
| 97 | @property |
---|
[10480] | 98 | def gpa_params_rectified(self): |
---|
| 99 | return self.gpa_params |
---|
[10443] | 100 | |
---|
[13036] | 101 | @property |
---|
[14248] | 102 | def course_registration_forbidden(self): |
---|
[14249] | 103 | fac_dep_paid = True |
---|
[14248] | 104 | if self.student.entry_session >= 2016: |
---|
[14249] | 105 | fac_dep_paid = False |
---|
[14248] | 106 | for ticket in self.student['payments'].values(): |
---|
| 107 | if ticket.p_category == 'fac_dep' and \ |
---|
| 108 | ticket.p_session == self.level_session and \ |
---|
| 109 | ticket.p_state == 'paid': |
---|
| 110 | fac_dep_paid = True |
---|
| 111 | continue |
---|
| 112 | if not fac_dep_paid: |
---|
| 113 | return _("Please pay faculty and departmental dues first.") |
---|
[13036] | 114 | if self.student.is_fresh: |
---|
[14248] | 115 | return |
---|
[13036] | 116 | try: |
---|
[14117] | 117 | if self.student.is_postgrad: |
---|
| 118 | deadline = grok.getSite()['configuration'][ |
---|
| 119 | str(self.level_session)].coursereg_deadline_pg |
---|
| 120 | elif self.student.current_mode.startswith('dp'): |
---|
| 121 | deadline = grok.getSite()['configuration'][ |
---|
| 122 | str(self.level_session)].coursereg_deadline_dp |
---|
| 123 | elif self.student.current_mode.endswith('_pt'): |
---|
| 124 | deadline = grok.getSite()['configuration'][ |
---|
| 125 | str(self.level_session)].coursereg_deadline_pt |
---|
| 126 | elif self.student.current_mode == 'found': |
---|
| 127 | deadline = grok.getSite()['configuration'][ |
---|
| 128 | str(self.level_session)].coursereg_deadline_found |
---|
| 129 | else: |
---|
| 130 | deadline = grok.getSite()['configuration'][ |
---|
| 131 | str(self.level_session)].coursereg_deadline |
---|
[13071] | 132 | except (TypeError, KeyError): |
---|
[14248] | 133 | return |
---|
[13070] | 134 | if not deadline or deadline > datetime.now(pytz.utc): |
---|
[14248] | 135 | return |
---|
[13036] | 136 | if len(self.student['payments']): |
---|
| 137 | for ticket in self.student['payments'].values(): |
---|
| 138 | if ticket.p_category == 'late_registration' and \ |
---|
| 139 | ticket.p_session == self.level_session and \ |
---|
| 140 | ticket.p_state == 'paid': |
---|
[14248] | 141 | return |
---|
| 142 | return _("Course registration has ended. " |
---|
| 143 | "Please pay the late registration fee.") |
---|
[13036] | 144 | |
---|
[14082] | 145 | # only AAUE |
---|
| 146 | @property |
---|
| 147 | def remark(self): |
---|
[14161] | 148 | certificate = getattr(self.__parent__,'certificate',None) |
---|
| 149 | end_level = getattr(certificate, 'end_level', None) |
---|
| 150 | # final student remark |
---|
| 151 | if end_level and self.student.current_level >= end_level: |
---|
| 152 | failed_courses = self.passed_params[4] |
---|
| 153 | if '_m' in failed_courses: |
---|
| 154 | return 'FRNS' |
---|
| 155 | if self.cumulative_params[0] < 1.5: |
---|
| 156 | return 'Fail' |
---|
| 157 | if self.cumulative_params[0] < 2.4: |
---|
| 158 | return '3rd' |
---|
| 159 | if self.cumulative_params[0] < 3.5: |
---|
| 160 | return '2nd Lower' |
---|
| 161 | if self.cumulative_params[0] < 4.5: |
---|
| 162 | return '2nd Upper' |
---|
| 163 | if self.cumulative_params[0] < 5.1: |
---|
| 164 | return '1st' |
---|
| 165 | return 'N/A' |
---|
| 166 | # returning student remark |
---|
[14082] | 167 | if self.cumulative_params[0] < 1.5: |
---|
| 168 | return 'Probation' |
---|
| 169 | if self.cumulative_params[0] < 5.1: |
---|
| 170 | return 'Proceed' |
---|
| 171 | return 'N/A' |
---|
| 172 | |
---|
[14227] | 173 | def _schoolfeePaymentMade(self): |
---|
| 174 | if len(self.student['payments']): |
---|
| 175 | for ticket in self.student['payments'].values(): |
---|
| 176 | if ticket.p_state == 'paid' and \ |
---|
| 177 | ticket.p_category in ( |
---|
| 178 | 'schoolfee', 'schoolfee_incl', 'schoolfee_2',) and \ |
---|
| 179 | ticket.p_session == self.student[ |
---|
| 180 | 'studycourse'].current_session: |
---|
| 181 | return True |
---|
| 182 | return False |
---|
| 183 | |
---|
[14259] | 184 | def _coursePaymentsMade(self, course): |
---|
[14266] | 185 | if self.level_session < 2016: |
---|
| 186 | return True |
---|
[14259] | 187 | if not course.code[:3] in ('GST', 'ENT'): |
---|
| 188 | return True |
---|
| 189 | if len(self.student['payments']): |
---|
| 190 | paid_cats = list() |
---|
| 191 | for pticket in self.student['payments'].values(): |
---|
| 192 | if pticket.p_state == 'paid': |
---|
| 193 | paid_cats.append(pticket.p_category) |
---|
| 194 | if course.code in ('GST101', 'GST102', 'GST111', 'GST112') and \ |
---|
| 195 | not 'gst_registration_1' in paid_cats: |
---|
| 196 | return False |
---|
| 197 | if course.code in ('GST222',) and \ |
---|
| 198 | not 'gst_registration_2' in paid_cats: |
---|
| 199 | return False |
---|
| 200 | if course.code in ('ENT201',) and \ |
---|
| 201 | not 'gst_registration_3' in paid_cats: |
---|
| 202 | return False |
---|
| 203 | if course.code in ('GST101', 'GST102') and \ |
---|
| 204 | not 'gst_text_book_1' in paid_cats: |
---|
| 205 | return False |
---|
| 206 | if course.code in ('GST111', 'GST112') and \ |
---|
| 207 | not 'gst_text_book_2' in paid_cats: |
---|
| 208 | return False |
---|
| 209 | if course.code in ('GST222',) and \ |
---|
| 210 | not 'gst_text_book_3' in paid_cats: |
---|
| 211 | return False |
---|
| 212 | if course.code in ('ENT201',) and \ |
---|
| 213 | not 'gst_text_book_4' in paid_cats: |
---|
| 214 | return False |
---|
| 215 | return True |
---|
| 216 | return False |
---|
| 217 | |
---|
[14075] | 218 | def addCourseTicket(self, ticket, course): |
---|
| 219 | """Add a course ticket object. |
---|
| 220 | """ |
---|
| 221 | if not ICourseTicket.providedBy(ticket): |
---|
| 222 | raise TypeError( |
---|
| 223 | 'StudentStudyLeves contain only ICourseTicket instances') |
---|
[14227] | 224 | # Raise TicketError if course is in 2nd semester but |
---|
| 225 | # schoolfee has not yet been fully paid. |
---|
| 226 | if course.semester == 2 and not self._schoolfeePaymentMade(): |
---|
[14252] | 227 | raise TicketError( |
---|
| 228 | _('%s is a 2nd semester course which can only be added ' |
---|
| 229 | 'if school fees have been fully paid.' % course.code)) |
---|
[14259] | 230 | # Raise TicketError if registration fee or text |
---|
| 231 | # book fee haven't been paid. |
---|
| 232 | if not self._coursePaymentsMade(course): |
---|
| 233 | raise TicketError( |
---|
| 234 | _('%s can only be added if both registration fee and text ' |
---|
| 235 | 'book fee have been paid.' |
---|
| 236 | % course.code)) |
---|
[14075] | 237 | ticket.code = course.code |
---|
| 238 | ticket.title = course.title |
---|
| 239 | ticket.fcode = course.__parent__.__parent__.__parent__.code |
---|
| 240 | ticket.dcode = course.__parent__.__parent__.code |
---|
| 241 | ticket.credits = course.credits |
---|
| 242 | if self.student.entry_session < 2013: |
---|
| 243 | ticket.passmark = course.passmark - 5 |
---|
| 244 | else: |
---|
| 245 | ticket.passmark = course.passmark |
---|
| 246 | ticket.semester = course.semester |
---|
| 247 | self[ticket.code] = ticket |
---|
| 248 | return |
---|
| 249 | |
---|
[14227] | 250 | def addCertCourseTickets(self, cert): |
---|
| 251 | """Collect all certificate courses and create course |
---|
| 252 | tickets automatically. |
---|
| 253 | """ |
---|
| 254 | if cert is not None: |
---|
| 255 | for key, val in cert.items(): |
---|
| 256 | if val.level != self.level: |
---|
| 257 | continue |
---|
| 258 | ticket = createObject(u'waeup.CourseTicket') |
---|
| 259 | ticket.automatic = True |
---|
| 260 | ticket.mandatory = val.mandatory |
---|
| 261 | ticket.carry_over = False |
---|
| 262 | try: |
---|
| 263 | self.addCourseTicket(ticket, val.course) |
---|
| 264 | except TicketError: |
---|
| 265 | pass |
---|
| 266 | return |
---|
| 267 | |
---|
[9692] | 268 | CustomStudentStudyLevel = attrs_to_fields( |
---|
[9914] | 269 | CustomStudentStudyLevel, omit=[ |
---|
[10480] | 270 | 'total_credits', 'total_credits_s1', 'total_credits_s2', 'gpa']) |
---|
[8326] | 271 | |
---|
| 272 | class CustomStudentStudyLevelFactory(StudentStudyLevelFactory): |
---|
| 273 | """A factory for student study levels. |
---|
| 274 | """ |
---|
| 275 | |
---|
| 276 | def __call__(self, *args, **kw): |
---|
| 277 | return CustomStudentStudyLevel() |
---|
| 278 | |
---|
| 279 | def getInterfaces(self): |
---|
| 280 | return implementedBy(CustomStudentStudyLevel) |
---|
| 281 | |
---|
| 282 | class CustomCourseTicket(CourseTicket): |
---|
| 283 | """This is a course ticket which allows the |
---|
| 284 | student to attend the course. Lecturers will enter scores and more at |
---|
| 285 | the end of the term. |
---|
| 286 | |
---|
| 287 | A course ticket contains a copy of the original course and |
---|
| 288 | course referrer data. If the courses and/or their referrers are removed, the |
---|
| 289 | corresponding tickets remain unchanged. So we do not need any event |
---|
| 290 | triggered actions on course tickets. |
---|
| 291 | """ |
---|
| 292 | grok.implements(ICustomCourseTicket, IStudentNavigation) |
---|
| 293 | grok.provides(ICustomCourseTicket) |
---|
| 294 | |
---|
[13834] | 295 | @property |
---|
| 296 | def grade(self): |
---|
| 297 | """Returns the grade calculated from score. |
---|
| 298 | """ |
---|
[14136] | 299 | return getGradeWeightFromScore(self.total_score, self.student)[0] |
---|
[13834] | 300 | |
---|
| 301 | @property |
---|
| 302 | def weight(self): |
---|
| 303 | """Returns the weight calculated from score. |
---|
| 304 | """ |
---|
[14136] | 305 | return getGradeWeightFromScore(self.total_score, self.student)[1] |
---|
[13834] | 306 | |
---|
[14136] | 307 | @property |
---|
| 308 | def total_score(self): |
---|
| 309 | """Returns ca + score. |
---|
| 310 | """ |
---|
| 311 | if not None in (self.score, self.ca): |
---|
| 312 | return self.score + self.ca |
---|
| 313 | |
---|
[14288] | 314 | @property |
---|
| 315 | def editable_by_lecturer(self): |
---|
| 316 | """True if lecturer is allowed to edit the ticket. |
---|
| 317 | """ |
---|
| 318 | return True |
---|
| 319 | |
---|
[8326] | 320 | CustomCourseTicket = attrs_to_fields(CustomCourseTicket) |
---|
| 321 | |
---|
| 322 | class CustomCourseTicketFactory(CourseTicketFactory): |
---|
| 323 | """A factory for student study levels. |
---|
| 324 | """ |
---|
| 325 | |
---|
| 326 | def __call__(self, *args, **kw): |
---|
| 327 | return CustomCourseTicket() |
---|
| 328 | |
---|
| 329 | def getInterfaces(self): |
---|
| 330 | return implementedBy(CustomCourseTicket) |
---|