Commit 33c5a0f3 by nilu

S36057463 # Client - Incoming Issues (raised by Client) #Applicant need to…

S36057463 # Client - Incoming Issues (raised by Client) #Applicant need to fast-track (automatically progress)
parent c1cb99e3
...@@ -144,6 +144,12 @@ public class SendVerificationMailFP extends SaveFP ...@@ -144,6 +144,12 @@ public class SendVerificationMailFP extends SaveFP
candidate.setIsPasswordChanged(true); candidate.setIsPasswordChanged(true);
} }
// job has no requirements, and candidate has already done the culture and role fit. Submit application automatically.
if(!job.getIncludeAssessmentCriteria() && (candidate.cultureCompleted(job) || !job.getIncludeCulture()) && candidate.assessmentCompleted(job))
{
jobApplication.setApplicationStatus(ApplicationStatus.SUBMITTED);
}
// storing candidate location in application for distance calculation to be accurate even if user edits // storing candidate location in application for distance calculation to be accurate even if user edits
// location in the next application // location in the next application
jobApplication.setGoogleAddressText(candidate.getGoogleAddressText()); jobApplication.setGoogleAddressText(candidate.getGoogleAddressText());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment