1 | ## $Id: browser.py 15294 2019-01-10 15:58:13Z 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 | import grok |
---|
19 | from zope.i18n import translate |
---|
20 | from zope.schema.interfaces import ConstraintNotSatisfied |
---|
21 | from zope.component import getUtility |
---|
22 | from hurry.workflow.interfaces import IWorkflowInfo |
---|
23 | from waeup.kofa.interfaces import REQUESTED, IExtFileStore, IKofaUtils |
---|
24 | from waeup.kofa.widgets.datewidget import FriendlyDatetimeDisplayWidget |
---|
25 | from waeup.kofa.browser.layout import KofaEditFormPage |
---|
26 | from waeup.kofa.browser.layout import action, jsaction |
---|
27 | from waeup.kofa.students.browser import ( |
---|
28 | StudyLevelEditFormPage, StudyLevelDisplayFormPage, |
---|
29 | StudentBasePDFFormPage, ExportPDFCourseRegistrationSlip, |
---|
30 | CourseTicketDisplayFormPage, StudentTriggerTransitionFormPage, |
---|
31 | msave, emit_lock_message) |
---|
32 | from waeup.kofa.students.interfaces import IStudentsUtils, ICourseTicket |
---|
33 | from waeup.kofa.students.workflow import FORBIDDEN_POSTGRAD_TRANS |
---|
34 | from kofacustom.nigeria.students.browser import ( |
---|
35 | NigeriaOnlinePaymentDisplayFormPage, |
---|
36 | NigeriaStudentBaseManageFormPage, |
---|
37 | NigeriaStudentClearanceEditFormPage, |
---|
38 | NigeriaOnlinePaymentAddFormPage, |
---|
39 | NigeriaExportPDFPaymentSlip, |
---|
40 | NigeriaExportPDFClearanceSlip, |
---|
41 | NigeriaExportPDFCourseRegistrationSlip |
---|
42 | ) |
---|
43 | |
---|
44 | from kofacustom.coewarri.students.interfaces import ( |
---|
45 | ICustomStudentOnlinePayment, ICustomStudentStudyCourse, |
---|
46 | ICustomStudentStudyLevel) |
---|
47 | from kofacustom.coewarri.interfaces import MessageFactory as _ |
---|
48 | |
---|
49 | class CustomExportPDFCourseRegistrationSlip( |
---|
50 | NigeriaExportPDFCourseRegistrationSlip): |
---|
51 | """Deliver a PDF slip of the context. |
---|
52 | """ |
---|
53 | grok.context(ICustomStudentStudyLevel) |
---|
54 | |
---|
55 | def _signatures(self): |
---|
56 | return ( |
---|
57 | [('I, ' + self.context.student.display_fullname + |
---|
58 | ', do hereby declare that the above information is ' |
---|
59 | 'true and correct. <br>', _('Student\'s Signature'), '<br>')], |
---|
60 | [('', _('Course Adviser'), '<br>')], |
---|
61 | [('', _('Head of Department'), '<br>')], |
---|
62 | [('', _('Dean of School'))] |
---|
63 | ) |
---|
64 | |
---|
65 | def render(self): |
---|
66 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
67 | Code = translate(_('Code'), 'waeup.kofa', target_language=portal_language) |
---|
68 | Title = translate(_('Title'), 'waeup.kofa', target_language=portal_language) |
---|
69 | Dept = translate(_('Dept.'), 'waeup.kofa', target_language=portal_language) |
---|
70 | Faculty = translate(_('Faculty'), 'waeup.kofa', target_language=portal_language) |
---|
71 | Cred = translate(_('Cred.'), 'waeup.kofa', target_language=portal_language) |
---|
72 | CC = translate(_('Cat.'), target_language=portal_language) |
---|
73 | Score = translate(_('Score'), 'waeup.kofa', target_language=portal_language) |
---|
74 | Grade = translate(_('Grade'), 'waeup.kofa', target_language=portal_language) |
---|
75 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
76 | self.request, self.omit_fields) |
---|
77 | students_utils = getUtility(IStudentsUtils) |
---|
78 | |
---|
79 | tabledata = [] |
---|
80 | tableheader = [] |
---|
81 | for i in range(1,7): |
---|
82 | tabledata.append(sorted( |
---|
83 | [value for value in self.context.values() if value.semester == i], |
---|
84 | key=lambda value: str(value.semester) + value.code)) |
---|
85 | tableheader.append([(Code,'code', 2.5), |
---|
86 | (Title,'title', 5), |
---|
87 | (Dept,'dcode', 1.5), (Faculty,'fcode', 1.5), |
---|
88 | (Cred, 'credits', 1.5), |
---|
89 | (CC, 'course_category', 1.2), |
---|
90 | (Score, 'score', 1.5), |
---|
91 | (Grade, 'grade', 1.5), |
---|
92 | ]) |
---|
93 | return students_utils.renderPDF( |
---|
94 | self, 'course_registration_slip.pdf', |
---|
95 | self.context.student, studentview, |
---|
96 | tableheader=tableheader, |
---|
97 | tabledata=tabledata, |
---|
98 | signatures=self._signatures(), |
---|
99 | omit_fields=self.omit_fields |
---|
100 | ) |
---|
101 | |
---|