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
14bf2c2a
Commit
14bf2c2a
authored
Nov 22, 2018
by
Nilu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
S12532562 # Client - Incoming Issues (raised by Client) #CV Cover letter do not work
parent
d0876d70
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
49 additions
and
10 deletions
+49
-10
JobApplication.java
cmsWebApp/src/performa/orm/JobApplication.java
+7
-4
incomplete_applicants_list.jsp
...extensions/adminportal/inc/incomplete_applicants_list.jsp
+23
-2
view_application_tab_applicant.jsp
...nsions/adminportal/inc/view_application_tab_applicant.jsp
+15
-0
confirm_details.jsp
...pp/webroot/extensions/applicantportal/confirm_details.jsp
+2
-2
verify_identity.jsp
...pp/webroot/extensions/applicantportal/verify_identity.jsp
+2
-2
No files found.
cmsWebApp/src/performa/orm/JobApplication.java
View file @
14bf2c2a
...
...
@@ -667,13 +667,15 @@ public class JobApplication extends BaseJobApplication
return
false
;
}
public
boolean
showHappyToRelocate
()
@Override
public
Boolean
getHappyToRelocate
()
{
return
isTrue
(
getHappyToRelocate
());
return
isTrue
(
super
.
getHappyToRelocate
());
}
public
boolean
showPreferRemote
()
@Override
public
Boolean
getPreferRemote
()
{
return
isTrue
(
getPreferRemote
());
return
isTrue
(
super
.
getPreferRemote
());
}
}
\ No newline at end of file
cmsWebApp/webroot/extensions/adminportal/inc/incomplete_applicants_list.jsp
View file @
14bf2c2a
...
...
@@ -67,8 +67,29 @@
</span>
<oneit:toString value="<%= jobApplication.getCandidate().getPhone() %>" mode="EscapeHTML" />
<span><img src="images/clip_icon.png"></span>
<span><a href="#">CV</a></span>
<span><a href="#">Cover Letter</a></span>
<%
if(jobApplication.getCV() != null)
{
%>
<span>
<a target='blank' href='<%= request.getContextPath() + "/" + BinaryContentHandler.getRelativeURL(request, jobApplication, "CV", jobApplication.getCV(), true) %>'>
CV
</a>
</span>
<%
}
if(jobApplication.getCoverLetter() != null)
{
%>
<span>
<a target='blank' href='<%= request.getContextPath() + "/" + BinaryContentHandler.getRelativeURL(request, jobApplication, "CoverLetter", jobApplication.getCoverLetter(), true) %>'>
Cover Letter
</a>
</span>
<%
}
%>
</div>
</div>
...
...
cmsWebApp/webroot/extensions/adminportal/inc/view_application_tab_applicant.jsp
View file @
14bf2c2a
...
...
@@ -590,6 +590,21 @@
<%
}
%>
<%
if(jobApplication.getCoverLetter() != null)
{
%>
<div class="contact-row">
<div class="contact-label"><img src="images/download-icon.png" /></div>
<div class="contact-value">
<a target='blank' href='<%= request.getContextPath() + "/" + BinaryContentHandler.getRelativeURL(request, jobApplication, "CoverLetter", jobApplication.getCoverLetter(), true) %>'>
Download Cover Letter
</a>
</div>
</div>
<%
}
%>
</div>
<div class="applicant-location-info">
<div class="contact-row" >
...
...
cmsWebApp/webroot/extensions/applicantportal/confirm_details.jsp
View file @
14bf2c2a
...
...
@@ -101,7 +101,7 @@
<div class="styled_checkboxes">
<div class="checkbox checkbox-primary">
<oneit:ormInput obj="<%= jobApplication %>" id="prefer-remote" attributeName="PreferRemote" type="checkbox"/>
<oneit:recalcClass htmlTag="span" classScript="jobApplication.
show
PreferRemote() ? 'checked': 'unchecked'" jobApplication="<%= jobApplication %>">
<oneit:recalcClass htmlTag="span" classScript="jobApplication.
get
PreferRemote() ? 'checked': 'unchecked'" jobApplication="<%= jobApplication %>">
<label for="prefer-remote">
<oneit:label GUIName="I would prefer to work remotely" />
</label>
...
...
@@ -124,7 +124,7 @@
<div class="styled_checkboxes">
<div class="checkbox checkbox-primary">
<oneit:ormInput obj="<%= jobApplication %>" id="happy-to-relocate" attributeName="HappyToRelocate" type="checkbox" />
<oneit:recalcClass htmlTag="span" classScript="jobApplication.
show
HappyToRelocate() ? 'checked': 'unchecked'" jobApplication="<%= jobApplication %>">
<oneit:recalcClass htmlTag="span" classScript="jobApplication.
get
HappyToRelocate() ? 'checked': 'unchecked'" jobApplication="<%= jobApplication %>">
<label for="happy-to-relocate">
<oneit:label GUIName="Yes, I am happy to relocate"/>
</label>
...
...
cmsWebApp/webroot/extensions/applicantportal/verify_identity.jsp
View file @
14bf2c2a
...
...
@@ -173,7 +173,7 @@
<div class="styled_checkboxes">
<div class="checkbox checkbox-primary">
<oneit:ormInput obj="<%= jobApplication %>" id="prefer-remote" attributeName="PreferRemote" type="checkbox"/>
<oneit:recalcClass htmlTag="span" classScript="jobApplication.
show
PreferRemote() ? 'checked': 'unchecked'" jobApplication="<%= jobApplication %>">
<oneit:recalcClass htmlTag="span" classScript="jobApplication.
get
PreferRemote() ? 'checked': 'unchecked'" jobApplication="<%= jobApplication %>">
<label for="prefer-remote">
<oneit:label GUIName="I would prefer to work remotely" />
</label>
...
...
@@ -193,7 +193,7 @@
<div class="styled_checkboxes">
<div class="checkbox checkbox-primary">
<oneit:ormInput obj="<%= jobApplication %>" id="happy-to-relocate" attributeName="HappyToRelocate" type="checkbox" />
<oneit:recalcClass htmlTag="span" classScript="jobApplication.
show
HappyToRelocate() ? 'checked': 'unchecked'" jobApplication="<%= jobApplication %>">
<oneit:recalcClass htmlTag="span" classScript="jobApplication.
get
HappyToRelocate() ? 'checked': 'unchecked'" jobApplication="<%= jobApplication %>">
<label for="happy-to-relocate">
<oneit:label GUIName="Yes, I am happy to relocate"/>
</label>
...
...
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