Fix satisfaction condition
The changes requested are for the not consolidated part FEA: ItEr74S04BugFixing
This commit is contained in:
parent
14a6bd6f09
commit
3d48651458
2 changed files with 3 additions and 2 deletions
|
|
@ -137,7 +137,7 @@ public abstract class HoursModification extends AllocationModification {
|
|||
|
||||
@Override
|
||||
public boolean satisfiesModificationRequested() {
|
||||
return hours == getBeingModified().getAssignedHours();
|
||||
return hours == getBeingModified().getNonConsolidatedHours();
|
||||
}
|
||||
|
||||
public int getHours() {
|
||||
|
|
|
|||
|
|
@ -315,7 +315,8 @@ public abstract class ResourcesPerDayModification extends
|
|||
|
||||
@Override
|
||||
public boolean satisfiesModificationRequested() {
|
||||
return getGoal().equals(getBeingModified().getResourcesPerDay());
|
||||
return getGoal().equals(
|
||||
getBeingModified().getNonConsolidatedResourcePerDay());
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue