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.

Location:
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly
Files:
2 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.
  • main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/utils/utils.py

    r10133 r10734  
    5555        'bed_allocation': 'Bed Allocation Fee',
    5656        'hostel_maintenance': 'Hostel Maintenance Fee',
    57         'application': 'Application Fee'
     57        'application': 'Application Fee',
     58        'certificate': 'Certificate',
     59        'state_result': 'Statement of Result',
     60        'transcript_local': 'Transcript (local)',
     61        'transcript_foreign': 'Transcript (foreign)',
     62        'ver_result': 'Verification of Result',
     63        'change_course': 'Change of Course',
     64        'change_inst': 'Change of Institute',
     65        'jamb_reject': 'JAMB Rejection Form',
     66        'cert_of_cert': 'Certification of Certificate',
     67        'ref_let': 'Recommendation/Reference Letter',
     68        'proc_cert': 'Processing of Certificate by Proxy',
     69        'loss_idcard': 'Loss of ID Card',
     70        'loss_examcard': 'Loss of Exam Card',
     71        'loss_result': 'Loss of Result',
     72        'loss_receipt': 'Loss of Receipt',
     73        'loss_clearance': 'Loss of Clearance',
     74        'conv_brochure': 'Convocation Brochure',
    5875        }
    5976
     
    6481        'carryover3': 'Three CarryOvers',
    6582        'hostel_maintenance': 'Hostel Maintenance Fee',
     83        'certificate': 'Certificate',
     84        'state_result': 'Statement of Result',
     85        'transcript_local': 'Transcript (local)',
     86        'transcript_foreign': 'Transcript (foreign)',
     87        'ver_result': 'Verification of Result',
     88        'change_course': 'Change of Course',
     89        'change_inst': 'Change of Institute',
     90        'jamb_reject': 'JAMB Rejection Form',
     91        'cert_of_cert': 'Certification of Certificate',
     92        'ref_let': 'Recommendation/Reference Letter',
     93        'proc_cert': 'Processing of Certificate by Proxy',
     94        'loss_idcard': 'Loss of ID Card',
     95        'loss_examcard': 'Loss of Exam Card',
     96        'loss_result': 'Loss of Result',
     97        'loss_receipt': 'Loss of Receipt',
     98        'loss_clearance': 'Loss of Clearance',
     99        'conv_brochure': 'Convocation Brochure',
    66100        }
Note: See TracChangeset for help on using the changeset viewer.