[9527] | 1 | ## $Id: viewlets.py 14315 2016-12-06 16:42:02Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2011 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 | |
---|
[11597] | 19 | import grok |
---|
| 20 | from zope.component import getUtility |
---|
[13039] | 21 | from waeup.kofa.interfaces import REGISTERED |
---|
[11597] | 22 | from waeup.kofa.students.interfaces import IStudent, IStudentsUtils |
---|
[11607] | 23 | from waeup.kofa.students.workflow import PAID |
---|
[9870] | 24 | from waeup.kofa.students.viewlets import ( |
---|
[11597] | 25 | AddPreviousPaymentActionButton, AddBalancePaymentActionButton, |
---|
[13380] | 26 | ManageActionButton, StudentBaseDisplayFormPage, |
---|
[14207] | 27 | StudentPassportActionButton, |
---|
| 28 | StudyCourseTranscriptActionButton, |
---|
[14288] | 29 | TranscriptSlipActionButton, |
---|
| 30 | DownloadCSVFileActionButton, |
---|
| 31 | DownloadTicketOverviewActionButton) |
---|
[13039] | 32 | from waeup.kofa.students.browser import StudyLevelDisplayFormPage |
---|
[9527] | 33 | |
---|
[13489] | 34 | from waeup.aaue.students.interfaces import ( |
---|
| 35 | ICustomStudent, ICustomStudentStudyLevel) |
---|
| 36 | from waeup.aaue.students.browser import CustomStudentPersonalDisplayFormPage |
---|
[11597] | 37 | from waeup.aaue.interfaces import MessageFactory as _ |
---|
| 38 | |
---|
[9527] | 39 | class AddPreviousPaymentActionButton(AddPreviousPaymentActionButton): |
---|
| 40 | |
---|
| 41 | @property |
---|
| 42 | def target_url(self): |
---|
| 43 | return '' |
---|
[9870] | 44 | |
---|
[13637] | 45 | #class AddBalancePaymentActionButton(AddBalancePaymentActionButton): |
---|
[9870] | 46 | |
---|
[13637] | 47 | # @property |
---|
| 48 | # def target_url(self): |
---|
| 49 | # return '' |
---|
[11597] | 50 | |
---|
| 51 | class GetMatricNumberActionButton(ManageActionButton): |
---|
| 52 | grok.order(10) |
---|
| 53 | grok.context(IStudent) |
---|
| 54 | grok.view(StudentBaseDisplayFormPage) |
---|
[11603] | 55 | grok.require('waeup.viewStudent') |
---|
| 56 | #grok.require('waeup.manageStudent') |
---|
[11597] | 57 | icon = 'actionicon_count.png' |
---|
| 58 | text = _('Get Matriculation Number') |
---|
| 59 | |
---|
| 60 | @property |
---|
| 61 | def target_url(self): |
---|
| 62 | students_utils = getUtility(IStudentsUtils) |
---|
| 63 | if self.context.matric_number: |
---|
| 64 | return '' |
---|
[12975] | 65 | error, matric_number = students_utils.constructMatricNumber( |
---|
| 66 | self.context) |
---|
[11626] | 67 | if error: |
---|
[11597] | 68 | return '' |
---|
| 69 | return self.view.url(self.view.context, 'get_matric_number') |
---|
[11607] | 70 | |
---|
| 71 | class MatricNumberSlipActionButton(ManageActionButton): |
---|
| 72 | grok.order(10) |
---|
| 73 | grok.context(IStudent) |
---|
| 74 | grok.view(StudentBaseDisplayFormPage) |
---|
| 75 | grok.require('waeup.viewStudent') |
---|
| 76 | icon = 'actionicon_pdf.png' |
---|
| 77 | text = _('Download matriculation number slip') |
---|
| 78 | target = 'matric_number_slip.pdf' |
---|
| 79 | |
---|
| 80 | @property |
---|
| 81 | def target_url(self): |
---|
| 82 | if self.context.state not in (PAID,) or not self.context.is_fresh \ |
---|
| 83 | or not self.context.matric_number: |
---|
| 84 | return '' |
---|
[13039] | 85 | return self.view.url(self.view.context, self.target) |
---|
| 86 | |
---|
| 87 | class CourseRegistrationSlipActionButton(ManageActionButton): |
---|
| 88 | grok.order(5) |
---|
| 89 | grok.context(ICustomStudentStudyLevel) |
---|
| 90 | grok.view(StudyLevelDisplayFormPage) |
---|
| 91 | grok.require('waeup.viewStudent') |
---|
| 92 | icon = 'actionicon_pdf.png' |
---|
| 93 | text = _('Download course registration slip') |
---|
| 94 | target = 'course_registration_slip.pdf' |
---|
| 95 | |
---|
| 96 | @property |
---|
| 97 | def target_url(self): |
---|
| 98 | is_current = self.context.__parent__.is_current |
---|
| 99 | if not is_current: |
---|
| 100 | return '' |
---|
| 101 | if self.context.student.state != REGISTERED \ |
---|
[13051] | 102 | and self.context.student.current_level == self.context.level: |
---|
[13039] | 103 | return '' |
---|
[13380] | 104 | return self.view.url(self.view.context, self.target) |
---|
| 105 | |
---|
[13489] | 106 | class PersonalDataSlipActionButton(ManageActionButton): |
---|
| 107 | grok.order(3) |
---|
| 108 | grok.context(ICustomStudent) |
---|
| 109 | grok.view(CustomStudentPersonalDisplayFormPage) |
---|
| 110 | grok.require('waeup.viewStudent') |
---|
| 111 | icon = 'actionicon_pdf.png' |
---|
| 112 | text = _('Download personal data slip') |
---|
| 113 | target = 'personal_data_slip.pdf' |
---|
| 114 | |
---|
| 115 | @property |
---|
| 116 | def target_url(self): |
---|
| 117 | if not self.context.father_name: |
---|
| 118 | return '' |
---|
| 119 | return self.view.url(self.view.context, self.target) |
---|
| 120 | |
---|
[13380] | 121 | class StudentPassportActionButton(StudentPassportActionButton): |
---|
| 122 | """Inherit from same class in base package, not from kofacustom.nigeria |
---|
| 123 | which requires that no application slip exists. |
---|
| 124 | """ |
---|
[14207] | 125 | |
---|
| 126 | class CustomStudyCourseTranscriptActionButton(StudyCourseTranscriptActionButton): |
---|
[14315] | 127 | #grok.require('waeup.viewStudent') |
---|
[14207] | 128 | grok.name('transcript') |
---|
| 129 | |
---|
| 130 | class CustomTranscriptSlipActionButton(TranscriptSlipActionButton): |
---|
[14315] | 131 | #grok.require('waeup.viewStudent') |
---|
[14207] | 132 | grok.name('transcript_slip') |
---|
[14288] | 133 | |
---|
| 134 | class CustomDownloadCSVFileActionButton(DownloadCSVFileActionButton): |
---|
| 135 | """ 'Download csv file' button for courses. |
---|
| 136 | """ |
---|
| 137 | |
---|
| 138 | @property |
---|
| 139 | def target_url(self): |
---|
| 140 | if self.view.__name__ == 'edit_prev_scores': |
---|
| 141 | return self.view.url(self.view.context, 'download_prev_scores') |
---|
| 142 | return self.view.url(self.view.context, 'download_scores') |
---|
| 143 | |
---|
| 144 | class CustomDownloadTicketOverviewActionButton( |
---|
| 145 | DownloadTicketOverviewActionButton): |
---|
| 146 | """ 'Download ticket overview' button for courses. |
---|
| 147 | """ |
---|
| 148 | |
---|
| 149 | @property |
---|
| 150 | def target_url(self): |
---|
| 151 | if self.view.__name__ == 'edit_prev_scores': |
---|
| 152 | return '' |
---|
| 153 | return self.view.url(self.view.context, 'coursetickets.pdf') |
---|