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
f81a7b22
Commit
f81a7b22
authored
Oct 08, 2017
by
Nilu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
J002 - Default to toggled off for requirements being added. Once enabled, show rest of screen
parent
00e8a926
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
BaseJob.java
cmsWebApp/src/performa/orm/BaseJob.java
+2
-2
Job.xml
cmsWebApp/src/performa/orm/Job.xml
+1
-1
No files found.
cmsWebApp/src/performa/orm/BaseJob.java
View file @
f81a7b22
...
@@ -724,7 +724,7 @@ public abstract class BaseJob extends BaseBusinessClass
...
@@ -724,7 +724,7 @@ public abstract class BaseJob extends BaseBusinessClass
Map
metaInfo
=
new
HashMap
();
Map
metaInfo
=
new
HashMap
();
metaInfo
.
put
(
"dbcol"
,
"include_assessment_criteria"
);
metaInfo
.
put
(
"dbcol"
,
"include_assessment_criteria"
);
metaInfo
.
put
(
"defaultValue"
,
"Boolean.
TRU
E"
);
metaInfo
.
put
(
"defaultValue"
,
"Boolean.
FALS
E"
);
metaInfo
.
put
(
"mandatory"
,
"true"
);
metaInfo
.
put
(
"mandatory"
,
"true"
);
metaInfo
.
put
(
"name"
,
"IncludeAssessmentCriteria"
);
metaInfo
.
put
(
"name"
,
"IncludeAssessmentCriteria"
);
metaInfo
.
put
(
"type"
,
"Boolean"
);
metaInfo
.
put
(
"type"
,
"Boolean"
);
...
@@ -946,7 +946,7 @@ public abstract class BaseJob extends BaseBusinessClass
...
@@ -946,7 +946,7 @@ public abstract class BaseJob extends BaseBusinessClass
_JobStatus
=
(
JobStatus
)(
HELPER_JobStatus
.
initialise
(
_JobStatus
));
_JobStatus
=
(
JobStatus
)(
HELPER_JobStatus
.
initialise
(
_JobStatus
));
_OpenDate
=
(
Date
)(
HELPER_OpenDate
.
initialise
(
_OpenDate
));
_OpenDate
=
(
Date
)(
HELPER_OpenDate
.
initialise
(
_OpenDate
));
_ApplyBy
=
(
Date
)(
HELPER_ApplyBy
.
initialise
(
_ApplyBy
));
_ApplyBy
=
(
Date
)(
HELPER_ApplyBy
.
initialise
(
_ApplyBy
));
_IncludeAssessmentCriteria
=
(
Boolean
)(
Boolean
.
TRU
E
);
_IncludeAssessmentCriteria
=
(
Boolean
)(
Boolean
.
FALS
E
);
_AssessmentType
=
(
AssessmentType
)(
AssessmentType
.
COMPREHENSIVE
);
_AssessmentType
=
(
AssessmentType
)(
AssessmentType
.
COMPREHENSIVE
);
_RandomKey
=
(
String
)(
HELPER_RandomKey
.
initialise
(
_RandomKey
));
_RandomKey
=
(
String
)(
HELPER_RandomKey
.
initialise
(
_RandomKey
));
_JobType
=
(
JobType
)(
JobType
.
FULL_TIME
);
_JobType
=
(
JobType
)(
JobType
.
FULL_TIME
);
...
...
cmsWebApp/src/performa/orm/Job.xml
View file @
f81a7b22
...
@@ -36,7 +36,7 @@
...
@@ -36,7 +36,7 @@
<ATTRIB
name=
"JobStatus"
type=
"JobStatus"
dbcol=
"job_status"
attribHelper=
"EnumeratedAttributeHelper"
mandatory=
"true"
/>
<ATTRIB
name=
"JobStatus"
type=
"JobStatus"
dbcol=
"job_status"
attribHelper=
"EnumeratedAttributeHelper"
mandatory=
"true"
/>
<ATTRIB
name=
"OpenDate"
type=
"Date"
dbcol=
"open_date"
/>
<ATTRIB
name=
"OpenDate"
type=
"Date"
dbcol=
"open_date"
/>
<ATTRIB
name=
"ApplyBy"
type=
"Date"
dbcol=
"apply_by"
/>
<ATTRIB
name=
"ApplyBy"
type=
"Date"
dbcol=
"apply_by"
/>
<ATTRIB
name=
"IncludeAssessmentCriteria"
type=
"Boolean"
dbcol=
"include_assessment_criteria"
mandatory=
"true"
defaultValue=
"Boolean.
TRU
E"
/>
<ATTRIB
name=
"IncludeAssessmentCriteria"
type=
"Boolean"
dbcol=
"include_assessment_criteria"
mandatory=
"true"
defaultValue=
"Boolean.
FALS
E"
/>
<ATTRIB
name=
"AssessmentType"
type=
"AssessmentType"
dbcol=
"assessment_type"
attribHelper=
"EnumeratedAttributeHelper"
mandatory=
"true"
defaultValue=
"AssessmentType.COMPREHENSIVE"
/>
<ATTRIB
name=
"AssessmentType"
type=
"AssessmentType"
dbcol=
"assessment_type"
attribHelper=
"EnumeratedAttributeHelper"
mandatory=
"true"
defaultValue=
"AssessmentType.COMPREHENSIVE"
/>
<ATTRIB
name=
"RandomKey"
type=
"String"
dbcol=
"random_key"
length=
"10"
/>
<ATTRIB
name=
"RandomKey"
type=
"String"
dbcol=
"random_key"
length=
"10"
/>
<ATTRIB
name=
"JobType"
type=
"JobType"
dbcol=
"job_type"
attribHelper=
"EnumeratedAttributeHelper"
mandatory=
"true"
defaultValue=
"JobType.FULL_TIME"
/>
<ATTRIB
name=
"JobType"
type=
"JobType"
dbcol=
"job_type"
attribHelper=
"EnumeratedAttributeHelper"
mandatory=
"true"
defaultValue=
"JobType.FULL_TIME"
/>
...
...
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