Commit 85b58c57 by nilu

S35705423 # Client - Incoming Issues (raised by Client) #Error: "A value for…

S35705423 # Client - Incoming Issues (raised by Client) #Error: "A value for UserName already exists"

fix issue :
Steps:
Use Apply URL to apply for Job 001 ... complete whole process
Use email ingest to apply for Job 002
Change the alias email address to the email address I used for the Apply URL application
Use the password I used on first application ... then click Submit get this error Do you know what that means ? ("value for Candidate")
parent 2e2d0367
......@@ -107,7 +107,11 @@ public class IdentifyMaskedUserFP extends SaveFP
throw new BusinessException("You have already applied for this job.");
}
jobApplication.setCandidate(existingCandidate);
for(JobApplication application : candidate.getJobApplicationsSet())
{
application.setCandidate(existingCandidate);
}
existingUser.setFirstName(newUser.getFirstName());
existingUser.setLastName(newUser.getLastName());
existingCandidate.setKnownAsAlias(old.getEmail());
......
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