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
a74629bc
Commit
a74629bc
authored
Oct 24, 2017
by
Nilu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
J004 - Include option to select Express and remove lating text from express description
parent
f312bf14
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
9 deletions
+5
-9
AssessmentType.java
cmsWebApp/src/performa/orm/types/AssessmentType.java
+2
-2
AssessmentType.xml
cmsWebApp/src/performa/orm/types/AssessmentType.xml
+3
-2
job_match_assessment.jsp
...p/webroot/extensions/adminportal/job_match_assessment.jsp
+0
-5
No files found.
cmsWebApp/src/performa/orm/types/AssessmentType.java
View file @
a74629bc
...
@@ -22,7 +22,7 @@ public class AssessmentType extends AbstractEnumerated
...
@@ -22,7 +22,7 @@ public class AssessmentType extends AbstractEnumerated
public
static
final
AssessmentType
COMPREHENSIVE
=
new
AssessmentType
(
"COMPREHENSIVE"
,
"COMPREHENSIVE"
,
"Talentology Comprehensive"
,
false
);
public
static
final
AssessmentType
COMPREHENSIVE
=
new
AssessmentType
(
"COMPREHENSIVE"
,
"COMPREHENSIVE"
,
"Talentology Comprehensive"
,
false
);
public
static
final
AssessmentType
EXPRESS
=
new
AssessmentType
(
"EXPRESS"
,
"EXPRESS"
,
"Talentology Express"
,
tru
e
);
public
static
final
AssessmentType
EXPRESS
=
new
AssessmentType
(
"EXPRESS"
,
"EXPRESS"
,
"Talentology Express"
,
fals
e
);
private
static
final
AssessmentType
[]
allAssessmentTypes
=
private
static
final
AssessmentType
[]
allAssessmentTypes
=
new
AssessmentType
[]
{
COMPREHENSIVE
,
EXPRESS
};
new
AssessmentType
[]
{
COMPREHENSIVE
,
EXPRESS
};
...
@@ -138,7 +138,7 @@ public class AssessmentType extends AbstractEnumerated
...
@@ -138,7 +138,7 @@ public class AssessmentType extends AbstractEnumerated
COMPREHENSIVE
.
QuestionDetails
=
" (250 Questions - 20 Minutes)"
;
COMPREHENSIVE
.
QuestionDetails
=
" (250 Questions - 20 Minutes)"
;
COMPREHENSIVE
.
TestDescr
=
"Comprehensive Assessment"
;
COMPREHENSIVE
.
TestDescr
=
"Comprehensive Assessment"
;
EXPRESS
.
HeaderDesc
=
""
;
EXPRESS
.
HeaderDesc
=
""
;
EXPRESS
.
AdditionalDesc
=
"
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut.
"
;
EXPRESS
.
AdditionalDesc
=
""
;
EXPRESS
.
QuestionDetails
=
" (30 Questions - 5 Minutes)"
;
EXPRESS
.
QuestionDetails
=
" (30 Questions - 5 Minutes)"
;
EXPRESS
.
TestDescr
=
"Express Assessment"
;
EXPRESS
.
TestDescr
=
"Express Assessment"
;
...
...
cmsWebApp/src/performa/orm/types/AssessmentType.xml
View file @
a74629bc
...
@@ -13,8 +13,8 @@
...
@@ -13,8 +13,8 @@
QuestionDetails=
'" (250 Questions - 20 Minutes)"'
QuestionDetails=
'" (250 Questions - 20 Minutes)"'
TestDescr=
'"Comprehensive Assessment"'
/>
TestDescr=
'"Comprehensive Assessment"'
/>
<VALUE
name=
"EXPRESS"
description=
"Talentology Express"
HeaderDesc=
'""'
<VALUE
name=
"EXPRESS"
description=
"Talentology Express"
HeaderDesc=
'""'
AdditionalDesc=
'"
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut.
"'
AdditionalDesc=
'""'
QuestionDetails=
'" (30 Questions - 5 Minutes)"'
disabled=
"true"
QuestionDetails=
'" (30 Questions - 5 Minutes)"'
TestDescr=
'"Express Assessment"'
/>
TestDescr=
'"Express Assessment"'
/>
</CONSTANT>
</CONSTANT>
</ROOT>
</ROOT>
\ No newline at end of file
cmsWebApp/webroot/extensions/adminportal/job_match_assessment.jsp
View file @
a74629bc
...
@@ -53,11 +53,6 @@
...
@@ -53,11 +53,6 @@
for(AssessmentType assessmentType : AssessmentType.getAssessmentTypeArray())
for(AssessmentType assessmentType : AssessmentType.getAssessmentTypeArray())
{
{
if(assessmentType.getDisabled() == Boolean.TRUE)
{
continue;
}
String assessmentTypeId = assessmentType.getName();
String assessmentTypeId = assessmentType.getName();
String selectedStr = CollectionUtils.equals(assessmentTypeValue, assessmentTypeId) ? "checked" : "";
String selectedStr = CollectionUtils.equals(assessmentTypeValue, assessmentTypeId) ? "checked" : "";
%>
%>
...
...
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