- Timestamp:
- 4 Dec 2007, 15:47:06 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/base/skins/waeup_student/getStudyCourseInfo.py
r2752 r2855 12 12 return Info about the Students StudyCourse 13 13 """ 14 from Products.AdvancedQuery import Eq, Between, Le,In 14 15 15 16 mtool = context.portal_membership … … 40 41 info['student'] = sbrain 41 42 cert_id = sbrain.course 42 res = context.portal_catalog(portal_type = "Certificate", id = cert_id) 43 res = context.portal_catalog_real.evalAdvancedQuery(Eq('id', cert_id) & 44 Eq('portal_type', "Certificate")) 43 45 ci = {} 44 46 if res:
Note: See TracChangeset for help on using the changeset viewer.