Commit 767c0d05 by chenith

Update Total time to complete with sum of sections.

parent 67b7667f
......@@ -426,9 +426,9 @@ public class JobApplication extends BaseJobApplication
//to get pending time to complete job application
public Integer getRemainingTime()
{
//req-07 min
//cul-07 min
//req-26 min
//req-05 min
//cul-05 min
//req-20 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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment