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
767c0d05
Commit
767c0d05
authored
Oct 10, 2017
by
chenith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Total time to complete with sum of sections.
parent
67b7667f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
8 deletions
+6
-8
JobApplication.java
cmsWebApp/src/performa/orm/JobApplication.java
+6
-8
No files found.
cmsWebApp/src/performa/orm/JobApplication.java
View file @
767c0d05
...
...
@@ -426,9 +426,9 @@ public class JobApplication extends BaseJobApplication
//to get pending time to complete job application
public
Integer
getRemainingTime
()
{
//req-0
7
min
//cul-0
7
min
//req-2
6
min
//req-0
5
min
//cul-0
5
min
//req-2
0
min
int
remainingTime
=
0
;
...
...
@@ -437,21 +437,19 @@ public class JobApplication extends BaseJobApplication
{
if
(!
selectionCompleted
())
{
remainingTime
+=
7
;
remainingTime
+=
5
;
}
}
if
(!
cultureCompleted
())
{
remainingTime
+=
7
;
remainingTime
+=
5
;
}
//ROLE
remainingTime
+=
getRoleTestRemainingTime
()
;
if
(!
assessmentCompleted
())
{
remainingTime
+=
6
;
remainingTime
+=
getRoleTestRemainingTime
()
;
}
return
remainingTime
;
...
...
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