Changeset 15789


Ignore:
Timestamp:
9 Nov 2019, 16:24:23 (5 years ago)
Author:
Henrik Bettermann
Message:

More payment categories.

Location:
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/interfaces.py

    r15773 r15789  
    5555        )
    5656
    57     transcript_fee = schema.Float(
    58         title = _(u'Transcript Fee'),
     57    transcript_local_fee = schema.Float(
     58        title = _(u'Transcript Fee Local Students'),
     59        default = 0.0,
     60        required = False,
     61        )
     62
     63    transcript_overseas_fee = schema.Float(
     64        title = _(u'Transcript Fee Oversea Students'),
    5965        default = 0.0,
    6066        required = False,
     
    114120        )
    115121
    116     municipal_fee = schema.Float(
    117         title = _(u'Municipal Fee'),
     122    municipal_fresh_fee = schema.Float(
     123        title = _(u'Municipal Fee Fresh Students'),
     124        default = 0.0,
     125        required = False,
     126        )
     127
     128    municipal_returning_fee = schema.Float(
     129        title = _(u'Municipal Fee Returning Students'),
    118130        default = 0.0,
    119131        required = False,
  • main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/utils/utils.py

    r15783 r15789  
    3838        'application': 'Application Fee',
    3939        'app_balance': 'Application Fee Balance',
    40         'transcript': 'Transcript Fee',
     40        'transcript_local': 'Transcript Fee Local',
     41        'transcript_overseas': 'Transcript Fee Oversea',
    4142        'late_registration': 'Late Registration Fee',
    4243        'science': 'Science Bench Fee',
    4344        'clinical': 'Clinical Fee (Medical Students)',
    4445        'develop': 'Development Fee',
    45         'municipal': 'Municipal Fee',
     46        'municipal_fresh': 'Municipal Fee Fresh)',
     47        'municipal_returning': 'Municipal Fee Returning)',
    4648        'alumni': 'Alumni Fee',
    4749        'conv': 'Convocation Fee',
     
    7173        #'application': 'Application Fee',
    7274        #'app_balance': 'Application Fee Balance',
    73         'transcript': 'Transcript Fee',
     75        'transcript_local': 'Transcript Fee (Local Students)',
     76        'transcript_overseas': 'Transcript Fee (Oversea Students)',
    7477        'late_registration': 'Late Registration Fee',
    7578        'science': 'Science Bench Fee',
    7679        'clinical': 'Clinical Fee (Medical Students)',
    7780        'develop': 'Development Fee',
    78         'municipal': 'Municipal Fee',
     81        'municipal_fresh': 'Municipal Fee (Fresh Students)',
     82        'municipal_returning': 'Municipal Fee (Returning Students)',
    7983        'alumni': 'Alumni Fee',
    8084        'conv': 'Convocation Fee',
     
    101105        'clinical': 'Clinical Fee (Medical Students)',
    102106        'develop': 'Development Fee',
    103         'municipal': 'Municipal Fee',
     107        'municipal_fresh': 'Municipal Fee (Fresh Students)',
     108        'municipal_returning': 'Municipal Fee (Returning Students)',
    104109        'alumni': 'Alumni Fee',
    105110        'conv': 'Convocation Fee',
     
    122127        'clinical': 'Clinical Fee (Medical Students)',
    123128        'develop': 'Development Fee',
    124         'municipal': 'Municipal Fee',
     129        'municipal_fresh': 'Municipal Fee (Fresh Students)',
     130        'municipal_returning': 'Municipal Fee (Returning Students)',
    125131        'alumni': 'Alumni Fee',
    126132        'conv': 'Convocation Fee',
Note: See TracChangeset for help on using the changeset viewer.