Ignore:
Timestamp:
9 Dec 2014, 16:54:56 (10 years ago)
Author:
Henrik Bettermann
Message:

Change NCE school fees.

Location:
main/waeup.fceokene/trunk/src/waeup/fceokene/students
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.fceokene/trunk/src/waeup/fceokene/students/tests/test_browser.py

    r11932 r12187  
    241241        self.assertEqual(payment.p_level, 200)
    242242        self.assertEqual(payment.p_session, 2005)
    243         self.assertEqual(payment.amount_auth, 12725.0)
     243        self.assertEqual(payment.amount_auth, 12295.0)
    244244        self.assertEqual(payment.p_item, u'CERT1')
    245245        self.assertEqual(error, None)
  • main/waeup.fceokene/trunk/src/waeup/fceokene/students/utils.py

    r11932 r12187  
    194194                    student.state == RETURNING:
    195195                    if student.depcode in ARTS:
    196                         amount = 12100
    197                     else:
    198                         amount = 12575
     196                        amount = 11670
     197                    else:
     198                        amount = 12145
    199199                # NCE III
    200200                elif student.current_level in (200, 210, 220):
    201201                    if student.depcode in ARTS:
    202                         amount = 12100
    203                     else:
    204                         amount = 12575
     202                        amount = 11670
     203                    else:
     204                        amount = 12145
    205205                # NCE III repeater
    206206                elif student.current_level in (300, 310, 320) and \
    207207                    student.current_verdict == 'O':
    208208                    if student.depcode in ARTS:
    209                         amount = 10200
    210                     else:
    211                         amount = 10675
     209                        amount = 9770
     210                    else:
     211                        amount = 10245
    212212                # NCE III spillover
    213213                elif student.current_level in (300, 310, 320) and \
    214214                    student.current_verdict == 'B':
    215215                    if student.depcode in ARTS:
    216                         amount = 9170
    217                     else:
    218                         amount = 9645
     216                        amount = 9770
     217                    else:
     218                        amount = 10245
    219219                # NCE III second spillover
    220220                elif student.current_level in (400, 410, 420) and \
    221221                    student.current_verdict == 'B':
    222222                    if student.depcode in ARTS:
    223                         amount = 9170
    224                     else:
    225                         amount = 9645
     223                        amount = 9770
     224                    else:
     225                        amount = 10245
    226226            else:
    227227                if student.current_level == 100 and student.state == CLEARED:
Note: See TracChangeset for help on using the changeset viewer.