Changeset 5594
- Timestamp:
- 24 Nov 2010, 10:57:04 (14 years ago)
- Location:
- WAeUP_SRP/trunk/skins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_aaua/getPaymentsFolderInfo.py
r5231 r5594 106 106 url = row['url'] = "%s/p%s" % (payments_path,oid[start_pos:]) 107 107 row['is_requeryable'] = "%s_%s" % (payment.category,payment.session_id) not in paid_fees and not payment.resp_desc and payment.type == 'online' or str(member) in ('admin',) # customized too 108 row['is_approvable'] = is_so and row['is_requeryable'] and payment.category == 'schoolfee' # does not make sense for maintenance 108 #row['is_approvable'] = is_so and row['is_requeryable'] and payment.category == 'schoolfee' # does not make sense for maintenance 109 row['is_approvable'] = is_so and row['is_requeryable'] 109 110 row['resp_desc'] = payment.resp_desc or 'Payment Process Interrupted' 110 111 row['trans_ref'] = payment.order_id -
WAeUP_SRP/trunk/skins/waeup_epayment/approve_epayment.py
r3467 r5594 33 33 session = s_brain.session 34 34 35 next_info = context.getNextInfo(s_brain)36 next_session_id = next_info['next_session_id']37 next_session_str = next_info['next_session_str']38 next_level_id = next_info['next_level_id']39 next_transition = next_info['next_transition']40 next_verdict = next_info['next_verdict']41 42 35 pd = {} 43 36 doc = context.getContent() … … 48 41 49 42 if doc.category == 'schoolfee': 43 next_info = context.getNextInfo(s_brain) 44 next_session_id = next_info['next_session_id'] 45 next_session_str = next_info['next_session_str'] 46 next_level_id = next_info['next_level_id'] 47 next_transition = next_info['next_transition'] 48 next_verdict = next_info['next_verdict'] 50 49 study_course = getattr(student,'study_course') 51 50 try:
Note: See TracChangeset for help on using the changeset viewer.