Changeset 16013 for main/kofacustom.dspg


Ignore:
Timestamp:
26 Feb 2020, 18:35:30 (5 years ago)
Author:
Henrik Bettermann
Message:

First-year probating ND students or third year
probating hnd students are treated like
fresh students.

Location:
main/kofacustom.dspg/trunk/src/kofacustom/dspg
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/interswitch/tests.py

    r15719 r16013  
    9292            self.browser.contents)
    9393        self.assertTrue(
    94             'item_name="School Fee" item_amt="2575000" bank_id="117" acct_num="1012963301"' in
     94            'item_name="School Fee" item_amt="2575000" bank_id="117" acct_num="1012808851"' in
    9595            self.browser.contents)
    9696        # ND FT Non-Deltan Fresh Student Acceptance Fee
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/utils.py

    r15743 r16013  
    187187                            u'Session configuration object is not available.'
    188188                            ), None
    189                     if p_level in (100, 110, 120, 130):
    190                         # First-year probating students are treated like
     189                    if p_level in (100, 110, 120, 130) or (
     190                        p_level in (300, 310, 320, 330) and
     191                        student.current_mode == 'hnd_ft'):
     192                        # First-year probating ND students or third year
     193                        # probating hnd students are treated like
    191194                        # fresh students.
    192195                        if local(student):
Note: See TracChangeset for help on using the changeset viewer.