[8012] | 1 | ## $Id: browser.py 8090 2012-04-10 09:17: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 | """UI components for basic applicants and related components. |
---|
| 19 | """ |
---|
| 20 | import grok |
---|
| 21 | from waeup.kofa.widgets.datewidget import ( |
---|
| 22 | FriendlyDateWidget, FriendlyDateDisplayWidget, |
---|
| 23 | FriendlyDatetimeDisplayWidget) |
---|
[8076] | 24 | from waeup.uniben.widgets.phonewidget import PhoneWidget |
---|
[8090] | 25 | from waeup.kofa.applicants.interfaces import ( |
---|
| 26 | IApplicantRegisterUpdate, IApplicant, IApplicantEdit) |
---|
[8012] | 27 | from waeup.kofa.applicants.browser import (ApplicantDisplayFormPage, |
---|
[8017] | 28 | OnlinePaymentCallbackPage, ExportPDFPage, |
---|
[8090] | 29 | ApplicantManageFormPage, ApplicantEditFormPage, |
---|
| 30 | ApplicantRegistrationPage, ApplicantAddFormPage) |
---|
[8012] | 31 | from waeup.kofa.applicants.viewlets import RequestCallbackActionButton |
---|
[8017] | 32 | from waeup.kofa.applicants.pdf import PDFApplicationSlip |
---|
[8020] | 33 | from waeup.uniben.applicants.interfaces import ( |
---|
[8017] | 34 | IPGApplicant, IUGApplicant, IPGApplicantEdit, IUGApplicantEdit) |
---|
[8020] | 35 | from waeup.uniben.interfaces import MessageFactory as _ |
---|
[8012] | 36 | |
---|
| 37 | class RequestCallbackActionButton(RequestCallbackActionButton): |
---|
| 38 | """ Do not display the base package callback button in custom pages. |
---|
| 39 | """ |
---|
| 40 | @property |
---|
| 41 | def target_url(self): |
---|
| 42 | return '' |
---|
| 43 | |
---|
| 44 | class OnlinePaymentCallbackPage(OnlinePaymentCallbackPage): |
---|
| 45 | """ Neutralize callback simulation view |
---|
| 46 | """ |
---|
| 47 | def update(self): |
---|
| 48 | return |
---|
| 49 | |
---|
[8017] | 50 | class PDFApplicationSlip(PDFApplicationSlip): |
---|
[8012] | 51 | |
---|
[8017] | 52 | @property |
---|
| 53 | def form_fields(self): |
---|
| 54 | target = getattr(self.context.__parent__, 'prefix', None) |
---|
| 55 | if target is not None and target.startswith('pg'): |
---|
| 56 | form_fields = grok.AutoFields(IPGApplicant).omit( |
---|
| 57 | 'locked', 'course_admitted') |
---|
| 58 | else: |
---|
| 59 | form_fields = grok.AutoFields(IUGApplicant).omit( |
---|
| 60 | 'locked', 'course_admitted') |
---|
| 61 | form_fields[ |
---|
| 62 | 'date_of_birth'].custom_widget = FriendlyDateDisplayWidget('le') |
---|
| 63 | return form_fields |
---|
[8012] | 64 | |
---|
[8090] | 65 | class ApplicantAddFormPage(ApplicantAddFormPage): |
---|
| 66 | """Add-form to add an applicant. |
---|
| 67 | """ |
---|
| 68 | form_fields = grok.AutoFields(IApplicant).select( |
---|
| 69 | 'firstname', 'middlename', 'lastname', |
---|
| 70 | 'email', 'phone') |
---|
| 71 | form_fields['phone'].custom_widget = PhoneWidget |
---|
| 72 | |
---|
[8012] | 73 | class ApplicantDisplayFormPage(ApplicantDisplayFormPage): |
---|
[8017] | 74 | """A display view for applicant data. |
---|
| 75 | """ |
---|
[8012] | 76 | |
---|
| 77 | @property |
---|
| 78 | def form_fields(self): |
---|
| 79 | target = getattr(self.context.__parent__, 'prefix', None) |
---|
| 80 | if target is not None and target.startswith('pg'): |
---|
| 81 | form_fields = grok.AutoFields(IPGApplicant).omit( |
---|
| 82 | 'locked', 'course_admitted', 'password') |
---|
| 83 | else: |
---|
| 84 | form_fields = grok.AutoFields(IUGApplicant).omit( |
---|
| 85 | 'locked', 'course_admitted', 'password') |
---|
[8017] | 86 | form_fields[ |
---|
| 87 | 'date_of_birth'].custom_widget = FriendlyDateDisplayWidget('le') |
---|
[8012] | 88 | return form_fields |
---|
| 89 | |
---|
| 90 | class ApplicantManageFormPage(ApplicantManageFormPage): |
---|
| 91 | """A full edit view for applicant data. |
---|
| 92 | """ |
---|
[8017] | 93 | |
---|
| 94 | @property |
---|
| 95 | def form_fields(self): |
---|
| 96 | target = getattr(self.context.__parent__, 'prefix', None) |
---|
| 97 | if target is not None and target.startswith('pg'): |
---|
| 98 | form_fields = grok.AutoFields(IPGApplicant) |
---|
[8051] | 99 | form_fields[ |
---|
| 100 | 'emp_start'].custom_widget = FriendlyDateWidget('le-year') |
---|
| 101 | form_fields[ |
---|
| 102 | 'emp_end'].custom_widget = FriendlyDateWidget('le-year') |
---|
| 103 | form_fields[ |
---|
| 104 | 'emp2_start'].custom_widget = FriendlyDateWidget('le-year') |
---|
| 105 | form_fields[ |
---|
| 106 | 'emp2_end'].custom_widget = FriendlyDateWidget('le-year') |
---|
[8017] | 107 | else: |
---|
| 108 | form_fields = grok.AutoFields(IUGApplicant) |
---|
| 109 | form_fields[ |
---|
| 110 | 'date_of_birth'].custom_widget = FriendlyDateWidget('le-year') |
---|
| 111 | form_fields['phone'].custom_widget = PhoneWidget |
---|
| 112 | form_fields['student_id'].for_display = True |
---|
| 113 | form_fields['applicant_id'].for_display = True |
---|
| 114 | return form_fields |
---|
[8012] | 115 | |
---|
[8017] | 116 | class ApplicantEditFormPage(ApplicantEditFormPage): |
---|
[8012] | 117 | """An applicant-centered edit view for applicant data. |
---|
| 118 | """ |
---|
[8017] | 119 | |
---|
| 120 | @property |
---|
| 121 | def form_fields(self): |
---|
| 122 | target = getattr(self.context.__parent__, 'prefix', None) |
---|
| 123 | if target is not None and target.startswith('pg'): |
---|
| 124 | form_fields = grok.AutoFields(IPGApplicantEdit).omit( |
---|
| 125 | 'locked', 'course_admitted', 'student_id', |
---|
[8051] | 126 | 'screening_score', 'screening_venue' |
---|
[8017] | 127 | ) |
---|
[8051] | 128 | form_fields[ |
---|
| 129 | 'emp_start'].custom_widget = FriendlyDateWidget('le-year') |
---|
| 130 | form_fields[ |
---|
| 131 | 'emp_end'].custom_widget = FriendlyDateWidget('le-year') |
---|
| 132 | form_fields[ |
---|
| 133 | 'emp2_start'].custom_widget = FriendlyDateWidget('le-year') |
---|
| 134 | form_fields[ |
---|
| 135 | 'emp2_end'].custom_widget = FriendlyDateWidget('le-year') |
---|
[8017] | 136 | else: |
---|
| 137 | form_fields = grok.AutoFields(IUGApplicantEdit).omit( |
---|
| 138 | 'locked', 'course_admitted', 'student_id', |
---|
[8051] | 139 | 'screening_score' |
---|
[8017] | 140 | ) |
---|
| 141 | form_fields[ |
---|
| 142 | 'date_of_birth'].custom_widget = FriendlyDateWidget('le-year') |
---|
| 143 | form_fields['phone'].custom_widget = PhoneWidget |
---|
| 144 | form_fields['applicant_id'].for_display = True |
---|
[8051] | 145 | form_fields['reg_number'].for_display = True |
---|
[8017] | 146 | return form_fields |
---|
[8090] | 147 | |
---|
| 148 | class ApplicantRegistrationPage(ApplicantRegistrationPage): |
---|
| 149 | """Captcha'd registration page for applicants. |
---|
| 150 | """ |
---|
| 151 | |
---|
| 152 | @property |
---|
| 153 | def form_fields(self): |
---|
| 154 | form_fields = None |
---|
| 155 | if self.context.mode == 'create': |
---|
| 156 | form_fields = grok.AutoFields(IApplicantEdit).select( |
---|
| 157 | 'firstname', 'middlename', 'lastname', 'email', 'phone') |
---|
| 158 | form_fields['phone'].custom_widget = PhoneWidget |
---|
| 159 | elif self.context.mode == 'update': |
---|
| 160 | form_fields = grok.AutoFields(IApplicantRegisterUpdate).select( |
---|
| 161 | 'firstname','reg_number','email') |
---|
| 162 | return form_fields |
---|