Changeset 2653 for WAeUP_SRP/base/skins/waeup_epayment
- Timestamp:
- 14 Nov 2007, 17:49:39 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/base/skins/waeup_epayment/getSchoolFee.py
r2534 r2653 105 105 } 106 106 107 #sessionstring = "School Fee for Session %s" % context.portal_vocabularies.sessions.get(session)108 # sessionstring = "School Fee for Session %s" % context.sessions_voc(key=session)109 # fee_1_data = ("22200",sessionstring)110 # fee_2_data = ("23700",sessionstring)111 112 # if faculty in fee1:113 # return fee_1_data114 # return fee_2_data115 107 d = {} 116 108 if brain.mode.endswith('_ft'): … … 120 112 d['new'] = session_fees[brain.session][f] 121 113 d['returning'] = 'not set' 122 d['description'] = "School Fee for Session %s" % context. sessions_voc(key=brain.session)114 d['description'] = "School Fee for Session %s" % context.getSessionsVoc(key=brain.session) 123 115 if pt_fees.has_key(brain.course): 124 116 d = pt_fees[brain.course] 125 d['description'] = "School Fee for Session %s, %s" % (context. sessions_voc(key=brain.session),117 d['description'] = "School Fee for Session %s, %s" % (context.getSessionsVoc(key=brain.session), 126 118 d['description']) 127 119 return d
Note: See TracChangeset for help on using the changeset viewer.