1 | ## $Id: browser.py 16230 2020-09-08 10:09:42Z henrik $ |
---|
2 | ## |
---|
3 | ## Copyright (C) 2017 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 | |
---|
19 | from kofacustom.nigeria.remita.studentsbrowser import ( |
---|
20 | module_activated, |
---|
21 | RemitaRequestPaymentStatusPageStudent, |
---|
22 | RemitaVerifyPaymentStatusPageStudent, |
---|
23 | RemitaPageStudent) |
---|
24 | from kofacustom.nigeria.remita.applicantsbrowser import ( |
---|
25 | RemitaRequestPaymentStatusPageApplicant, |
---|
26 | RemitaVerifyPaymentStatusPageApplicant, |
---|
27 | RemitaPageApplicant) |
---|
28 | |
---|
29 | # Temporarily we can use the test portal like in kofacustom.nigeria |
---|
30 | MERCHANTID = '2067163382' |
---|
31 | HOST = 'login.remita.net' |
---|
32 | HTTPS = True |
---|
33 | API_KEY = '309418' |
---|
34 | SERVICETYPEID = '4430731' |
---|
35 | |
---|
36 | class CustomRemitaRequestPaymentStatusPageStudent( |
---|
37 | RemitaRequestPaymentStatusPageStudent): |
---|
38 | """ Request webservice view for the Remita gateway. |
---|
39 | """ |
---|
40 | |
---|
41 | merchantId = MERCHANTID |
---|
42 | host = HOST |
---|
43 | https = HTTPS |
---|
44 | api_key = API_KEY |
---|
45 | |
---|
46 | class CustomRemitaVerifyPaymentStatusPageStudent( |
---|
47 | RemitaVerifyPaymentStatusPageStudent): |
---|
48 | """ Request webservice view for the Remita gateway. |
---|
49 | """ |
---|
50 | |
---|
51 | merchantId = MERCHANTID |
---|
52 | host = HOST |
---|
53 | https = HTTPS |
---|
54 | api_key = API_KEY |
---|
55 | |
---|
56 | class CustomRemitaPageStudent(RemitaPageStudent): |
---|
57 | """ View which sends a POST request to the Remita payment gateway. |
---|
58 | """ |
---|
59 | |
---|
60 | merchantId = MERCHANTID |
---|
61 | host = HOST |
---|
62 | https = HTTPS |
---|
63 | api_key = API_KEY |
---|
64 | |
---|
65 | init_url = '/remita/ecomm/split/init.reg' |
---|
66 | |
---|
67 | @property |
---|
68 | def serviceTypeId(self): |
---|
69 | student = self.context.student |
---|
70 | if self.context.p_category == 'schoolfee': |
---|
71 | if student.current_mode.startswith('dp_'): |
---|
72 | return '2067090482' |
---|
73 | if student.current_mode == 'pg_ft': |
---|
74 | return '2067090691' |
---|
75 | if student.current_mode.endswith('pg_pt'): |
---|
76 | return '2067091011' |
---|
77 | if student.current_mode == 'ug_sw': |
---|
78 | return '2066967204' |
---|
79 | if student.current_mode.endswith('ug_ft'): |
---|
80 | return '2067091395' |
---|
81 | if student.current_mode == 'ug_pt': |
---|
82 | return '2067091679' |
---|
83 | if student.current_mode == 'special_ft': |
---|
84 | return '2750318564' # Module 2 |
---|
85 | if student.is_jupeb: |
---|
86 | return '1946888188' |
---|
87 | if self.context.p_category == 'bed_allocation': |
---|
88 | if student.is_postgrad: |
---|
89 | return '2067086599' |
---|
90 | return '2067089893' |
---|
91 | if self.context.p_category == 'hostel_maintenance': |
---|
92 | if student.is_postgrad: |
---|
93 | return '2067089226' |
---|
94 | return '2066966390' |
---|
95 | if self.context.p_category == 'clearance': |
---|
96 | if student.current_mode.startswith('dp_'): |
---|
97 | return '2067080314' |
---|
98 | if student.is_jupeb: |
---|
99 | return '1947201668' |
---|
100 | if student.is_postgrad: |
---|
101 | return '2067086157' |
---|
102 | return '2067089446' |
---|
103 | if self.context.p_category == 'jupeb': |
---|
104 | return '1947198586' |
---|
105 | #if self.context.p_category == 'pharmd_1': |
---|
106 | # return '2750314820' # Clerkship |
---|
107 | if self.context.p_category == 'pharmd_2': |
---|
108 | return '2750174184' # Module 1 |
---|
109 | return '' |
---|
110 | |
---|
111 | @property |
---|
112 | def demo_lineitems(self): |
---|
113 | ba1 = self.context.amount_auth / 2 |
---|
114 | ba2 = self.context.amount_auth / 2 |
---|
115 | lineitems = ( |
---|
116 | {"lineItemsId":"itemid1","beneficiaryName":"Klaus Mueller", |
---|
117 | "beneficiaryAccount":"6020067886","bankCode":"011", |
---|
118 | "beneficiaryAmount":str(ba1),"deductFeeFrom":"1"}, |
---|
119 | {"lineItemsId":"itemid2","beneficiaryName":"Werner Rumm", |
---|
120 | "beneficiaryAccount":"0360883515","bankCode":"050", |
---|
121 | "beneficiaryAmount":str(ba2),"deductFeeFrom":"0"} |
---|
122 | ) |
---|
123 | return lineitems |
---|
124 | |
---|
125 | def dynamic_provider_amt(self, student): |
---|
126 | if student.entry_session >= 2016: |
---|
127 | return 2500.0 |
---|
128 | return 1500.0 |
---|
129 | |
---|
130 | @property |
---|
131 | def lineitems(self): |
---|
132 | inst_bankcode = "000" |
---|
133 | inst_acct = "0040217361011" |
---|
134 | provider_amt = 0.0 |
---|
135 | student_union = 0.0 |
---|
136 | if self.context.p_category == 'schoolfee' and \ |
---|
137 | not self.context.p_item == 'Balance': |
---|
138 | provider_amt = self.dynamic_provider_amt(self.context.student) |
---|
139 | if self.context.student.current_mode == 'ug_ft': |
---|
140 | student_union = 1000.0 |
---|
141 | elif self.context.p_category == 'clearance': |
---|
142 | provider_amt = self.dynamic_provider_amt(self.context.student) |
---|
143 | #elif self.context.p_category == 'pharmd_1': |
---|
144 | # inst_acct = "0020197061015" |
---|
145 | # provider_amt = 0.0 |
---|
146 | if self.context.student.is_jupeb \ |
---|
147 | or self.context.student.current_mode == 'dp_ft': |
---|
148 | inst_acct = "0040217361038" |
---|
149 | inst_amt = self.context.amount_auth - provider_amt - student_union |
---|
150 | lineitems = ( |
---|
151 | {"lineItemsId":"itemid1","beneficiaryName":"Uniben", |
---|
152 | "beneficiaryAccount":inst_acct,"bankCode":inst_bankcode, |
---|
153 | "beneficiaryAmount":inst_amt,"deductFeeFrom":"1"}, |
---|
154 | ) |
---|
155 | if provider_amt: |
---|
156 | lineitems += ({"lineItemsId":"itemid2","beneficiaryName":"WAeAC", |
---|
157 | "beneficiaryAccount":"1014261520","bankCode":"057", |
---|
158 | "beneficiaryAmount":provider_amt,"deductFeeFrom":"0"},) |
---|
159 | if student_union: |
---|
160 | lineitems += ({"lineItemsId":"itemid3","beneficiaryName":"Student Union", |
---|
161 | "beneficiaryAccount":"0025636203","bankCode":"039", |
---|
162 | "beneficiaryAmount":student_union,"deductFeeFrom":"0"},) |
---|
163 | |
---|
164 | # Split pharmd school fee payments into 3 parts if students decide to pay the |
---|
165 | # entire school fee at once. If the amount is less than N240000, the student |
---|
166 | # has obviously paid the first installment of N80000 (pharmd_1) |
---|
167 | # (disabled on 16/03/18) |
---|
168 | #if self.context.p_category == 'schoolfee' \ |
---|
169 | # and self.context.student.current_mode == 'special_ft' \ |
---|
170 | # and self.context.amount_auth >= 240000: |
---|
171 | # pcn_amt = 80000.0 |
---|
172 | # inst_amt -= pcn_amt |
---|
173 | # lineitems = ( |
---|
174 | # {"lineItemsId":"itemid1","beneficiaryName":"Uniben", |
---|
175 | # "beneficiaryAccount":inst_acct,"bankCode":inst_bankcode, |
---|
176 | # "beneficiaryAmount":inst_amt,"deductFeeFrom":"1"}, |
---|
177 | # {"lineItemsId":"itemid2","beneficiaryName":"PCN", |
---|
178 | # "beneficiaryAccount":"0020197061015","bankCode":inst_bankcode, |
---|
179 | # "beneficiaryAmount":pcn_amt,"deductFeeFrom":"0"}, |
---|
180 | # {"lineItemsId":"itemid3","beneficiaryName":"WAeAC", |
---|
181 | # "beneficiaryAccount":"1014261520","bankCode":"057", |
---|
182 | # "beneficiaryAmount":provider_amt,"deductFeeFrom":"0"} |
---|
183 | # ) |
---|
184 | self.context.provider_amt = provider_amt |
---|
185 | self.context.net_amt = inst_amt |
---|
186 | return lineitems |
---|
187 | |
---|
188 | def update(self): |
---|
189 | if not module_activated( |
---|
190 | self.context.student.current_session, self.context): |
---|
191 | return |
---|
192 | self.orderId = self.context.p_id |
---|
193 | self.amount = str(self.context.amount_auth) |
---|
194 | error = self.init_update() |
---|
195 | if error: |
---|
196 | self.flash(error, type='danger') |
---|
197 | self.redirect(self.url(self.context, '@@index')) |
---|
198 | return |
---|
199 | self.context.r_company = u'remita' |
---|
200 | return |
---|
201 | |
---|
202 | class CustomRemitaRequestPaymentStatusPageApplicant( |
---|
203 | RemitaRequestPaymentStatusPageApplicant): |
---|
204 | """ Request webservice view for the Remita gateway. |
---|
205 | """ |
---|
206 | |
---|
207 | merchantId = MERCHANTID |
---|
208 | host = HOST |
---|
209 | https = HTTPS |
---|
210 | api_key = API_KEY |
---|
211 | |
---|
212 | class CustomRemitaVerifyPaymentStatusPageApplicant( |
---|
213 | RemitaVerifyPaymentStatusPageApplicant): |
---|
214 | """ Request webservice view for the Remita gateway. |
---|
215 | """ |
---|
216 | |
---|
217 | merchantId = MERCHANTID |
---|
218 | host = HOST |
---|
219 | https = HTTPS |
---|
220 | api_key = API_KEY |
---|
221 | |
---|
222 | class CustomRemitaPageApplicant(RemitaPageApplicant): |
---|
223 | """ View which sends a POST request to the Remita payment gateway. |
---|
224 | """ |
---|
225 | |
---|
226 | merchantId = MERCHANTID |
---|
227 | host = HOST |
---|
228 | https = HTTPS |
---|
229 | api_key = API_KEY |
---|
230 | |
---|
231 | init_url = '/remita/ecomm/split/init.reg' |
---|
232 | |
---|
233 | @property |
---|
234 | def serviceTypeId(self): |
---|
235 | applicant = self.context.__parent__ |
---|
236 | if applicant.__parent__.prefix.startswith('dp'): |
---|
237 | return '2066963437' |
---|
238 | if applicant.__parent__.prefix in ('spft', ): |
---|
239 | return '2067086388' |
---|
240 | if applicant.__parent__.prefix == 'pre': |
---|
241 | return '1946882248' |
---|
242 | if applicant.__parent__.prefix in ('pude','putme','cbt', |
---|
243 | 'ab','ak','akj','ase'): |
---|
244 | return '2066965951' |
---|
245 | if applicant.__parent__.prefix in ('tscs', 'tscf'): |
---|
246 | return '698984179' |
---|
247 | return '' |
---|
248 | |
---|
249 | @property |
---|
250 | def demo_lineitems(self): |
---|
251 | lineitems = ( |
---|
252 | {"lineItemsId":"itemid1","beneficiaryName":"Klaus Mueller", |
---|
253 | "beneficiaryAccount":"6020067886","bankCode":"011", |
---|
254 | "beneficiaryAmount":self.context.amount_auth/2,"deductFeeFrom":"1"}, |
---|
255 | {"lineItemsId":"itemid2","beneficiaryName":"Werner Rumm", |
---|
256 | "beneficiaryAccount":"0360883515","bankCode":"050", |
---|
257 | "beneficiaryAmount":self.context.amount_auth/2,"deductFeeFrom":"0"} |
---|
258 | ) |
---|
259 | return lineitems |
---|
260 | |
---|
261 | @property |
---|
262 | def lineitems(self): |
---|
263 | provider_amt = 1000.0 |
---|
264 | if self.context.__parent__.applicant_id.startswith('pre'): |
---|
265 | provider_amt = 2000.0 |
---|
266 | if self.context.__parent__.applicant_id.startswith('tsc'): |
---|
267 | provider_amt = 1200.0 |
---|
268 | if self.context.__parent__.applicant_id.startswith('ase'): |
---|
269 | provider_amt = 500.0 |
---|
270 | if self.context.__parent__.applicant_id.startswith('dp'): |
---|
271 | inst_acct = "0040217361038" |
---|
272 | else: |
---|
273 | inst_acct = "0040217361011" |
---|
274 | if self.context.__parent__.applicant_id.startswith('cbt'): |
---|
275 | provider_amt = 300.0 |
---|
276 | if self.context.p_item == 'Balance': |
---|
277 | provider_amt = 0.0 |
---|
278 | inst_amt = self.context.amount_auth - provider_amt |
---|
279 | lineitems = ( |
---|
280 | {"lineItemsId":"itemid1","beneficiaryName":"Uniben", |
---|
281 | "beneficiaryAccount":inst_acct,"bankCode":"000", |
---|
282 | "beneficiaryAmount":inst_amt,"deductFeeFrom":"1"}, |
---|
283 | ) |
---|
284 | if provider_amt: |
---|
285 | lineitems += ({"lineItemsId":"itemid2","beneficiaryName":"WAeAC", |
---|
286 | "beneficiaryAccount":"1014261520","bankCode":"057", |
---|
287 | "beneficiaryAmount":provider_amt,"deductFeeFrom":"0"},) |
---|
288 | |
---|
289 | self.context.provider_amt = provider_amt |
---|
290 | self.context.net_amt = inst_amt |
---|
291 | return lineitems |
---|
292 | |
---|
293 | def update(self): |
---|
294 | if not module_activated( |
---|
295 | self.context.__parent__.__parent__.year, self.context): |
---|
296 | return |
---|
297 | self.orderId = self.context.p_id |
---|
298 | self.amount = str(self.context.amount_auth) |
---|
299 | error = self.init_update() |
---|
300 | if error: |
---|
301 | self.flash(error, type='danger') |
---|
302 | self.redirect(self.url(self.context, '@@index')) |
---|
303 | return |
---|
304 | self.context.r_company = u'remita' |
---|
305 | return |
---|