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:
parent
acacba7911
commit
80601c2034
1 changed files with 2 additions and 1 deletions
|
|
@ -1203,7 +1203,8 @@ _(
|
|||
@Override
|
||||
public boolean isFixed() {
|
||||
return taskElement.isLimitingAndHasDayAssignments()
|
||||
|| taskElement.hasConsolidations();
|
||||
|| taskElement.hasConsolidations()
|
||||
|| taskElement.isUpdatedFromTimesheets();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue