Ignore:
Timestamp:
10 Nov 2013, 07:34:04 (11 years ago)
Author:
Henrik Bettermann
Message:

Add 17 new payment categories which can ve configured through session configuration objects.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/interfaces.py

    r10682 r10734  
    7676        )
    7777
     78    certificate_fee = schema.Float(
     79        title = _(u' Certificate Fee'),
     80        default = 0.0,
     81        required = False,
     82        )
     83    state_result_fee = schema.Float(
     84        title = _(u'Statement of Result Fee'),
     85        default = 0.0,
     86        required = False,
     87        )
     88    transcript_local_fee = schema.Float(
     89        title = _(u'Transcript (local) Fee'),
     90        default = 0.0,
     91        required = False,
     92        )
     93    transcript_foreign_fee = schema.Float(
     94        title = _(u'Transcript (foreign) Fee'),
     95        default = 0.0,
     96        required = False,
     97        )
     98    ver_result_fee = schema.Float(
     99        title = _(u'erification of Result Fee'),
     100        default = 0.0,
     101        required = False,
     102        )
     103    change_course_fee = schema.Float(
     104        title = _(u'Change of Course Fee'),
     105        default = 0.0,
     106        required = False,
     107        )
     108    change_inst_fee = schema.Float(
     109        title = _(u'Change of Institute Fee'),
     110        default = 0.0,
     111        required = False,
     112        )
     113    jamb_reject_fee = schema.Float(
     114        title = _(u'JAMB Rejection Form Fee'),
     115        default = 0.0,
     116        required = False,
     117        )
     118    cert_of_cert_fee = schema.Float(
     119        title = _(u'Certification of Certificate Fee'),
     120        default = 0.0,
     121        required = False,
     122        )
     123    ref_let_fee = schema.Float(
     124        title = _(u'Recommendation/Reference Letter Fee'),
     125        default = 0.0,
     126        required = False,
     127        )
     128    proc_cert_fee = schema.Float(
     129        title = _(u'Processing of Certificate by Proxy Fee'),
     130        default = 0.0,
     131        required = False,
     132        )
     133    loss_idcard_fee = schema.Float(
     134        title = _(u'Loss of ID Card Fee'),
     135        default = 0.0,
     136        required = False,
     137        )
     138    loss_examcard_fee = schema.Float(
     139        title = _(u'Loss of Exam Card Fee'),
     140        default = 0.0,
     141        required = False,
     142        )
     143    loss_result_fee = schema.Float(
     144        title = _(u'Loss of Result Fee'),
     145        default = 0.0,
     146        required = False,
     147        )
     148    loss_receipt_fee = schema.Float(
     149        title = _(u'Loss of Receipt Fee'),
     150        default = 0.0,
     151        required = False,
     152        )
     153    loss_clearance_fee = schema.Float(
     154        title = _(u'Loss of Clearance Fee'),
     155        default = 0.0,
     156        required = False,
     157        )
     158    conv_brochure_fee = schema.Float(
     159        title = _(u'Convocation Brochure Fee'),
     160        default = 0.0,
     161        required = False,
     162        )
     163
    78164    def getSessionString():
    79165        """Returns the session string from the vocabulary.
Note: See TracChangeset for help on using the changeset viewer.