Ignore:
Timestamp:
12 Oct 2017, 08:22:46 (7 years ago)
Author:
Henrik Bettermann
Message:

Add carryover11 and carryover12.

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

Legend:

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

    r14864 r14868  
    280280        required = True,
    281281        )
     282    carryover11_fee = schema.Float(
     283        title = _(u'11 Carry-Over Courses Fee'),
     284        default = 0.0,
     285        required = True,
     286        )
     287    carryover12_fee = schema.Float(
     288        title = _(u'12 Carry-Over Courses Fee'),
     289        default = 0.0,
     290        required = True,
     291        )
    282292
    283293    def getSessionString():
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/interswitch/browser.py

    r14864 r14868  
    5858    'carryover9': ('101', 500.0, '1012808851', '117'),
    5959    'carryover10': ('101', 500.0, '1012808851', '117'),
     60    'carryover11': ('101', 500.0, '1012808851', '117'),
     61    'carryover12': ('101', 500.0, '1012808851', '117'),
    6062
    6163    'certificate': ('111', 500.0, '1012808851', '117'),
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/utils/utils.py

    r14865 r14868  
    6363        'carryover9': '9 Carry-Over Courses',
    6464        'carryover10': '10 Carry-Over Courses',
     65        'carryover11': '11 Carry-Over Courses',
     66        'carryover12': '12 Carry-Over Courses',
    6567        'bed_allocation': 'Bed Allocation',
    6668        'hostel_maintenance': 'Hostel Maintenance',
     
    189191        'carryover9': '09 Carry-Over Courses',
    190192        'carryover10': '10 Carry-Over Courses',
     193        'carryover11': '11 Carry-Over Courses',
     194        'carryover12': '12 Carry-Over Courses',
    191195        }
Note: See TracChangeset for help on using the changeset viewer.