[17010] | 1 | ## $Id: viewlets.py 17254 2022-12-30 09:25:50Z henrik $ |
---|
[16993] | 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 | import grok |
---|
| 19 | from waeup.kofa.interfaces import IKofaObject |
---|
[17091] | 20 | from waeup.kofa.browser.viewlets import ManageActionButton |
---|
[16993] | 21 | from waeup.kofa.applicants.viewlets import ApplicantsAuthTab |
---|
[17216] | 22 | from waeup.kofa.applicants.browser import OnlinePaymentDisplayFormPage |
---|
| 23 | from kofacustom.lpng.applicants.interfaces import ( |
---|
| 24 | ICustomApplicant, ICustomApplicantOnlinePayment) |
---|
[17190] | 25 | from kofacustom.lpng.applicants.browser import (ApplicantDisplayFormPage, |
---|
| 26 | ApplicantEditFormPage) |
---|
[16993] | 27 | |
---|
| 28 | from kofacustom.lpng.interfaces import MessageFactory as _ |
---|
| 29 | |
---|
| 30 | grok.context(IKofaObject) # Make IKofaObject the default context |
---|
| 31 | |
---|
| 32 | class ApplicantsAnonTab(ApplicantsAuthTab): |
---|
| 33 | """Applicants tab in primary navigation. |
---|
| 34 | |
---|
| 35 | Do not display the tab. |
---|
| 36 | """ |
---|
| 37 | grok.require('waeup.Anonymous') |
---|
| 38 | tab_title = _(u'Application') |
---|
| 39 | |
---|
| 40 | @property |
---|
| 41 | def link_target(self): |
---|
[17091] | 42 | return |
---|
| 43 | |
---|
| 44 | class SelectPunitActionButton(ManageActionButton): |
---|
[17190] | 45 | grok.order(2) |
---|
[17091] | 46 | grok.context(ICustomApplicant) |
---|
| 47 | grok.require('waeup.handleApplication') |
---|
| 48 | grok.view(ApplicantDisplayFormPage) |
---|
| 49 | icon = 'actionicon_polling.png' |
---|
| 50 | text = _('Locate Polling Unit') |
---|
[17190] | 51 | target ='punitformpage' |
---|
| 52 | |
---|
| 53 | class MakeUSSDDonationActionButton(ManageActionButton): |
---|
| 54 | grok.order(1) |
---|
| 55 | grok.context(ICustomApplicant) |
---|
| 56 | grok.require('waeup.handleApplication') |
---|
| 57 | grok.view(ApplicantDisplayFormPage) |
---|
| 58 | icon = 'actionicon_donate.png' |
---|
[17216] | 59 | text = _('Make Donation') |
---|
| 60 | target ='addbp' |
---|
[17190] | 61 | |
---|
| 62 | class MakeUSSDDonationActionButton2(MakeUSSDDonationActionButton): |
---|
[17216] | 63 | grok.view(ApplicantEditFormPage) |
---|
| 64 | |
---|
| 65 | class MakeUSSDDonationActionButton3(ManageActionButton): |
---|
| 66 | grok.order(1) |
---|
| 67 | grok.context(ICustomApplicantOnlinePayment) |
---|
| 68 | grok.view(OnlinePaymentDisplayFormPage) |
---|
| 69 | grok.require('waeup.payApplicant') |
---|
| 70 | icon = 'actionicon_pay.png' |
---|
[17220] | 71 | text = _('Pay via USSD') |
---|
[17216] | 72 | target = 'ussdinfo' |
---|
| 73 | |
---|
| 74 | @property |
---|
| 75 | def target_url(self): |
---|
| 76 | if self.context.p_state != 'unpaid': |
---|
| 77 | return '' |
---|
[17254] | 78 | if self.context.p_currency != 'NGN': |
---|
| 79 | return '' |
---|
[17216] | 80 | if self.context.amount_auth == 0: |
---|
| 81 | return '' |
---|
| 82 | return self.view.url(self.view.context, self.target) |
---|