source: main/waeup.uniben/trunk/src/waeup/uniben/remita/browser.py @ 17808

Last change on this file since 17808 was 17753, checked in by Henrik Bettermann, 5 months ago

Add missing custom page.

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