Changeset 2900
- Timestamp:
- 9 Dec 2007, 21:42:44 (17 years ago)
- Location:
- WAeUP_SRP
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/base/Payment.py
r2899 r2900 20 20 class PaymentsFolder(CPSDocument): ###( 21 21 """ 22 WAeUP PaymentsFolder containing Payment smmodation halls22 WAeUP PaymentsFolder containing Payment objects 23 23 """ 24 24 meta_type = 'PaymentsFolder' … … 51 51 class Payment(CPSDocument): ###( 52 52 """ 53 WAeUP Payment containing Departments53 WAeUP Payment containing Nothing 54 54 """ 55 55 meta_type = 'Payment' … … 108 108 d['resp_card_num'] = doc.resp_card_num 109 109 d['date'] = getattr(doc,'date',None) 110 110 111 111 review_state = wftool.getInfoFor(self.aq_parent,'review_state',None) 112 112 if review_state == "closed": -
WAeUP_SRP/base/skins/waeup_epayment/interswitch_acco_cb.py
r2895 r2900 56 56 57 57 ## for testing purposes 58 pd['resp_desc'] = 'Simulated Callback'59 pd['resp_pay_reference'] = 'XXXX'60 pd['resp_code'] = '00'61 pd['resp_card_num'] = '0000'62 pd['resp_approved_amount'] = '10000'58 #pd['resp_desc'] = 'Simulated Callback' 59 #pd['resp_pay_reference'] = 'XXXX' 60 #pd['resp_code'] = '00' 61 #pd['resp_card_num'] = '0000' 62 #pd['resp_approved_amount'] = '10000' 63 63 64 64 if pd['resp_code'] == '00' and len(pd['resp_approved_amount']) > 4: -
WAeUP_SRP/fceokene/profiles/default/layouts/payment.xml
r2893 r2900 46 46 <property name="hidden_layout_modes"/> 47 47 <property name="hidden_readonly_layout_modes"/> 48 <property name="view_format">%d/%m/%Y %H:%M</property> 49 <property name="time_setting">True</property> 48 50 </widget> 49 51 <widget name="resp_approved_amount" meta_type="String Widget"> -
WAeUP_SRP/fceokene/profiles/default/workflows/waeup_student_wf/definition.xml
r2579 r2900 85 85 <exit-transition transition_id="validate_courses"/> 86 86 <exit-transition transition_id="deactivate"/> 87 <exit-transition transition_id="create_content"/> 87 88 <permission-map name="Delete objects" acquired="False"> 88 89 <permission-role>Manager</permission-role> … … 100 101 <exit-transition transition_id="reject_courses"/> 101 102 <exit-transition transition_id="deactivate"/> 103 <exit-transition transition_id="create_content"/> 102 104 <permission-map name="Delete objects" acquired="False"> 103 105 <permission-role>Manager</permission-role> -
WAeUP_SRP/fceokene/waeup_custom/getPaymentsFolderInfo.py
r2891 r2900 43 43 #student = getattr(students,student_id) 44 44 student_record = context.students_catalog.getRecordByKey(student_id) 45 #context['updatePayments']()45 context['updatePayments']() 46 46 payments = [] 47 47 … … 96 96 if so_doc.type_description.startswith('School Fee'): 97 97 if (review_state == 'opened' and info['review_state'] in ('cleared_and_validated','returning') and \ 98 hasattr(so_doc, 'order_id') and not so_doc.resp_code) or str(member) in ('admin',' gbenga','isouaba'):98 hasattr(so_doc, 'order_id') and not so_doc.resp_code) or str(member) in ('admin','delejason','isouaba'): 99 99 row['is_requeryable'] = True 100 100 row['callback_url'] = "%s/interswitch_cb" % (payments_path)
Note: See TracChangeset for help on using the changeset viewer.