- Timestamp:
- 18 Jun 2020, 20:29:14 (5 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interfaces.py
r16080 r16123 260 260 ) 261 261 262 # Is being calculated in utils.py 262 263 #sports_library_fee = schema.Float( 263 # title = _(u'Sports Development and UG Library Fee'),264 # title = _(u'Sports Development and PG Library Fee'), 264 265 # default = 0.0, 265 266 # required = True, -
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r16033 r16123 470 470 if student.entry_session >= 2019: 471 471 amount += gateway_net_amt(academic_session.ict_fee) 472 elif category == ('sports_library'): # temporarily in 2020 473 amount = 4200.0 472 elif category == 'sports_library': # temporarily in 2020 473 amount = academic_session.sports_fee + gateway_net_amt( 474 academic_session.library_pg_fee) 474 475 elif not student.is_postgrad: 475 476 fee_name = category + '_fee' -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r16080 r16123 71 71 'library': 'Library Fee UG', 72 72 'library_pg': 'Library Fee PG', 73 'sports_library': 'Sports Development and UG Library Fee',73 'sports_library': 'Sports Development and PG Library Fee', 74 74 'lab_1': 'Faculty Laboratory Due (CHM102/PHY103/CSC101)', 75 75 'lab_2': 'Laboratory Due (BIO101/BIO111)', … … 109 109 #'library': 'Library Fee UG', 110 110 #'library_pg': 'Library Fee PG', 111 'sports_library': 'Sports Development and UG Library Fee',111 'sports_library': 'Sports Development and PG Library Fee', 112 112 'lab_1': 'Faculty Laboratory Due (CHM102/PHY103/CSC101)', 113 113 'lab_2': 'Laboratory Due (BIO101/BIO111)', … … 124 124 'late_registration': 'Late Course Registration Fee', 125 125 #'library_pg': 'Library Fee PG', 126 'sports_library': 'Sports Development and UG Library Fee',126 'sports_library': 'Sports Development and PG Library Fee', 127 127 } 128 128 … … 134 134 #'sports': 'Sports Fee', 135 135 #'library': 'Library Fee UG', 136 'sports_library': 'Sports Development and UG Library Fee',136 'sports_library': 'Sports Development and PG Library Fee', 137 137 } 138 138 … … 151 151 #'sports': 'Sports Fee', 152 152 #'library': 'Library Fee UG', 153 'sports_library': 'Sports Development and UG Library Fee',153 'sports_library': 'Sports Development and PG Library Fee', 154 154 'lab_1': 'Faculty Laboratory Due (CHM102/PHY103/CSC101)', 155 155 'lab_2': 'Laboratory Due (BIO101/BIO111)',
Note: See TracChangeset for help on using the changeset viewer.