Ignore:
Timestamp:
28 May 2012, 05:24:43 (12 years ago)
Author:
Henrik Bettermann
Message:

Application fee is now determined in base package.

Add jamb_subjects field.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.uniben/trunk/src/waeup/uniben/applicants/utils.py

    r8530 r8535  
    5353        'form.nysc_year': _(u'NYSC Information'),
    5454        'form.employer': _(u'Employment History'),
    55         'form.jambscore': _(u'JAMB Data'),
     55        'form.jamb_subjects': _(u'JAMB Data'),
    5656        'form.notice': _(u'Application Process Information'),
    5757        'form.pp_school': _(u'Post Primary School Qualification'),
    5858        'form.presently_inst': _(u'Presently attending a course or programme'),
    5959        }
    60 
    61     def setPaymentDetails(self, container, payment):
    62         """Set the payment data of an applicant.
    63         """
    64         timestamp = "%d" % int(time()*1000)
    65         payment.p_id = "p%s" % timestamp
    66         payment.p_item = container.title
    67         payment.p_session = container.year
    68         payment.p_category = 'application'
    69         # We are using the container specific application fee
    70         # instead of the session configuration application fee.
    71         payment.amount_auth = container.application_fee
    72         return None
Note: See TracChangeset for help on using the changeset viewer.