Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PERFORMA_REPLICA
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Muhammad Usman
PERFORMA_REPLICA
Commits
25b91b81
Commit
25b91b81
authored
Nov 18, 2018
by
Nilu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
S12535397 # Client - Incoming Issues (raised by Client) #COnfusing messaging
parent
54034132
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
Job.java
cmsWebApp/src/performa/orm/Job.java
+11
-1
sign_in.jsp
cmsWebApp/webroot/extensions/applicantportal/sign_in.jsp
+6
-1
No files found.
cmsWebApp/src/performa/orm/Job.java
View file @
25b91b81
...
...
@@ -481,7 +481,7 @@ public class Job extends BaseJob
public
Boolean
isEmailFound
()
{
if
(
getEmail
()!=
null
)
if
(
getEmail
()!=
null
)
{
SecUser
user
=
SecUser
.
searchNAME
(
getTransaction
(),
getEmail
().
toLowerCase
());
...
...
@@ -494,6 +494,16 @@ public class Job extends BaseJob
return
Boolean
.
FALSE
;
}
public
Boolean
hasHiringTeamAccount
()
{
if
(
getEmail
()!=
null
)
{
return
Utils
.
emailExists
(
getTransaction
(),
getEmail
());
}
return
Boolean
.
FALSE
;
}
public
Boolean
isClientAvailable
()
{
...
...
cmsWebApp/webroot/extensions/applicantportal/sign_in.jsp
View file @
25b91b81
...
...
@@ -177,7 +177,7 @@
</div>
</oneit:recalcClass>
<oneit:recalcClass htmlTag="div" classScript="job.getEmail()
==null || job.isEmailFound
() ? 'hide': 'show'" job="<%= job %>">
<oneit:recalcClass htmlTag="div" classScript="job.getEmail()
== null || job.isEmailFound() || job.hasHiringTeamAccount
() ? 'hide': 'show'" job="<%= job %>">
<div class="form-group">
<p>We don't recognize that email address yet, so we'll send a link so that you can create an account.</p>
</div>
...
...
@@ -191,6 +191,11 @@
.toMap() %>"/>
</div>
</oneit:recalcClass>
<oneit:recalcClass htmlTag="div" classScript="job.hasHiringTeamAccount() ? 'show': 'hide'" job="<%= job %>">
<div class="form-group">
<p style="color:#F9623D">This email address is already in use by a Hiring Team account.</p>
</div>
</oneit:recalcClass>
</oneit:form>
</div>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment