- Timestamp:
- 28 Feb 2022, 22:19:59 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/applicants/browser.py
r15961 r16848 191 191 counter = 0 192 192 for appl in container.values(): 193 if appl.state in (SUBMITTED, ADMITTED, NOT_ADMITTED, CREATED) \ 194 and (appl.school1 == self.context.school1 \ 195 or appl.school1 == data.get('school1')): 196 counter += 1 193 if appl.state in (SUBMITTED, ADMITTED, NOT_ADMITTED, CREATED): 194 if appl.school1 == self.context.school1 \ 195 or appl.school1 == data.get('school1'): 196 counter += 1 197 if appl != self.context \ 198 and (appl.subj_comb == self.context.subj_comb \ 199 or appl.subj_comb == data.get('subj_comb')): 200 return True 197 201 if counter == 10: 198 202 return True
Note: See TracChangeset for help on using the changeset viewer.