[14746] | 1 | ## $Id: browser.py 15817 2019-11-17 16:07:29Z 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 |
---|
[14795] | 30 | MERCHANTID = '2067163382' |
---|
| 31 | HOST = 'login.remita.net' |
---|
| 32 | HTTPS = True |
---|
| 33 | API_KEY = '309418' |
---|
[14792] | 34 | SERVICETYPEID = '4430731' |
---|
| 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 | |
---|
[14792] | 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 | |
---|
[14746] | 56 | class CustomRemitaPageStudent(RemitaPageStudent): |
---|
| 57 | """ View which sends a POST request to the Remita payment gateway. |
---|
| 58 | """ |
---|
| 59 | |
---|
[14792] | 60 | merchantId = MERCHANTID |
---|
| 61 | host = HOST |
---|
| 62 | https = HTTPS |
---|
| 63 | api_key = API_KEY |
---|
| 64 | |
---|
[14746] | 65 | init_url = '/remita/ecomm/split/init.reg' |
---|
| 66 | |
---|
[14776] | 67 | @property |
---|
[14795] | 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' |
---|
[14852] | 75 | if student.current_mode.endswith('pg_pt'): |
---|
[14795] | 76 | return '2067091011' |
---|
| 77 | if student.current_mode == 'ug_sw': |
---|
| 78 | return '2066967204' |
---|
[14809] | 79 | if student.current_mode.endswith('ug_ft'): |
---|
[14795] | 80 | return '2067091395' |
---|
| 81 | if student.current_mode == 'ug_pt': |
---|
| 82 | return '2067091679' |
---|
[14960] | 83 | if student.current_mode == 'special_ft': |
---|
| 84 | return '2750318564' # Module 2 |
---|
[14902] | 85 | if student.is_jupeb: |
---|
[14795] | 86 | return '1946888188' |
---|
[14799] | 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' |
---|
[14902] | 98 | if student.is_jupeb: |
---|
[14799] | 99 | return '1947201668' |
---|
| 100 | if student.is_postgrad: |
---|
| 101 | return '2067086157' |
---|
| 102 | return '2067089446' |
---|
| 103 | if self.context.p_category == 'jupeb': |
---|
| 104 | return '1947198586' |
---|
[14970] | 105 | #if self.context.p_category == 'pharmd_1': |
---|
| 106 | # return '2750314820' # Clerkship |
---|
[14960] | 107 | if self.context.p_category == 'pharmd_2': |
---|
| 108 | return '2750174184' # Module 1 |
---|
[14795] | 109 | return '' |
---|
| 110 | |
---|
| 111 | @property |
---|
| 112 | def demo_lineitems(self): |
---|
[14776] | 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 |
---|
[14751] | 124 | |
---|
[14767] | 125 | def dynamic_provider_amt(self, student): |
---|
| 126 | if student.entry_session >= 2016: |
---|
| 127 | return 2500.0 |
---|
| 128 | return 1500.0 |
---|
| 129 | |
---|
| 130 | @property |
---|
[14795] | 131 | def lineitems(self): |
---|
[14960] | 132 | inst_bankcode = "000" |
---|
| 133 | inst_acct = "0040217361011" |
---|
[14767] | 134 | provider_amt = 0.0 |
---|
| 135 | if self.context.p_category == 'schoolfee' and \ |
---|
| 136 | not self.context.p_item == 'Balance': |
---|
[14770] | 137 | provider_amt = self.dynamic_provider_amt(self.context.student) |
---|
[14767] | 138 | elif self.context.p_category == 'clearance': |
---|
[14770] | 139 | provider_amt = self.dynamic_provider_amt(self.context.student) |
---|
[14970] | 140 | #elif self.context.p_category == 'pharmd_1': |
---|
| 141 | # inst_acct = "0020197061015" |
---|
| 142 | # provider_amt = 0.0 |
---|
[14902] | 143 | if self.context.student.is_jupeb \ |
---|
[14888] | 144 | or self.context.student.current_mode == 'dp_ft': |
---|
[14872] | 145 | inst_acct = "0040217361038" |
---|
[14960] | 146 | inst_amt = self.context.amount_auth - provider_amt |
---|
[14767] | 147 | if provider_amt: |
---|
| 148 | lineitems = ( |
---|
| 149 | {"lineItemsId":"itemid1","beneficiaryName":"Uniben", |
---|
[14960] | 150 | "beneficiaryAccount":inst_acct,"bankCode":inst_bankcode, |
---|
[14767] | 151 | "beneficiaryAmount":inst_amt,"deductFeeFrom":"1"}, |
---|
| 152 | {"lineItemsId":"itemid2","beneficiaryName":"WAeAC", |
---|
| 153 | "beneficiaryAccount":"1014261520","bankCode":"057", |
---|
| 154 | "beneficiaryAmount":provider_amt,"deductFeeFrom":"0"} |
---|
| 155 | ) |
---|
| 156 | else: |
---|
| 157 | lineitems = ( |
---|
| 158 | {"lineItemsId":"itemid1","beneficiaryName":"Uniben", |
---|
[14960] | 159 | "beneficiaryAccount":inst_acct,"bankCode":inst_bankcode, |
---|
[14767] | 160 | "beneficiaryAmount":inst_amt,"deductFeeFrom":"1"}, |
---|
| 161 | ) |
---|
[14960] | 162 | # Split pharmd school fee payments into 3 parts if students decide to pay the |
---|
| 163 | # entire school fee at once. If the amount is less than N240000, the student |
---|
| 164 | # has obviously paid the first installment of N80000 (pharmd_1) |
---|
[14970] | 165 | # (disabled on 16/03/18) |
---|
| 166 | #if self.context.p_category == 'schoolfee' \ |
---|
| 167 | # and self.context.student.current_mode == 'special_ft' \ |
---|
| 168 | # and self.context.amount_auth >= 240000: |
---|
| 169 | # pcn_amt = 80000.0 |
---|
| 170 | # inst_amt -= pcn_amt |
---|
| 171 | # lineitems = ( |
---|
| 172 | # {"lineItemsId":"itemid1","beneficiaryName":"Uniben", |
---|
| 173 | # "beneficiaryAccount":inst_acct,"bankCode":inst_bankcode, |
---|
| 174 | # "beneficiaryAmount":inst_amt,"deductFeeFrom":"1"}, |
---|
| 175 | # {"lineItemsId":"itemid2","beneficiaryName":"PCN", |
---|
| 176 | # "beneficiaryAccount":"0020197061015","bankCode":inst_bankcode, |
---|
| 177 | # "beneficiaryAmount":pcn_amt,"deductFeeFrom":"0"}, |
---|
| 178 | # {"lineItemsId":"itemid3","beneficiaryName":"WAeAC", |
---|
| 179 | # "beneficiaryAccount":"1014261520","bankCode":"057", |
---|
| 180 | # "beneficiaryAmount":provider_amt,"deductFeeFrom":"0"} |
---|
| 181 | # ) |
---|
[14960] | 182 | self.context.provider_amt = provider_amt |
---|
[15817] | 183 | self.context.net_amt = inst_amt |
---|
[14767] | 184 | return lineitems |
---|
| 185 | |
---|
[14746] | 186 | def update(self): |
---|
| 187 | if not module_activated(self.context.student.current_session): |
---|
| 188 | return |
---|
[14778] | 189 | self.orderId = self.context.p_id |
---|
| 190 | self.amount = str(self.context.amount_auth) |
---|
[14746] | 191 | error = self.init_update() |
---|
| 192 | if error: |
---|
| 193 | self.flash(error, type='danger') |
---|
| 194 | self.redirect(self.url(self.context, '@@index')) |
---|
| 195 | return |
---|
[15817] | 196 | self.context.r_company = u'remita' |
---|
[14767] | 197 | return |
---|
| 198 | |
---|
| 199 | class CustomRemitaRequestPaymentStatusPageApplicant( |
---|
| 200 | RemitaRequestPaymentStatusPageApplicant): |
---|
| 201 | """ Request webservice view for the Remita gateway. |
---|
| 202 | """ |
---|
| 203 | |
---|
[14792] | 204 | merchantId = MERCHANTID |
---|
| 205 | host = HOST |
---|
| 206 | https = HTTPS |
---|
| 207 | api_key = API_KEY |
---|
[14767] | 208 | |
---|
[14792] | 209 | class CustomRemitaVerifyPaymentStatusPageApplicant( |
---|
| 210 | RemitaVerifyPaymentStatusPageApplicant): |
---|
| 211 | """ Request webservice view for the Remita gateway. |
---|
| 212 | """ |
---|
| 213 | |
---|
| 214 | merchantId = MERCHANTID |
---|
| 215 | host = HOST |
---|
| 216 | https = HTTPS |
---|
| 217 | api_key = API_KEY |
---|
| 218 | |
---|
[14767] | 219 | class CustomRemitaPageApplicant(RemitaPageApplicant): |
---|
| 220 | """ View which sends a POST request to the Remita payment gateway. |
---|
| 221 | """ |
---|
| 222 | |
---|
[14792] | 223 | merchantId = MERCHANTID |
---|
| 224 | host = HOST |
---|
| 225 | https = HTTPS |
---|
| 226 | api_key = API_KEY |
---|
| 227 | |
---|
[14767] | 228 | init_url = '/remita/ecomm/split/init.reg' |
---|
| 229 | |
---|
[14776] | 230 | @property |
---|
[14795] | 231 | def serviceTypeId(self): |
---|
[14799] | 232 | applicant = self.context.__parent__ |
---|
[14800] | 233 | if applicant.__parent__.prefix.startswith('dp'): |
---|
[14813] | 234 | return '2066963437' |
---|
[14832] | 235 | if applicant.__parent__.prefix in ('spft', ): |
---|
[14813] | 236 | return '2067086388' |
---|
[14800] | 237 | if applicant.__parent__.prefix == 'pre': |
---|
[14813] | 238 | return '1946882248' |
---|
[14800] | 239 | if applicant.__parent__.prefix in ('pude','putme','cbt', |
---|
[14825] | 240 | 'ab','ak','akj','ase'): |
---|
[14813] | 241 | return '2066965951' |
---|
[14799] | 242 | return '' |
---|
[14795] | 243 | |
---|
| 244 | @property |
---|
[14800] | 245 | def demo_lineitems(self): |
---|
| 246 | lineitems = ( |
---|
[14776] | 247 | {"lineItemsId":"itemid1","beneficiaryName":"Klaus Mueller", |
---|
| 248 | "beneficiaryAccount":"6020067886","bankCode":"011", |
---|
| 249 | "beneficiaryAmount":self.context.amount_auth/2,"deductFeeFrom":"1"}, |
---|
| 250 | {"lineItemsId":"itemid2","beneficiaryName":"Werner Rumm", |
---|
| 251 | "beneficiaryAccount":"0360883515","bankCode":"050", |
---|
| 252 | "beneficiaryAmount":self.context.amount_auth/2,"deductFeeFrom":"0"} |
---|
| 253 | ) |
---|
| 254 | return lineitems |
---|
[14770] | 255 | |
---|
[14767] | 256 | @property |
---|
[14799] | 257 | def lineitems(self): |
---|
[15491] | 258 | provider_amt = 1000.0 |
---|
| 259 | if self.context.__parent__.applicant_id.startswith('pre'): |
---|
| 260 | provider_amt = 2000.0 |
---|
[14888] | 261 | if self.context.__parent__.applicant_id.startswith('dp'): |
---|
| 262 | inst_acct = "0040217361038" |
---|
| 263 | else: |
---|
| 264 | inst_acct = "0040217361011" |
---|
[15499] | 265 | if self.context.__parent__.applicant_id.startswith('cbt'): |
---|
| 266 | provider_amt = 500.0 |
---|
[14770] | 267 | inst_amt = self.context.amount_auth - provider_amt |
---|
[14767] | 268 | lineitems = ( |
---|
[14770] | 269 | {"lineItemsId":"itemid1","beneficiaryName":"Uniben", |
---|
[14888] | 270 | "beneficiaryAccount":inst_acct,"bankCode":"000", |
---|
[14770] | 271 | "beneficiaryAmount":inst_amt,"deductFeeFrom":"1"}, |
---|
| 272 | {"lineItemsId":"itemid2","beneficiaryName":"WAeAC", |
---|
| 273 | "beneficiaryAccount":"1014261520","bankCode":"057", |
---|
| 274 | "beneficiaryAmount":provider_amt,"deductFeeFrom":"0"} |
---|
[14767] | 275 | ) |
---|
[14960] | 276 | self.context.provider_amt = provider_amt |
---|
[15817] | 277 | self.context.net_amt = inst_amt |
---|
[14767] | 278 | return lineitems |
---|
| 279 | |
---|
| 280 | def update(self): |
---|
| 281 | if not module_activated(self.context.__parent__.__parent__.year): |
---|
| 282 | return |
---|
[14778] | 283 | self.orderId = self.context.p_id |
---|
| 284 | self.amount = str(self.context.amount_auth) |
---|
[14767] | 285 | error = self.init_update() |
---|
| 286 | if error: |
---|
| 287 | self.flash(error, type='danger') |
---|
| 288 | self.redirect(self.url(self.context, '@@index')) |
---|
| 289 | return |
---|
[15817] | 290 | self.context.r_company = u'remita' |
---|
[14746] | 291 | return |
---|