Changeset 17113 for main/waeup.fceokene/trunk/src
- Timestamp:
- 30 Sep 2022, 09:29:13 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/students/utils.py
r17087 r17113 188 188 # NCE 189 189 elif not student.current_mode.endswith('_sw'): 190 # in 2022 NCE school fees have encreased 191 increment_2022 = 11000 190 192 # PRENCE 191 193 if student.current_level == 10 and student.state == CLEARED: … … 223 225 elif category == 'schoolfee_third': 224 226 amount = 7000 227 increment_2022 = 20125 225 228 # NCE III 226 229 elif student.current_level in (200, 210, 220): … … 229 232 else: 230 233 amount = 15875 234 increment_2022 = 20125 231 235 # NCE III repeater 232 236 elif student.current_level in (300, 310, 320) and \ … … 236 240 else: 237 241 amount = 13975 242 increment_2022 = 20125 238 243 # NCE III spillover 239 244 elif student.current_level in (300, 310, 320) and \ … … 243 248 else: 244 249 amount = 13975 250 increment_2022 = 20125 245 251 # NCE III second spillover 246 252 elif student.current_level in (400, 410, 420) and \ … … 250 256 else: 251 257 amount = 13975 258 increment_2022 = 20125 259 260 if student.entry_session > 2021: 261 amount += increment_2022 252 262 else: 253 263 # NCE I fresh sw
Note: See TracChangeset for help on using the changeset viewer.