Ignore:
Timestamp:
25 Nov 2019, 13:39:39 (5 years ago)
Author:
Henrik Bettermann
Message:

Adjust skeleton. Remove XMLRPC test user.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.skeleton/trunk/src/kofacustom/skeleton/etranzact/browser.py

    r15756 r15847  
    2222from kofacustom.nigeria.etranzact.studentsbrowser import (
    2323    EtranzactPageStudent, EtranzactReceiveResponseStudent,
    24     EtranzactRequestPaymentStatusPageStudent)
     24    EtranzactRequestPaymentStatusPageStudent,
     25    webconnect_module_activated)
    2526from kofacustom.nigeria.etranzact.payoutletbrowser import (
    2627    EtranzactEnterPinPageStudent, EtranzactEnterPinPageApplicant,
    27     EtranzactQueryHistoryPageStudent, EtranzactQueryHistoryPageApplicant)
     28    EtranzactQueryHistoryPageStudent, EtranzactQueryHistoryPageApplicant,
     29    payoutlet_module_activated)
    2830from kofacustom.nigeria.etranzact.payoutletwebservice  import NigeriaPaymentDataWebservice
    2931
     
    5254        # Already now it becomes an Etranzact payment. We set the net amount
    5355        # and add the gateway amount.
     56        if not webconnect_module_activated(
     57            self.context.__parent__.__parent__.year, self.context):
     58            return _("Etranzact payments deactivated.")
    5459        if not self.context.r_company:
    5560            self.context.net_amt = self.context.amount_auth
     
    9196        # Already now it becomes an Etranzact payment. We set the net amount
    9297        # and add the gateway amount.
     98        if not webconnect_module_activated(
     99            self.context.student.current_session, self.context):
     100            return _("Etranzact payments deactivated.")
    93101        if not self.context.r_company:
    94102            self.context.net_amt = self.context.amount_auth
Note: See TracChangeset for help on using the changeset viewer.