Changeset 2898
- Timestamp:
- 9 Dec 2007, 18:04:02 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/base/Payment.py
r2897 r2898 38 38 #import pdb;pdb.set_trace() 39 39 for payment in self.aq_parent.objectValues(): 40 student_record = self. getRecordByKey(self.getStudentId())40 student_record = self.students_catalog.getRecordByKey(self.getStudentId()) 41 41 payment['updatePayment'](student_record) 42 42 … … 78 78 wftool = self.portal_workflow 79 79 d = {} 80 #student_record = self.students_catalog.getRecordByKey(self.getStudentId())81 80 d['key'] = self.getId() 82 81 d['amount'] = doc.amount 83 #d['description'] = d['type_description'] = doc.type_description84 82 category = '' 85 83 if doc.type_description.startswith('School'): … … 110 108 d['resp_card_num'] = doc.resp_card_num 111 109 d['date'] = getattr(doc,'date',None) 112 # msg = " ".join(["%s: %s" % (key,value) for key,value in d.items()])113 # logger.info(msg)114 110 115 111 review_state = wftool.getInfoFor(self,'review_state',None)
Note: See TracChangeset for help on using the changeset viewer.