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
866a7c88
Commit
866a7c88
authored
Dec 04, 2017
by
Nilu
Browse files
Options
Browse Files
Download
Plain Diff
Finish Hotfix-20171128
Conflicts: cmsWebApp/webroot/css/common.css
parents
a1a8bc71
7590ca43
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
SaveJobFP.java
cmsWebApp/src/performa/form/SaveJobFP.java
+5
-5
Job.java
cmsWebApp/src/performa/orm/Job.java
+1
-1
common.css
cmsWebApp/webroot/css/common.css
+1
-1
application_outline.jsp
...ebroot/extensions/applicantportal/application_outline.jsp
+1
-1
No files found.
cmsWebApp/src/performa/form/SaveJobFP.java
View file @
866a7c88
...
...
@@ -35,17 +35,17 @@ public class SaveJobFP extends SaveFP
Job
oldJob
=
(
Job
)
job
.
getEarliestBackup
();
if
(
oldJob
!=
null
&&
oldJob
.
getJobStatus
()
==
JobStatus
.
DRAFT
&&
(
job
.
getJobStatus
()
==
JobStatus
.
OPEN
||
openJob
==
Boolean
.
TRUE
))
{
job
.
setApplyBy
(
DateDiff
.
add
(
DateDiff
.
getToday
(),
Calendar
.
DATE
,
30
));
job
.
setOpenDate
(
new
Date
());
if
(
openJob
==
Boolean
.
TRUE
)
{
job
.
setJobStatus
(
JobStatus
.
OPEN
);
LogMgr
.
log
(
Job
.
LOG
,
LogLevel
.
PROCESSING1
,
"Job status changed as Open. "
,
job
);
}
if
(
oldJob
!=
null
&&
oldJob
.
getJobStatus
()
==
JobStatus
.
DRAFT
&&
job
.
getJobStatus
()
==
JobStatus
.
OPEN
)
{
job
.
setApplyBy
(
DateDiff
.
add
(
DateDiff
.
getToday
(),
Calendar
.
DATE
,
30
));
job
.
setOpenDate
(
new
Date
());
}
if
(
job
.
getJobStatus
()
==
JobStatus
.
OPEN
&&
job
.
getShortenedURL
()
==
null
)
...
...
cmsWebApp/src/performa/orm/Job.java
View file @
866a7c88
...
...
@@ -342,7 +342,7 @@ public class Job extends BaseJob
/* Create a copy of 'to' */
return
BusinessCopyHelper
.
copyBusinessObject
(
to
,
copyType
,
newObjectRefs
,
this
);
}
else
if
(
to
instanceof
JobApplication
)
else
if
(
to
instanceof
JobApplication
||
to
instanceof
AssessmentCriteriaAnswer
)
{
/* Do not create a copy of 'to' */
return
null
;
...
...
cmsWebApp/webroot/css/common.css
View file @
866a7c88
...
...
@@ -4746,7 +4746,7 @@ img.alert-icon {float: left;}
.main-sc-section
p
{
font-size
:
12px
;
margin-bottom
:
0
;
text-align
:
center
;}
.selection-form-title
{
font-size
:
13px
;
margin-bottom
:
12px
;}
.question-y-n
label
.second-label
{
font-size
:
12px
;
margin-bottom
:
17px
;}
.wc-question-y-n
{
border
:
2px
#d3d3d3
;
border-style
:
solid
none
;}
.wc-question-y-n
{
border
:
2px
#d3d3d3
;
border-style
:
solid
none
none
;}
.wc-question-y-n
label
.second-label
{
font-size
:
12px
;
margin-bottom
:
17px
;}
.textarea-box
textarea
{
margin-bottom
:
32px
;
font-size
:
12px
;}
.section-br-inside
{
margin
:
25px
0
22px
;}
...
...
cmsWebApp/webroot/extensions/applicantportal/application_outline.jsp
View file @
866a7c88
...
...
@@ -202,7 +202,7 @@
if(!(isSelectionComplete && isCultureComplete && isAssesmentComplete))
{
%>
Total time to complete: Approximately <
oneit:toString value="<%= jobApplication.getRemainingTime() %>" mode="EscapeHTML"/
> minutes
Total time to complete: Approximately <
%= jobApplication.getRemainingTime() %
> minutes
<%
}
%>
...
...
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