Changeset 17660 for main/waeup.kofa/trunk
- Timestamp:
- 4 Jan 2024, 12:26:53 (10 months ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/interfaces.py
r17245 r17660 44 44 def year_range(): 45 45 curr_year = datetime.now().year 46 return range(curr_year - 6, curr_year + 5)46 return range(curr_year - 8, curr_year + 5) 47 47 48 48 class ApplicantBalancePaymentCategorySource(ContextualDictSourceFactoryBase): -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests/test_applicantcopier.py
r17550 r17660 305 305 self.assertTrue('Successfully created records' in self.browser.contents) 306 306 logcontent = open(logfile).read() 307 self.assertTrue('applicants.browser.CreateAllStudentsPage - started in app 2021'307 self.assertTrue('applicants.browser.CreateAllStudentsPage - started in app%s' % session 308 308 in logcontent) 309 309 self.assertTrue('%s - Student record created (K1000000)' % self.applicant.applicant_id 310 310 in logcontent) 311 self.assertTrue('applicants.browser.CreateAllStudentsPage - created in app2021: %s' % self.applicant.applicant_id 311 self.assertTrue('applicants.browser.CreateAllStudentsPage - created in app%s: %s' % ( 312 session, self.applicant.applicant_id) 312 313 in logcontent) 313 314
Note: See TracChangeset for help on using the changeset viewer.