- Timestamp:
- 9 Dec 2019, 16:18:49 (5 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue/students
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py
r15869 r15876 977 977 def _searchCatalog(self, session): 978 978 cat = queryUtility(ICatalog, name='coursetickets_catalog') 979 # Temporarily we allow students to pay for next session, so their980 # current_session might have increased981 979 coursetickets = cat.searchResults( 982 session=(session, session +1),980 session=(session, session), 983 981 code=(self.context.code, self.context.code) 984 982 ) -
main/waeup.aaue/trunk/src/waeup/aaue/students/studylevel.py
r15869 r15876 452 452 # Temporarily we allow students to pay for next session, so their 453 453 # current_session might have increased 454 if self.student.state in (VALIDATED, REGISTERED, PAID) and \ 454 if self.student.state in ( 455 VALIDATED, REGISTERED, PAID, RETURNING) and \ 455 456 self.student.current_session in (cas, cas+1): 456 457 return True
Note: See TracChangeset for help on using the changeset viewer.