[14746] | 1 | ## $Id: browser.py 17708 2024-02-29 11:54:11Z 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 | |
---|
[14767] | 19 | from kofacustom.nigeria.remita.studentsbrowser import ( |
---|
[14746] | 20 | module_activated, |
---|
[14757] | 21 | RemitaRequestPaymentStatusPageStudent, |
---|
[14792] | 22 | RemitaVerifyPaymentStatusPageStudent, |
---|
[14746] | 23 | RemitaPageStudent) |
---|
[14767] | 24 | from kofacustom.nigeria.remita.applicantsbrowser import ( |
---|
| 25 | RemitaRequestPaymentStatusPageApplicant, |
---|
[14792] | 26 | RemitaVerifyPaymentStatusPageApplicant, |
---|
[14767] | 27 | RemitaPageApplicant) |
---|
[14746] | 28 | |
---|
[14792] | 29 | # Temporarily we can use the test portal like in kofacustom.nigeria |
---|
[16090] | 30 | MERCHANTID = '2067163382' |
---|
| 31 | HOST = 'login.remita.net' |
---|
| 32 | HTTPS = True |
---|
| 33 | API_KEY = '309418' |
---|
| 34 | SERVICETYPEID = '4430731' |
---|
[14792] | 35 | |
---|
[14757] | 36 | class CustomRemitaRequestPaymentStatusPageStudent( |
---|
| 37 | RemitaRequestPaymentStatusPageStudent): |
---|
[14746] | 38 | """ Request webservice view for the Remita gateway. |
---|
| 39 | """ |
---|
| 40 | |
---|
[14792] | 41 | merchantId = MERCHANTID |
---|
| 42 | host = HOST |
---|
| 43 | https = HTTPS |
---|
| 44 | api_key = API_KEY |
---|
[14746] | 45 | |
---|
[16782] | 46 | def render(self): |
---|
| 47 | if self.context.p_category == 'plag_test'\ |
---|
| 48 | and self.context.p_state == 'paid': |
---|
| 49 | self.redirect(self.url(self.context, 'plagtestinfo')) |
---|
| 50 | else: |
---|
| 51 | self.redirect(self.url(self.context, '@@index')) |
---|
| 52 | return |
---|
| 53 | |
---|
[14792] | 54 | class CustomRemitaVerifyPaymentStatusPageStudent( |
---|
| 55 | RemitaVerifyPaymentStatusPageStudent): |
---|
| 56 | """ Request webservice view for the Remita gateway. |
---|
| 57 | """ |
---|
| 58 | |
---|
| 59 | merchantId = MERCHANTID |
---|
| 60 | host = HOST |
---|
| 61 | https = HTTPS |
---|
| 62 | api_key = API_KEY |
---|
| 63 | |
---|
[14746] | 64 | class CustomRemitaPageStudent(RemitaPageStudent): |
---|
| 65 | """ View which sends a POST request to the Remita payment gateway. |
---|
| 66 | """ |
---|
| 67 | |
---|
[14792] | 68 | merchantId = MERCHANTID |
---|
| 69 | host = HOST |
---|
| 70 | https = HTTPS |
---|
| 71 | api_key = API_KEY |
---|
| 72 | |
---|
[14746] | 73 | init_url = '/remita/ecomm/split/init.reg' |
---|
| 74 | |
---|
[14776] | 75 | @property |
---|
[14795] | 76 | def serviceTypeId(self): |
---|
| 77 | student = self.context.student |
---|
| 78 | if self.context.p_category == 'schoolfee': |
---|
| 79 | if student.current_mode.startswith('dp_'): |
---|
| 80 | return '2067090482' |
---|
[17371] | 81 | if student.current_mode in ('pg_ft', 'pgd_ft'): |
---|
[14795] | 82 | return '2067090691' |
---|
[17374] | 83 | if student.current_mode in ('pg_pt', 'pgd_pt', 'special_pg_pt'): |
---|
[14795] | 84 | return '2067091011' |
---|
| 85 | if student.current_mode == 'ug_sw': |
---|
| 86 | return '2066967204' |
---|
[14809] | 87 | if student.current_mode.endswith('ug_ft'): |
---|
[14795] | 88 | return '2067091395' |
---|
| 89 | if student.current_mode == 'ug_pt': |
---|
| 90 | return '2067091679' |
---|
[14960] | 91 | if student.current_mode == 'special_ft': |
---|
| 92 | return '2750318564' # Module 2 |
---|
[14902] | 93 | if student.is_jupeb: |
---|
[14795] | 94 | return '1946888188' |
---|
[17140] | 95 | if student.current_mode == 'cdl': |
---|
| 96 | return '9541632464' |
---|
[14799] | 97 | if self.context.p_category == 'bed_allocation': |
---|
| 98 | if student.is_postgrad: |
---|
| 99 | return '2067086599' |
---|
| 100 | return '2067089893' |
---|
| 101 | if self.context.p_category == 'hostel_maintenance': |
---|
| 102 | if student.is_postgrad: |
---|
| 103 | return '2067089226' |
---|
| 104 | return '2066966390' |
---|
| 105 | if self.context.p_category == 'clearance': |
---|
| 106 | if student.current_mode.startswith('dp_'): |
---|
| 107 | return '2067080314' |
---|
[14902] | 108 | if student.is_jupeb: |
---|
[14799] | 109 | return '1947201668' |
---|
| 110 | if student.is_postgrad: |
---|
| 111 | return '2067086157' |
---|
[17035] | 112 | if student.current_mode == 'ug_pt': |
---|
| 113 | return '2072765946' |
---|
[17140] | 114 | if student.current_mode == 'cdl': |
---|
| 115 | return '8242101527' |
---|
[14799] | 116 | return '2067089446' |
---|
| 117 | if self.context.p_category == 'jupeb': |
---|
| 118 | return '1947198586' |
---|
[16783] | 119 | if self.context.p_category == 'plag_test': |
---|
[16785] | 120 | return '2051987298' |
---|
[14970] | 121 | #if self.context.p_category == 'pharmd_1': |
---|
| 122 | # return '2750314820' # Clerkship |
---|
[14960] | 123 | if self.context.p_category == 'pharmd_2': |
---|
| 124 | return '2750174184' # Module 1 |
---|
[16388] | 125 | if self.context.p_category == 'medical_quest': |
---|
[16878] | 126 | return '512570052' |
---|
[16877] | 127 | if self.context.p_category == 'flc_modules': |
---|
| 128 | return '757257557' |
---|
[14795] | 129 | return '' |
---|
| 130 | |
---|
[14767] | 131 | def dynamic_provider_amt(self, student): |
---|
| 132 | if student.entry_session >= 2016: |
---|
| 133 | return 2500.0 |
---|
| 134 | return 1500.0 |
---|
| 135 | |
---|
| 136 | @property |
---|
[16090] | 137 | def lineitems(self): |
---|
[14960] | 138 | inst_bankcode = "000" |
---|
| 139 | inst_acct = "0040217361011" |
---|
[14767] | 140 | provider_amt = 0.0 |
---|
[15929] | 141 | student_union = 0.0 |
---|
[16337] | 142 | jupeb_amt = 0.0 |
---|
| 143 | reduced_inst_amt = 0.0 |
---|
| 144 | lab_amt = 0.0 |
---|
[14767] | 145 | if self.context.p_category == 'schoolfee' and \ |
---|
| 146 | not self.context.p_item == 'Balance': |
---|
[14770] | 147 | provider_amt = self.dynamic_provider_amt(self.context.student) |
---|
[15929] | 148 | if self.context.student.current_mode == 'ug_ft': |
---|
[17708] | 149 | student_union = 2500.0 |
---|
[14767] | 150 | elif self.context.p_category == 'clearance': |
---|
[14770] | 151 | provider_amt = self.dynamic_provider_amt(self.context.student) |
---|
[16337] | 152 | |
---|
[15938] | 153 | inst_amt = self.context.amount_auth - provider_amt - student_union |
---|
[16337] | 154 | |
---|
[15929] | 155 | lineitems = ( |
---|
| 156 | {"lineItemsId":"itemid1","beneficiaryName":"Uniben", |
---|
| 157 | "beneficiaryAccount":inst_acct,"bankCode":inst_bankcode, |
---|
| 158 | "beneficiaryAmount":inst_amt,"deductFeeFrom":"1"}, |
---|
| 159 | ) |
---|
[14767] | 160 | if provider_amt: |
---|
[15929] | 161 | lineitems += ({"lineItemsId":"itemid2","beneficiaryName":"WAeAC", |
---|
[14767] | 162 | "beneficiaryAccount":"1014261520","bankCode":"057", |
---|
[15929] | 163 | "beneficiaryAmount":provider_amt,"deductFeeFrom":"0"},) |
---|
| 164 | if student_union: |
---|
| 165 | lineitems += ({"lineItemsId":"itemid3","beneficiaryName":"Student Union", |
---|
| 166 | "beneficiaryAccount":"0025636203","bankCode":"039", |
---|
| 167 | "beneficiaryAmount":student_union,"deductFeeFrom":"0"},) |
---|
| 168 | |
---|
[17235] | 169 | # We overwrite linetems in case of postgrad student school fee payments |
---|
[17237] | 170 | if self.context.student.is_postgrad and self.context.p_category == 'schoolfee': |
---|
[17235] | 171 | microfinance_amt = 0.1 * inst_amt |
---|
| 172 | inst_amt -= microfinance_amt |
---|
| 173 | lineitems = ( |
---|
| 174 | {"lineItemsId":"itemid1","beneficiaryName":"Uniben", |
---|
| 175 | "beneficiaryAccount":inst_acct,"bankCode":inst_bankcode, |
---|
| 176 | "beneficiaryAmount":inst_amt,"deductFeeFrom":"1"}, |
---|
| 177 | ) |
---|
[17255] | 178 | lineitems += ({"lineItemsId":"itemid2","beneficiaryName":"SPGS Scheme", |
---|
[17235] | 179 | "beneficiaryAccount":"0025636203","bankCode":"039", |
---|
| 180 | "beneficiaryAmount":microfinance_amt,"deductFeeFrom":"0"}, |
---|
| 181 | {"lineItemsId":"itemid3","beneficiaryName":"WAeAC", |
---|
| 182 | "beneficiaryAccount":"1014261520","bankCode":"057", |
---|
| 183 | "beneficiaryAmount":provider_amt,"deductFeeFrom":"0"},) |
---|
| 184 | |
---|
[16398] | 185 | ## Disabled on 24/02/21 |
---|
[17590] | 186 | ## Reenabled on 19/09/23 (ticket #1327) |
---|
[16398] | 187 | ## We overwrite linetems in case of JUPEB students |
---|
[17590] | 188 | if self.context.student.is_jupeb: |
---|
| 189 | if self.context.p_category == 'clearance': |
---|
| 190 | provider_amt = self.dynamic_provider_amt(self.context.student) |
---|
| 191 | reduced_inst_amt = 0.7 * inst_amt |
---|
| 192 | jupeb_amt = 0.3 * inst_amt |
---|
| 193 | elif self.context.p_category == 'schoolfee' and \ |
---|
| 194 | not self.context.p_item == 'Balance': |
---|
| 195 | provider_amt = self.dynamic_provider_amt(self.context.student) |
---|
| 196 | #if self.context.student.depcode in ('AGR_JUP','EDU_JUP','ENG_JUP', |
---|
| 197 | # 'LSC_JUP','MED_JUP','PSC_JUP'): |
---|
| 198 | # lab_amt = 10000 |
---|
| 199 | reduced_inst_amt = 0.7 * (inst_amt - lab_amt) |
---|
| 200 | jupeb_amt = 0.3 * (inst_amt - lab_amt) + lab_amt |
---|
| 201 | lineitems = ( |
---|
| 202 | {"lineItemsId":"itemid1","beneficiaryName":"Uniben", |
---|
| 203 | "beneficiaryAccount":inst_acct,"bankCode":inst_bankcode, |
---|
| 204 | "beneficiaryAmount":reduced_inst_amt,"deductFeeFrom":"1"}, |
---|
| 205 | ) |
---|
| 206 | lineitems += ({"lineItemsId":"itemid2","beneficiaryName":"JUPEB", |
---|
[17592] | 207 | "beneficiaryAccount":"0025636203","bankCode":"039", |
---|
[17590] | 208 | "beneficiaryAmount":jupeb_amt,"deductFeeFrom":"0"},) |
---|
| 209 | if provider_amt: |
---|
| 210 | lineitems += ({"lineItemsId":"itemid3","beneficiaryName":"WAeAC", |
---|
| 211 | "beneficiaryAccount":"1014261520","bankCode":"057", |
---|
| 212 | "beneficiaryAmount":provider_amt,"deductFeeFrom":"0"},) |
---|
| 213 | if student_union: |
---|
| 214 | lineitems += ({"lineItemsId":"itemid4","beneficiaryName":"Student Union", |
---|
| 215 | "beneficiaryAccount":"0025636203","bankCode":"039", |
---|
| 216 | "beneficiaryAmount":student_union,"deductFeeFrom":"0"},) |
---|
[16337] | 217 | |
---|
| 218 | |
---|
[14960] | 219 | # Split pharmd school fee payments into 3 parts if students decide to pay the |
---|
| 220 | # entire school fee at once. If the amount is less than N240000, the student |
---|
| 221 | # has obviously paid the first installment of N80000 (pharmd_1) |
---|
[14970] | 222 | # (disabled on 16/03/18) |
---|
| 223 | #if self.context.p_category == 'schoolfee' \ |
---|
| 224 | # and self.context.student.current_mode == 'special_ft' \ |
---|
| 225 | # and self.context.amount_auth >= 240000: |
---|
| 226 | # pcn_amt = 80000.0 |
---|
| 227 | # inst_amt -= pcn_amt |
---|
| 228 | # lineitems = ( |
---|
| 229 | # {"lineItemsId":"itemid1","beneficiaryName":"Uniben", |
---|
| 230 | # "beneficiaryAccount":inst_acct,"bankCode":inst_bankcode, |
---|
| 231 | # "beneficiaryAmount":inst_amt,"deductFeeFrom":"1"}, |
---|
| 232 | # {"lineItemsId":"itemid2","beneficiaryName":"PCN", |
---|
| 233 | # "beneficiaryAccount":"0020197061015","bankCode":inst_bankcode, |
---|
| 234 | # "beneficiaryAmount":pcn_amt,"deductFeeFrom":"0"}, |
---|
| 235 | # {"lineItemsId":"itemid3","beneficiaryName":"WAeAC", |
---|
| 236 | # "beneficiaryAccount":"1014261520","bankCode":"057", |
---|
| 237 | # "beneficiaryAmount":provider_amt,"deductFeeFrom":"0"} |
---|
| 238 | # ) |
---|
[14960] | 239 | self.context.provider_amt = provider_amt |
---|
[15817] | 240 | self.context.net_amt = inst_amt |
---|
[14767] | 241 | return lineitems |
---|
| 242 | |
---|
[14746] | 243 | def update(self): |
---|
[15828] | 244 | if not module_activated( |
---|
| 245 | self.context.student.current_session, self.context): |
---|
[14746] | 246 | return |
---|
[14778] | 247 | self.orderId = self.context.p_id |
---|
| 248 | self.amount = str(self.context.amount_auth) |
---|
[14746] | 249 | error = self.init_update() |
---|
| 250 | if error: |
---|
| 251 | self.flash(error, type='danger') |
---|
| 252 | self.redirect(self.url(self.context, '@@index')) |
---|
| 253 | return |
---|
[15817] | 254 | self.context.r_company = u'remita' |
---|
[14767] | 255 | return |
---|
| 256 | |
---|
| 257 | class CustomRemitaRequestPaymentStatusPageApplicant( |
---|
| 258 | RemitaRequestPaymentStatusPageApplicant): |
---|
| 259 | """ Request webservice view for the Remita gateway. |
---|
| 260 | """ |
---|
| 261 | |
---|
[14792] | 262 | merchantId = MERCHANTID |
---|
| 263 | host = HOST |
---|
| 264 | https = HTTPS |
---|
| 265 | api_key = API_KEY |
---|
[14767] | 266 | |
---|
[14792] | 267 | class CustomRemitaVerifyPaymentStatusPageApplicant( |
---|
| 268 | RemitaVerifyPaymentStatusPageApplicant): |
---|
| 269 | """ Request webservice view for the Remita gateway. |
---|
| 270 | """ |
---|
| 271 | |
---|
| 272 | merchantId = MERCHANTID |
---|
| 273 | host = HOST |
---|
| 274 | https = HTTPS |
---|
| 275 | api_key = API_KEY |
---|
| 276 | |
---|
[14767] | 277 | class CustomRemitaPageApplicant(RemitaPageApplicant): |
---|
| 278 | """ View which sends a POST request to the Remita payment gateway. |
---|
| 279 | """ |
---|
| 280 | |
---|
[14792] | 281 | merchantId = MERCHANTID |
---|
| 282 | host = HOST |
---|
| 283 | https = HTTPS |
---|
| 284 | api_key = API_KEY |
---|
| 285 | |
---|
[14767] | 286 | init_url = '/remita/ecomm/split/init.reg' |
---|
| 287 | |
---|
[14776] | 288 | @property |
---|
[14795] | 289 | def serviceTypeId(self): |
---|
[14799] | 290 | applicant = self.context.__parent__ |
---|
[14800] | 291 | if applicant.__parent__.prefix.startswith('dp'): |
---|
[14813] | 292 | return '2066963437' |
---|
[14832] | 293 | if applicant.__parent__.prefix in ('spft', ): |
---|
[14813] | 294 | return '2067086388' |
---|
[14800] | 295 | if applicant.__parent__.prefix == 'pre': |
---|
[14813] | 296 | return '1946882248' |
---|
[14800] | 297 | if applicant.__parent__.prefix in ('pude','putme','cbt', |
---|
[16230] | 298 | 'ab','ak','akj','ase'): |
---|
[14813] | 299 | return '2066965951' |
---|
[16230] | 300 | if applicant.__parent__.prefix in ('tscs', 'tscf'): |
---|
| 301 | return '698984179' |
---|
[16826] | 302 | if applicant.__parent__.prefix == 'flc': |
---|
[17034] | 303 | return '757257557' |
---|
| 304 | if applicant.__parent__.prefix in ('pt', 'ptext'): |
---|
| 305 | return '2072815846' |
---|
| 306 | if applicant.__parent__.prefix.startswith('pg'): |
---|
| 307 | return '2067086388' |
---|
| 308 | if applicant.__parent__.prefix in ('sandwich'): |
---|
[17140] | 309 | return '2072760654' |
---|
| 310 | if applicant.__parent__.prefix == 'cdl': |
---|
| 311 | return '8197875656' |
---|
[14799] | 312 | return '' |
---|
[14795] | 313 | |
---|
| 314 | @property |
---|
[16090] | 315 | def demo_lineitems(self): |
---|
[14800] | 316 | lineitems = ( |
---|
[14776] | 317 | {"lineItemsId":"itemid1","beneficiaryName":"Klaus Mueller", |
---|
| 318 | "beneficiaryAccount":"6020067886","bankCode":"011", |
---|
| 319 | "beneficiaryAmount":self.context.amount_auth/2,"deductFeeFrom":"1"}, |
---|
| 320 | {"lineItemsId":"itemid2","beneficiaryName":"Werner Rumm", |
---|
| 321 | "beneficiaryAccount":"0360883515","bankCode":"050", |
---|
| 322 | "beneficiaryAmount":self.context.amount_auth/2,"deductFeeFrom":"0"} |
---|
| 323 | ) |
---|
| 324 | return lineitems |
---|
[14770] | 325 | |
---|
[14767] | 326 | @property |
---|
[16090] | 327 | def lineitems(self): |
---|
[17037] | 328 | applicant = self.context.__parent__ |
---|
| 329 | if applicant.applicant_id.startswith('dp'): |
---|
[17034] | 330 | inst_acct = "0040217361038" |
---|
| 331 | else: |
---|
| 332 | inst_acct = "0040217361011" |
---|
[15491] | 333 | provider_amt = 1000.0 |
---|
[17037] | 334 | if applicant.__parent__.prefix == 'pre': |
---|
[16205] | 335 | provider_amt = 2000.0 |
---|
[17037] | 336 | if applicant.__parent__.prefix.startswith('tsc'): |
---|
[16205] | 337 | provider_amt = 1200.0 |
---|
[17037] | 338 | if applicant.order == 'c': |
---|
[16597] | 339 | provider_amt = 1000.0 |
---|
[17037] | 340 | if applicant.__parent__.prefix.startswith('ase'): |
---|
[16205] | 341 | provider_amt = 500.0 |
---|
[17037] | 342 | if applicant.__parent__.prefix == 'pude': |
---|
[16310] | 343 | provider_amt = 500.0 |
---|
[17147] | 344 | if applicant.__parent__.prefix == 'cdl': |
---|
[17454] | 345 | provider_amt = 0.0 |
---|
[17037] | 346 | if applicant.__parent__.prefix == 'cbt': |
---|
[16201] | 347 | provider_amt = 300.0 |
---|
[17037] | 348 | if applicant.__parent__.prefix in ('pt', 'ptext', 'sandwich'): |
---|
| 349 | provider_amt = 2000.0 |
---|
| 350 | if applicant.__parent__.prefix.startswith('pg'): |
---|
| 351 | provider_amt = 2000.0 |
---|
[16205] | 352 | if self.context.p_item == 'Balance': |
---|
| 353 | provider_amt = 0.0 |
---|
[14770] | 354 | inst_amt = self.context.amount_auth - provider_amt |
---|
[14767] | 355 | lineitems = ( |
---|
[14770] | 356 | {"lineItemsId":"itemid1","beneficiaryName":"Uniben", |
---|
[14888] | 357 | "beneficiaryAccount":inst_acct,"bankCode":"000", |
---|
[14770] | 358 | "beneficiaryAmount":inst_amt,"deductFeeFrom":"1"}, |
---|
[14767] | 359 | ) |
---|
[16205] | 360 | if provider_amt: |
---|
| 361 | lineitems += ({"lineItemsId":"itemid2","beneficiaryName":"WAeAC", |
---|
| 362 | "beneficiaryAccount":"1014261520","bankCode":"057", |
---|
| 363 | "beneficiaryAmount":provider_amt,"deductFeeFrom":"0"},) |
---|
[14960] | 364 | self.context.provider_amt = provider_amt |
---|
[15817] | 365 | self.context.net_amt = inst_amt |
---|
[14767] | 366 | return lineitems |
---|
| 367 | |
---|
| 368 | def update(self): |
---|
[15828] | 369 | if not module_activated( |
---|
| 370 | self.context.__parent__.__parent__.year, self.context): |
---|
[14767] | 371 | return |
---|
[14778] | 372 | self.orderId = self.context.p_id |
---|
| 373 | self.amount = str(self.context.amount_auth) |
---|
[14767] | 374 | error = self.init_update() |
---|
| 375 | if error: |
---|
| 376 | self.flash(error, type='danger') |
---|
| 377 | self.redirect(self.url(self.context, '@@index')) |
---|
| 378 | return |
---|
[15817] | 379 | self.context.r_company = u'remita' |
---|
[14746] | 380 | return |
---|