Changeset 15655 for main/kofacustom.edopoly/trunk/src/kofacustom
- Timestamp:
- 9 Oct 2019, 19:35:40 (5 years ago)
- 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 142 142 143 143 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'), 145 163 default = 0.0, 146 164 required = False, -
main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/students/tests/test_export.py
r15000 r15655 59 59 'marit_stat,matric_number,middlename,nationality,' 60 60 '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,' 62 62 'perm_address,personal_updated,phone,' 63 63 'physical_clearance_date,provisionally_cleared,reg_number,' … … 68 68 '"[(\'printing_craft_practice\', \'A1\')]",my clr code,1981-02-04#,,,' 69 69 'anna@sample.com,,,,,,,,,,,,,Anna,,,,,,"[(\'printing_craft_practice\', \'A1\')]"' 70 ',,,,,,,,,,,,,,,,Tester,,,234,M.,NG,,,,,,,,, '70 ',,,,,,,,,,,,,,,,Tester,,,234,M.,NG,,,,,,,,,,' 71 71 '"Studentroad 21\nLagos 123456\n",,+234-123-12345#,,,123,,,,,' 72 72 '"[(\'printing_craft_practice\', \'A1\')]",,f,A111111,0,,,created,' -
main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/utils/utils.py
r15525 r15655 63 63 'conv_hnd': 'HND Convocation Fee', 64 64 'nhis': 'Student NHIS', 65 'coc': 'Change of Course Fee', 66 'damages': 'Damages Fee', 67 'project_bind': 'Project Binding Fee', 65 68 } 66 69 … … 85 88 'conv_hnd': 'HND Convocation Fee', 86 89 'nhis': 'Student NHIS', 90 'coc': 'Change of Course Fee', 91 'damages': 'Damages Fee', 92 'project_bind': 'Project Binding Fee', 87 93 } 88 94
Note: See TracChangeset for help on using the changeset viewer.