Merge pull request #192 from CDC-IITDH/fix-eligibility

can apply only to greater tiers
This commit is contained in:
uttamthummala 2023-11-19 16:46:36 +05:30 committed by GitHub
commit 0e65eb4e63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -250,11 +250,11 @@ def PlacementApplicationConditions(student, placement):
return True, "Conditions Satisfied"
for i in selected_companies:
if int(i.placement.tier) < int(placement.tier):
if int(i.placement.tier) != 1 and int(i.placement.tier) <= int(placement.tier):
return False, "Can't apply for this tier"
for i in PPO:
if int(i.tier) < int(placement.tier):
if int(i.tier) != 1 and int(i.tier) <= int(placement.tier):
return False, "Can't apply for this tier"
if student.degree != 'bTech' and not placement.rs_eligible: