Changeset 2619 for WAeUP_SRP/base/skins/waeup_epayment/pay_interswitch.py
- Timestamp:
- 10 Nov 2007, 17:39:36 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/base/skins/waeup_epayment/pay_interswitch.py
r2172 r2619 57 57 if fulltime: 58 58 pay_item_id = "6100" 59 info['type_code'] = sbrain.faculty 59 info['type_code'] = sbrain.faculty #type_code is redundant and will be removed soon 60 60 info['bank'] = '' 61 61 else: 62 62 pay_item_id = "6101" 63 info['type_code'] = sbrain.course 63 info['type_code'] = sbrain.course #type_code is redundant and will be removed soon 64 64 info['bank'] = '' 65 65 info['payment_possible'] = True … … 72 72 now = DateTime.DateTime() 73 73 info['date'] = now 74 order_id = info['order_id']= "%d" % int(now.timeTime()*1000)75 info['order_id'] = "%s%s" % (student_id[1:], order_id)76 p_id = "p%s" % order_id74 timestamp = "%d" % int(now.timeTime()*1000) 75 info['order_id'] = "%s%s" % (student_id[1:],timestamp) 76 p_id = "p%s" % timestamp 77 77 78 78 if student_id is None:
Note: See TracChangeset for help on using the changeset viewer.