Changeset 10663 for main/waeup.fceokene/trunk/src/waeup/fceokene
- Timestamp:
- 9 Oct 2013, 04:44:14 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/students/utils.py
r10661 r10663 171 171 if student.current_level == 10 and student.state == CLEARED: 172 172 if student.depcode in ARTS: 173 amount = 1 4900174 else: 175 amount = 1 5400173 amount = 15500 174 else: 175 amount = 16000 176 176 # NCE I fresh 177 177 elif student.current_level == 100 and student.state == CLEARED: 178 178 if student.depcode in ARTS: 179 amount = 12 020180 else: 181 amount = 1 2495179 amount = 12620 180 else: 181 amount = 13096 182 182 # NCE II 183 183 elif student.current_level in (100, 110, 120) and \ 184 184 student.state == RETURNING: 185 185 if student.depcode in ARTS: 186 amount = 11 070187 else: 188 amount = 1 1545186 amount = 11670 187 else: 188 amount = 12145 189 189 # NCE III 190 190 elif student.current_level in (200, 210, 220): 191 191 if student.depcode in ARTS: 192 amount = 11 070193 else: 194 amount = 1 1545192 amount = 11670 193 else: 194 amount = 12145 195 195 # NCE III repeater 196 196 elif student.current_level in (300, 310, 320) and \ 197 197 student.current_verdict == 'O': 198 198 if student.depcode in ARTS: 199 amount = 6535200 else: 201 amount = 6773199 amount = 9770 200 else: 201 amount = 10245 202 202 # NCE III spillover 203 203 elif student.current_level in (300, 310, 320) and \
Note: See TracChangeset for help on using the changeset viewer.