1 | ## $Id: viewlets.py 17302 2023-01-17 07:29:23Z 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 | import grok |
---|
19 | from waeup.kofa.interfaces import IKofaObject |
---|
20 | from waeup.kofa.browser.viewlets import ManageActionButton |
---|
21 | from waeup.kofa.applicants.viewlets import ApplicantsAuthTab |
---|
22 | from waeup.kofa.applicants.browser import OnlinePaymentDisplayFormPage |
---|
23 | from kofacustom.lpng.applicants.interfaces import ( |
---|
24 | ICustomApplicant, ICustomApplicantOnlinePayment) |
---|
25 | from kofacustom.lpng.applicants.browser import (ApplicantDisplayFormPage, |
---|
26 | ApplicantEditFormPage) |
---|
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): |
---|
42 | return |
---|
43 | |
---|
44 | class SelectPunitActionButton(ManageActionButton): |
---|
45 | grok.order(2) |
---|
46 | grok.context(ICustomApplicant) |
---|
47 | grok.require('waeup.handleApplication') |
---|
48 | grok.view(ApplicantDisplayFormPage) |
---|
49 | icon = 'actionicon_polling.png' |
---|
50 | text = _('Locate Polling Unit') |
---|
51 | target ='punitformpage' |
---|
52 | |
---|
53 | class MakeDonationActionButton(ManageActionButton): |
---|
54 | grok.order(1) |
---|
55 | grok.context(ICustomApplicant) |
---|
56 | grok.require('waeup.handleApplication') |
---|
57 | grok.view(ApplicantDisplayFormPage) |
---|
58 | icon = 'actionicon_donate.png' |
---|
59 | text = _('Make Donation') |
---|
60 | target ='addbp' |
---|
61 | |
---|
62 | class MakeDonationActionButton2(MakeDonationActionButton): |
---|
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' |
---|
71 | text = _('Pay via USSD') |
---|
72 | target = 'ussdinfo' |
---|
73 | |
---|
74 | @property |
---|
75 | def target_url(self): |
---|
76 | # diabled on 17/01/2023 |
---|
77 | return '' |
---|
78 | if self.context.p_state != 'unpaid': |
---|
79 | return '' |
---|
80 | if self.context.p_currency != 'NGN': |
---|
81 | return '' |
---|
82 | if self.context.amount_auth == 0: |
---|
83 | return '' |
---|
84 | return self.view.url(self.view.context, self.target) |
---|