Changeset 11850 for main/waeup.fceokene/trunk/src/waeup/fceokene
- Timestamp:
- 19 Oct 2014, 07:44:58 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/students/utils.py
r11649 r11850 159 159 # PDE repeater 160 160 if student.current_verdict == 'OPDE': 161 amount = 2 0150161 amount = 23000 162 162 # PDE 163 163 elif student.current_mode == 'pd_ft': 164 amount = 35 000164 amount = 35300 165 165 # UG 166 166 elif student.current_mode == 'ug_ft': … … 222 222 if student.current_level == 100 and student.state == CLEARED: 223 223 if student.depcode in ARTS: 224 amount = 2 1900225 else: 226 amount = 2 2400224 amount = 22500 225 else: 226 amount = 23000 227 227 # NCE II sw 228 228 elif student.current_level in (100, 110, 120) and \ 229 229 student.state == RETURNING: 230 230 if student.depcode in ARTS: 231 amount = 1 8400232 else: 233 amount = 18 900231 amount = 19000 232 else: 233 amount = 18500 234 234 # NCE III sw 235 235 elif student.current_level in (200, 210, 220): 236 236 if student.depcode in ARTS: 237 amount = 2 0400238 else: 239 amount = 2 0900237 amount = 21000 238 else: 239 amount = 21000 240 240 # NCE IV sw 241 241 elif student.current_level in (300, 310, 320): 242 242 if student.depcode in ARTS: 243 amount = 1 8400244 else: 245 amount = 1 8900243 amount = 19000 244 else: 245 amount = 19500 246 246 # NCE V sw 247 247 elif student.current_level in (400, 410, 420): 248 248 if student.depcode in ARTS: 249 amount = 1 8400250 else: 251 amount = 1 8900249 amount = 19000 250 else: 251 amount = 19500 252 252 # NCE V spillover sw 253 253 elif student.current_level in (500, 510, 520) and \ 254 254 student.current_verdict == 'B': 255 255 if student.depcode in ARTS: 256 amount = 1 6900257 else: 258 amount = 1 7400256 amount = 17500 257 else: 258 amount = 18000 259 259 # NCE V second spillover sw 260 260 elif student.current_level in (600, 610, 620) and \ 261 261 student.current_verdict == 'B': 262 262 if student.depcode in ARTS: 263 amount = 1 6900264 else: 265 amount = 1 7400263 amount = 17500 264 else: 265 amount = 18000 266 266 # NCE student payment can be disabled by 267 267 # setting the base school fee to -1
Note: See TracChangeset for help on using the changeset viewer.