[8911] | 1 | ## $Id: browser.py 9181 2012-09-13 21:02:57Z 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 |
---|
[9156] | 20 | from hurry.workflow.interfaces import IWorkflowInfo |
---|
| 21 | from waeup.kofa.interfaces import ADMITTED |
---|
| 22 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[8911] | 23 | from waeup.kofa.widgets.datewidget import FriendlyDatetimeDisplayWidget |
---|
[9156] | 24 | from waeup.kofa.students.browser import StartClearancePage |
---|
[8911] | 25 | from kofacustom.nigeria.students.browser import ( |
---|
| 26 | NigeriaOnlinePaymentDisplayFormPage, |
---|
| 27 | NigeriaOnlinePaymentAddFormPage, |
---|
[9181] | 28 | NigeriaExportPDFPaymentSlipPage, |
---|
| 29 | NigeriaStudentClearanceEditFormPage) |
---|
[8911] | 30 | |
---|
[8913] | 31 | from waeup.fceokene.students.interfaces import ICustomStudentOnlinePayment |
---|
[8911] | 32 | |
---|
| 33 | class CustomOnlinePaymentDisplayFormPage(NigeriaOnlinePaymentDisplayFormPage): |
---|
| 34 | """ Page to view an online payment ticket |
---|
| 35 | """ |
---|
| 36 | grok.context(ICustomStudentOnlinePayment) |
---|
| 37 | form_fields = grok.AutoFields(ICustomStudentOnlinePayment) |
---|
| 38 | form_fields[ |
---|
| 39 | 'creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 40 | form_fields[ |
---|
| 41 | 'payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 42 | |
---|
| 43 | class CustomOnlinePaymentAddFormPage(NigeriaOnlinePaymentAddFormPage): |
---|
| 44 | """ Page to add an online payment ticket |
---|
| 45 | """ |
---|
| 46 | form_fields = grok.AutoFields(ICustomStudentOnlinePayment).select( |
---|
| 47 | 'p_category') |
---|
| 48 | |
---|
| 49 | class CustomExportPDFPaymentSlipPage(NigeriaExportPDFPaymentSlipPage): |
---|
| 50 | """Deliver a PDF slip of the context. |
---|
| 51 | """ |
---|
| 52 | grok.context(ICustomStudentOnlinePayment) |
---|
| 53 | form_fields = grok.AutoFields(ICustomStudentOnlinePayment) |
---|
| 54 | form_fields['creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[9156] | 55 | form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 56 | |
---|
| 57 | class CustomStartClearancePage(StartClearancePage): |
---|
| 58 | |
---|
| 59 | grok.template('startclearance') |
---|
| 60 | |
---|
| 61 | def update(self, SUBMIT=None): |
---|
| 62 | if not self.context.state == ADMITTED: |
---|
| 63 | self.flash(_("Wrong state")) |
---|
| 64 | self.redirect(self.url(self.context)) |
---|
| 65 | return |
---|
| 66 | if not self.portrait_uploaded: |
---|
| 67 | self.flash(_("No portrait uploaded.")) |
---|
| 68 | self.redirect(self.url(self.context, 'change_portrait')) |
---|
| 69 | return |
---|
| 70 | if not self.all_required_fields_filled: |
---|
| 71 | self.flash(_("Not all required fields filled.")) |
---|
| 72 | self.redirect(self.url(self.context, 'edit_base')) |
---|
| 73 | return |
---|
| 74 | if SUBMIT is None: |
---|
| 75 | return |
---|
| 76 | IWorkflowInfo(self.context).fireTransition('start_clearance') |
---|
| 77 | self.flash(_('Clearance process has been started.')) |
---|
| 78 | self.redirect(self.url(self.context,'cedit')) |
---|
[9181] | 79 | return |
---|
| 80 | |
---|
| 81 | class CustomStudentClearanceEditFormPage(NigeriaStudentClearanceEditFormPage): |
---|
| 82 | """ View to edit student clearance data by student |
---|
| 83 | """ |
---|
| 84 | |
---|
| 85 | def dataNotComplete(self): |
---|
| 86 | return False |
---|