Changeset 15655


Ignore:
Timestamp:
9 Oct 2019, 19:35:40 (5 years ago)
Author:
Henrik Bettermann
Message:

Add payment categories.

Location:
main/kofacustom.edopoly/trunk/src/kofacustom/edopoly
Files:
3 edited

Legend:

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

    r15525 r15655  
    142142
    143143    nhis_fee = schema.Float(
    144         title = _(u'Student NHIS'),
     144        title = _(u'Student NHIS Fee'),
     145        default = 0.0,
     146        required = False,
     147        )
     148
     149    coc_fee = schema.Float(
     150        title = _(u'Change of Course Fee'),
     151        default = 0.0,
     152        required = False,
     153        )
     154
     155    damages_fee = schema.Float(
     156        title = _(u'Damages Fee'),
     157        default = 0.0,
     158        required = False,
     159        )
     160
     161    project_bind_fee = schema.Float(
     162        title = _(u'Project Binding Fee'),
    145163        default = 0.0,
    146164        required = False,
  • main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/students/tests/test_export.py

    r15000 r15655  
    5959            'marit_stat,matric_number,middlename,nationality,'
    6060            'next_kin_address,next_kin_name,next_kin_phone,next_kin_relation,'
    61             'nysc_lga,nysc_location,nysc_year,officer_comment,'
     61            'nysc_lga,nysc_location,nysc_year,officer_comment,parents_email,'
    6262            'perm_address,personal_updated,phone,'
    6363            'physical_clearance_date,provisionally_cleared,reg_number,'
     
    6868            '"[(\'printing_craft_practice\', \'A1\')]",my clr code,1981-02-04#,,,'
    6969            'anna@sample.com,,,,,,,,,,,,,Anna,,,,,,"[(\'printing_craft_practice\', \'A1\')]"'
    70             ',,,,,,,,,,,,,,,,Tester,,,234,M.,NG,,,,,,,,,'
     70            ',,,,,,,,,,,,,,,,Tester,,,234,M.,NG,,,,,,,,,,'
    7171            '"Studentroad 21\nLagos 123456\n",,+234-123-12345#,,,123,,,,,'
    7272            '"[(\'printing_craft_practice\', \'A1\')]",,f,A111111,0,,,created,'
  • main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/utils/utils.py

    r15525 r15655  
    6363        'conv_hnd': 'HND Convocation Fee',
    6464        'nhis': 'Student NHIS',
     65        'coc': 'Change of Course Fee',
     66        'damages': 'Damages Fee',
     67        'project_bind': 'Project Binding Fee',
    6568        }
    6669
     
    8588        'conv_hnd': 'HND Convocation Fee',
    8689        'nhis': 'Student NHIS',
     90        'coc': 'Change of Course Fee',
     91        'damages': 'Damages Fee',
     92        'project_bind': 'Project Binding Fee',
    8793        }
    8894
Note: See TracChangeset for help on using the changeset viewer.