Set properly task position for tasks updated from timesheets even if dependencies have priority

The task is marked as fixed if it has been updated from timesheets even in the
case that dependencies have priority and it should be moved to a different
position. The dependencies will appear as violated.

FEA: ItEr77S12AdaptPlanningAccordingTimesheets
This commit is contained in:
Manuel Rego Casasnovas 2012-11-07 14:57:02 +01:00
parent acacba7911
commit 80601c2034

View file

@ -1203,7 +1203,8 @@ _(
@Override
public boolean isFixed() {
return taskElement.isLimitingAndHasDayAssignments()
|| taskElement.hasConsolidations();
|| taskElement.hasConsolidations()
|| taskElement.isUpdatedFromTimesheets();
}
@Override